Chrome扩展:如何更改页面的html?
我在我制作的 Chrome 扩展程序中使用以下脚本。它将所有页面的“旧文本”替换为“新文本”。
document.body.innerHTML = document.body.innerHTML.replace(new RegExp("旧文本", "g"), "新文本");
到目前为止,一切都很好。但想知道如何以相同的方式查找/替换页面标签内的(java)脚本、元标签和 css 文件。
I'm using the following script within a Chrome extension I made. It replaces "old text" with "new text" of all pages.
document.body.innerHTML = document.body.innerHTML.replace(new
RegExp("old text", "g"), "new text");
So far, so good. But want to know how to find/replace the (java)scripts, meta tags and css files in within the tags of the page in the same way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要查找的内容位于 document.head 中。
The stuff you are looking for resides in document.head.