在内容脚本中使用chrome.tabs或其他chrome API时出现"Cannot read property of undefined"

10 浏览
0 Comments

在内容脚本中使用chrome.tabs或其他chrome API时出现"Cannot read property of undefined"

尽管我在权限块中设置了"tabs",但chrome.tabs返回undefined。

"permissions": [

"tabs",

"http://*/*",

"https://*/*"

],

"content_scripts": [

{

"matches": [

"http://*/*",

"https://*/*"

],

"js": [

"js/myScript.js"

],

"all_frames": true

}

],

但在myScript.js中,chrome.tabsundefined

0