我的内容脚本会在页面中插入一些按钮。当我单击按钮时,它会做一些事情,例如 console.log("..."),也许它会使用鼠标选择。
当页面有 iframe 时是否可以工作?
我的内容脚本会在页面中插入一些按钮。当我单击按钮时,它会做一些事情,例如 console.log("..."),也许它会使用鼠标选择。
当页面有 iframe 时是否可以工作?
你应该all_frames: true
在你的内容脚本声明中添加manifest.json
.
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"js": [
"content_script.js"
]
}
]