我正在使用Chrome扩展程序,该扩展程序在选项页面上有30个复选框。我想保存使用
检查哪些复选框var jsonfile={};
document.getElementById("teamdiv").addEventListener('change',function(e){
jsonfile[e.target.id+""]=true;
storeValue(jsonfile);
});
如何在不使用单独的javascript文件的情况下检索jsonfile中的所有值
chrome.storage.sync.get()
语句?提前谢谢。
答案 0 :(得分:0)
在扩展程序backgoundscript 中使用后台脚本在页面之间进行通信
{
"name": "My extension",
...
"background": {
"scripts": ["background.js"]
},
...
}