我的内容脚本会在页面中插入一些按钮。当我点击按钮时,它会执行某些操作,例如console.log(“...”),也许它会使用鼠标选择。
页面有iframe时是否可以使用?
答案 0 :(得分:1)
您应该在all_frames: true
的{{3}}声明中添加manifest.json
。
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"js": [
"content_script.js"
]
}
]