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
localStorage
chrome.storage
You're right that chrome.storage does not show up in developer tools. The only way I've found to view all of it is by putting this into console:
chrome.storage.local.get(function(result){console.log(result)})
This will spit the JSON object into console.