How do I view the storage of a Chrome Extension I've installed?

后端 未结 6 572
心在旅途
心在旅途 2021-01-30 10:12

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

6条回答
  •  盖世英雄少女心
    2021-01-30 10:47

    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.

提交回复
热议问题