我正在尝试从background.html获取HTML代码到content.js。
我试过了:
chrome.extension.getBackgroundPage( function() {
console.log("This is just to check if the function works");
});
我的清单文件:
"background": {
//"scripts": ["background.js"],
"page": "background.html",
"persistent": false
},
我收到一个错误:“未捕获的TypeError:undefined不是函数”在“chrome.extension”所在的行上。