在Chrome扩展程序中:
如何检查内容脚本注入多个iframe页面的iframe?
e.g。将内容脚本注入Gmail后,如何确定iframe确实位于哪个位置?
答案 0 :(得分:0)
取决于您的清单文件,尤其是content_scripts的 all_frames 属性。
"content_scripts": [
{
"all_frames": true/false
}
如果all_frames = false,它不会注入任何iframe,因为它只会注入顶层iframe,即文档。如果all_frames = true,则会注入所有iframe。 See the documentation.