How to check storage.local contents in Chrome Packaged app?

Is there any way (extension or a special debugging option) for checking the contents of storage in a Chrome Packaged application other than using the javascript console?

The Resources tab allows you to only check the local resource / sessionStorage (which is disabled in packaged applications)

+8
google-chrome google-chrome-app
source share
2 answers

After I realized that there really is no other option besides the JS console, I created the devtools extension (it took 4 hours to create the initial version), which can check the chrome.store.

So now there is such a tool =)

Sources

+27
source share

Just try typing:

chrome.storage.local.get(function(data) { console.log(data); }); 

then look into the console.

+3
source share

All Articles