Google Chrome扩展程序“无法读取未定义的属性'local'”

时间:2018-06-26 18:37:56

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

这样做:

chrome.storage.local.set({"extension_file": extension_file}, function() {
    console.log('Value is set to ' + extension_file);
});

我看到错误:

Uncaught TypeError: Cannot read property 'local' of undefined

在manifest.json中:

"permissions": [
    "storage"
]

我该怎么办?

1 个答案:

答案 0 :(得分:0)

您已经更新了 Manifest.json 文件,您只需要告诉 Chrome 重新加载它,以便可以应用“存储”权限。

打开 chrome://extensions 标签,然后点击扩展程序的重新加载按钮。