Chrome 扩展页面操作 JS
我正在尝试使用此文档创建扩展: http://code.google.com/chrome/extensions/content_scripts.html
我希望在文档准备好(加载)时运行一部分 JS 代码。
这是我的 manifest.json:
{
"name": "OwnExtension",
"version": "0.1",
"content_scripts": [
{
"matches": ["https://my.site.eu/*"],
"css": ["styles.css"],
"js": ["main.js"]
}
]
}
这是我的 main.js:
alert(10);
我做错了什么吗?当页面 https://my.site.eu/ 已在浏览器中加载?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Alert() 不适用于内容脚本。
尝试 console.log("hello") ,当您在调试模式下查看扩展时,您应该会在开发人员面板中看到它。
alert() doesn't work from a content script.
Try console.log("hello") and you should see it in the developer panel when you view your extension in debug mode.