gpt4 book ai didi

javascript - 将回调传递给 chrome.storage.sync.get

转载 作者:行者123 更新时间:2023-11-30 15:03:53 24 4
gpt4 key购买 nike

<分区>

我试图通过从 background.js 询问来获取内容脚本中的扩展首选项。

contentscript.js

chrome.runtime.sendMessage({'action' : 'preferences'}, 
function(prefs) {
console.log(prefs);
}
);

background.js

function onRequest(request, sender, callbackOfContentScript) {
chrome.storage.sync.get(null, function(items){
callbackOfContentScript(items);
});
}
chrome.runtime.onMessage.addListener(onRequest);
内容脚本中的

console.log 返回 undefined

这里有什么问题?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com