作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
content.js: chrome.tabs.create({ url: 'http://www.sethjfreeman.com' });
manifest.json
{
"manifest_version": 2,
"name": "Secure Video Downloader",
"description": "Download Videos Virus Free",
"version": "1.0",
"content_scripts": [
{
"matches": ["https://gostream.is/*", "http://gostream.is/*"],
"js": ["content.js", "jquery-3.2.1.min.js"],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "secure_16.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs", "http://*/*"
]
}
描述:
当页面加载时,我在尝试打开新选项卡时收到此错误
最佳答案
您无权访问外部注入(inject)网站上的 chrome.tabs
。
您需要将消息传递给后台
脚本并调用chrome.tabs.create({ url: 'http://www.sethjfreeman.com' });
从那里。
检查Message Passing 。
关于javascript - Chrome 扩展创建 - 未捕获的类型错误 : Cannot read property 'create' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45044585/
我是一名优秀的程序员,十分优秀!