Is it possible to store data in a way that will be accessible after a browser restart in the context of a chrome extension?
Even simpler than that:
To read:
var myStoredValue = localStorage["TheKeyToMyStoredValue"];
To write:
localStorage["TheKeyToMyStoredValue"] = myNewValueToStore;
To get rid of:
delete localStorage["TheKeyToMyStoredValue"];