I have a problem seeing content of the local storage for chrome-extension in DevTools (it works for regular websites, only problem is for the chrome-extension). I have tried to check Resources > Local Storage for regular page, but also for the popup and background inspection pages of my chrome-extension.
If i open console and execute:
chrome.storage.local.get('config', function(result) {console.log(JSON.stringify(result));});
I get
{"config":{"version":"0.4.1"}}
But not visible under Resources > Local Storage
I can also set
chrome.storage.local.set({"config":{"version":"0.5"}});
And re-read the new value: 0.5.
NOTE: In the Resources > Local Storage I do see the entry for my extension: chrome-extension:ld... , but i do not see any key/value there.
Any idea why this is happening, and how i can see values under under the Resources > Local Storage.
I am not aware of any way to enable access to it in manifest.json, or similar.