如何使用 Chrome 扩展获取框架的当前 src?
我有一个网页,其中包含 2 个框架:顶部框架和主框架。 主机不在我的域下,它可以是任何网站。
是的,我可以获得 $("#main").attr("src") 但它只能到达“第一个”src,而不能到达“当前”src。
而且我知道由于安全问题不可能通过 javascript 来完成,所以我正在考虑创建一个 chrome 扩展来做到这一点。
我尝试使用Content Script,但我认为它不能做到这一点,因为它只是将js添加到页面。
有没有人可以提供一些建议?谢谢
I have a webpage which contains 2 frames:top and main.
main frame is not under my domain, and it could be any websites.
Yes I can get $("#main").attr("src") but it could only reach the "first" src, not the "current" src.
And I know it's not possible to be done by javascript due to the security issue, so I am thinking creating a chrome extension to do it.
I tried with Content Script, but I think it can not do it because it's just add js to the page.
Is there anyone who could offer some advices? Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可以回答这部分:
您只需在清单中设置
"all_frames": true
即可:这也会将脚本注入到每个帧中。
I can answer this part:
You just need to set
"all_frames": true
in the manifest:this will inject scripts to each frame as well.