Do Chrome extensions have access to local storage?
google-chrome, google-chrome-extension, local-storage
Solution
Even simpler than that:
To read:
var myStoredValue = localStorage["TheKeyToMyStoredValue"];
To write:
localStorage["TheKeyToMyStoredValue"] = myNewValueToStore;
To get rid of:
delete localStorage["TheKeyToMyStoredValue"];
Problem
Is it possible to store data in a way that will be accessible after a browser restart in the context of a chrome extension?