storage.local.set用于在我的chrome扩展中设置一些值。 我想这样做,
$(document).ready(function(){
var username = $(".username").val();
var userpassword = $(".password").val();
$(".signin").click(function(){
chrome.storage.local.set({"email" : username});
chrome.storage.local.set({"userpassword" : password});
})
});
我收到此错误,
Uncaught TypeError: Cannot read property 'local' of undefined
有人可以帮我搞定并设置chrome.storage.local吗?
答案 0 :(得分:1)
不要忘记在storage
permissions
字段添加manifest.json