Chrome 扩展页面操作 JS

发布于 2024-09-05 17:30:05 字数 705 浏览 11 评论 0 原文

我正在尝试使用此文档创建扩展: http://code.google.com/chrome/extensions/content_scripts.html

我希望在文档准备好(加载)时运行一部分 JS 代码。

这是我的 ma​​nifest.json

{
    "name": "OwnExtension",
    "version": "0.1",
    "content_scripts": [
    {
        "matches": ["https://my.site.eu/*"],
        "css": ["styles.css"],
        "js": ["main.js"]
    }
    ]
}

这是我的 ma​​in.js

alert(10);

我做错了什么吗?当页面 https://my.site.eu/ 已在浏览器中加载?

I'm trying to create an extension using this docs:
http://code.google.com/chrome/extensions/content_scripts.html

I want a part of JS code to run when document is ready (loaded).

This is my manifest.json:

{
    "name": "OwnExtension",
    "version": "0.1",
    "content_scripts": [
    {
        "matches": ["https://my.site.eu/*"],
        "css": ["styles.css"],
        "js": ["main.js"]
    }
    ]
}

This is my main.js:

alert(10);

Am I doing sth wrong, that nothing happend when page https://my.site.eu/ loaded in browser?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最冷一天 2024-09-12 17:30:05

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文