It seems like it should be possible to view the localStorage
/chrome.storage
of Chrome Extensions installed on my browser. I\'ve played around with the
This was actually two questions!
Open the Chrome Devtool by clicking on the background page of an extension in Chrome://extensions/ (Developer mode needs to be checked to see background pages), then in resource panel you can see the local storage on the left. (by chaohuang and Kil)
In the same console of the background page:
chrome.storage.local.get(function(result){console.log(result)})
chrome.storage.sync.get(function(result){console.log(result)})