我的内容脚本如何在iframe中运行?

时间:2012-07-30 03:31:03

标签: javascript google-chrome-extension

我的内容脚本会在页面中插入一些按钮。当我点击按钮时,它会执行某些操作,例如console.log(“...”),也许它会使用鼠标选择。

页面有iframe时是否可以使用?

1 个答案:

答案 0 :(得分:1)

您应该在all_frames: true的{​​{3}}声明中添加manifest.json

"content_scripts": [
    {
        "matches": [
            "http://*/*",
            "https://*/*"
        ],
        "all_frames": true,
        "js": [
            "content_script.js"
        ]
    }
]