在内容脚本中使用chrome.tabs或其他chrome API时出现"Cannot read property of undefined"
- 论坛
- 在内容脚本中使用chrome.tabs或其他chrome API时出现"Cannot read property of undefined"
10 浏览
在内容脚本中使用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.tabs
是undefined
。