Chrome 扩展:加载页面之前替换 HTML

发布于 2024-12-21 16:30:03 字数 443 浏览 0 评论 0原文

我有一个关于如何使用 Chrome 扩展程序更改网页的问题。

阅读了一些信息后,我认为问题是如何操作 DOM。 假设我用 Chrome 打开 www.stackoverflow 并想要替换以下代码行:

 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>

并将其替换为:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>

我的问题不是这样做是否明智,而是如何做到这一点?

I have a question about how to change web pages with a Chrome extension.

After reading some info I think the question is how to manipulating the DOM.
Let's say I open www.stackoverflow with Chrome and want to replace the following line of code:

 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>

and replace it with:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>

My question is not if it's a smart thing to do, but how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尤怨 2024-12-28 16:30:03

尝试修改清单文件的 run_at 字符串。

在“document_start”的情况下,文件会在 css 中的任何文件之后、任何其他 DOM 构建或任何其他脚本运行之前注入。

https://developer.chrome.com/docs/extensions/mv2/content_scripts/< /a>

Try to modify you manifest's file run_at string.

In the case of "document_start", the files are injected after any files from css, but before any other DOM is constructed or any other script is run.

https://developer.chrome.com/docs/extensions/mv2/content_scripts/

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