-1

我的内容脚本会在页面中插入一些按钮。当我单击按钮时,它会做一些事情,例如 console.log("..."),也许它会使用鼠标选择。

当页面有 iframe 时是否可以工作?

4

1 回答 1

1

你应该all_frames: true在你的内容脚本声明中添加manifest.json.

"content_scripts": [
    {
        "matches": [
            "http://*/*",
            "https://*/*"
        ],
        "all_frames": true,
        "js": [
            "content_script.js"
        ]
    }
]
于 2012-07-30T05:05:49.303 回答