将值设置为chrome.storage.local无效

时间:2016-05-05 03:49:52

标签: google-chrome-extension

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吗?

1 个答案:

答案 0 :(得分:1)

不要忘记在storage

中为permissions字段添加manifest.json