Chrome扩展程序:使用chrome.storage.sync.get获取空白对象?

时间:2015-05-12 15:41:18

标签: javascript google-chrome google-chrome-extension

chrome.storage.sync.get("accounts", function (obj) {
    console.log(obj);
});

我不确定我的帐号是关键还是某些值,但我使用上面的代码得到了空白对象。

正如您所看到的,我在本地存储中确实有一些东西:

enter image description here

但为什么它是一个空白对象?

enter image description here

我没有权限问题,但为什么它是空白对象?

1 个答案:

答案 0 :(得分:0)

您混淆了localStorage存储空间和chrome.storage

Dev Tools仅显示localStorage; Dev Tools的第三方扩展程序会显示chrome.storage,例如Storage Area Explorer

localStoragechrome.storage.localchrome.storage.sync都不同。