这样做:
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"
]
我该怎么办?
答案 0 :(得分:0)
您已经更新了 Manifest.json 文件,您只需要告诉 Chrome 重新加载它,以便可以应用“存储”权限。
打开 chrome://extensions 标签,然后点击扩展程序的重新加载按钮。