Chrome 扩展:加载页面之前替换 HTML
我有一个关于如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试修改清单文件的 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/