Developing extensions for Google Chrome 4.x. I'd like to keep a couple of parameters persistent, and thought about using Google Gears' Database object - since it's always installed with Chrome.
But I couldn't find any documentation that will tell me if it's possible. The only relevant sentence I could find was
Data is stored using the same-origin security policy, meaning that a web application cannot access data outside of its domain
Is that evenrelevant to an extension, that runs locally? Is there anything else that may prevent me from using the Database object? Thanks for your time.