如何使用 Chrome 扩展获取框架的当前 src?

发布于 2024-10-19 02:53:46 字数 271 浏览 2 评论 0原文

我有一个网页,其中包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖伴 2024-10-26 02:53:46

我可以回答这部分:

我尝试过使用Content Script,但我认为它不能做到这一点,因为它只是将js添加到页面。

您只需在清单中设置 "all_frames": true 即可:

"content_scripts": [ {
    "js": [ "script.js" ],
    "matches": [ "http://*/*", "https://*/*" ],
    "all_frames": true
} ],

这也会将脚本注入到每个帧中。

I can answer this part:

I tried with Content Script, but I think it can not do it because it's just add js to the page.

You just need to set "all_frames": true in the manifest:

"content_scripts": [ {
    "js": [ "script.js" ],
    "matches": [ "http://*/*", "https://*/*" ],
    "all_frames": true
} ],

this will inject scripts to each frame as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文