>From a user's perspective, you can do this through the Delete Browsing Data dialog* (Ctrl+Shift+Del) when you clear cookies -- the thought being that linking this with cookies is a temporary measure with a better UI coming later, hopefully.
* (if you are on tip of tree) >From an extension developer's perspective, there is nothing that lets you do this just for your extension. I believe we have tossed around some ideas on having onUninstall hooks, which could help with here, but that is not implemented yet. On Sat, Nov 28, 2009 at 22:08, PhistucK <[email protected]> wrote: > I guess through the Developer Tools, one by one. > Re-installing the extension will not help here, yet. > > ☆PhistucK > > > > On Sun, Nov 29, 2009 at 00:14, Ahmed Kotb <[email protected]> wrote: > >> how can i clear all the localstorage ? >> should i re-install the extension ? >> >> On Nov 28, 12:42 pm, Keithamus <[email protected]> wrote: >> > I don't own a mac, so I don't know if it exists, but what I do is >> > either right click on any page and select "Inspect Element", or click >> > the page icon (next to the tools icon, top right), then go to >> > "Developer" -> "Developer Tools", or press Ctrl+Shift+I. This brings >> > up the developer tools popup which has tabs for Elements, Resources, >> > Scripts, Timeline, Profiles and, of course,Storage. >> > >> > On Nov 26, 9:40 am, Luisgo <[email protected]> wrote: >> > >> > >> > >> > > How do I access thestoragetab? I'm on chromium for mac and don't see >> > > it anywhere. >> > >> > > Thanks >> > >> > > On Nov 25, 4:09 am, Keithamus <[email protected]> wrote: >> > >> > > > To the best of my knowledge: >> > >> > > > localStoragedoesn't need any reference, it is implemented in each >> > > > extension just like chrome.* >> > >> > > > localStoragepersists through browser shutdowns also. >> > >> > > > Simply try it out!: >> > >> > > > localStorage['test']='hai'; >> > >> > > > If you go to the developer view, thenStoragetab, you should see a >> > > >localstoragebutton for your extension, click it, and you should see >> > > > the key 'test' with the value of 'hai'.Shutdownthe browser, open >> > > > your extension and go back into the >> developer/storage/localstorageand >> > > > see it is still there. >> > >> > > > On Nov 25, 4:09 am, Rlcrock <[email protected]> wrote: >> > >> > > > > Just to beclear, I can uselocalStorageas if it were an array >> > > > > without including an external reference? Also,localStorageis >> > > > > specific to my extension and is not session specific, so I >> shouldn't >> > > > > have to worry about sharedstoragespace or losing data when the >> > > > > browser session ends, correct? >> > >> > > > > On Nov 24, 10:26 pm, Finnur Thorarinsson <[email protected]> >> wrote: >> > >> > > > > > Well, you can always take your datastructure, convert it to >> string using >> > > > > > JSON.stringify(...) and store that in a single variable >> usinglocalStorage. >> > > > > > Then, when you need the data, get the string fromlocalStorageand >> convert >> > > > > > it back to your datastructure using JSON.parse(...). >> > >> > > > > > Search for JSON to see example usage from our RSS extension >> sample: >> http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/exte... >> > > > > > There are also some reference pages on the internet on how to >> use the JSON >> > > > > > object if the sample doesn't make itclear. >> > >> > > > > > --Finnur >> > >> > > > > > On Tue, Nov 24, 2009 at 19:00, Rlcrock <[email protected]> >> wrote: >> > > > > > > I am new to developing extensions, and I am confused on how >> > > > > > >localStorageworks, and if I even need to use it. I am trying >> to >> > > > > > > write an extension which can open a group of URLs the user has >> defined >> > > > > > > through my options page. I want to allow them to have >> multiple >> > > > > > > arbitrarily sized groups (e.g. one group with 4 urls, another >> with 16, >> > > > > > > another with 10) and have my extension open all the URLs in a >> group >> > > > > > > into the same window. My original thought was to store each >> group as >> > > > > > > a separate text file somewhere locally, but I have hit some >> walls as >> > > > > > > far as storing data via Javascript. Is there a better way to >> do this? >> > >> > > > > > > -- >> > >> > > > > > > You received this message because you are subscribed to the >> Google Groups >> > > > > > > "Chromium-extensions" group. >> > > > > > > To post to this group, send email to >> [email protected]. >> > > > > > > To unsubscribe from this group, send email to >> > > > > > > [email protected]<chromium-extensions%[email protected]><chromium-extensions%2Bunsu >> [email protected]> >> > > > > > > . >> > > > > > > For more options, visit this group at >> > > > > > >http://groups.google.com/group/chromium-extensions?hl=en. >> >> -- >> >> You received this message because you are subscribed to the Google Groups >> "Chromium-extensions" group. >> To post to this group, send email to [email protected] >> . >> To unsubscribe from this group, send email to >> [email protected]<chromium-extensions%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/chromium-extensions?hl=en. >> >> >> > -- > You received this message because you are subscribed to the Google Groups > "Chromium-extensions" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<chromium-extensions%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/chromium-extensions?hl=en. > -- You received this message because you are subscribed to the Google Groups "Chromium-extensions" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/chromium-extensions?hl=en.
