chrome.Storage在哪里保存?

时间:2014-01-16 19:20:37

标签: google-chrome-app

我在OSX或Windows上找不到该位置。

我无法弄清楚chrome.storage.local.set保存的位置。它甚至不显示在Inspect Element下显示任何已保存的数据 - >资源。

2 个答案:

答案 0 :(得分:2)

它存储在您当地的Chrome个人资料中。即在linux上某处,比如〜/ .profiles / GoogleChrome和windows中的Application Data。

但听起来你只是想检查chrome.storage.local中的内容。为此,只需致电:

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

如果您阅读文档,如果您只使用一个参数(回调函数)调用get,则返回所有内容。

我同意如果检查员显示chrome.storage.local的内容会很酷。

答案 1 :(得分:0)

出于某种原因,“资源”选项卡未在开发工具中显示此信息,但我使用的是名为“存储区域浏览器测试版”的扩展程序,该扩展程序位于Chrome网上应用店中,并显示本地存储空间。