使用chrome扩展更新html页面内容的更好方法

时间:2013-11-14 13:03:37

标签: javascript google-chrome-extension

我需要使用chrome扩展程序更新html页面内容。怎么做?

是否可以使用chrome.webRequest?我找不到例子。

或者我只能通过javascript来加载并准备好页面吗?

的manifest.json

"content_scripts": [
    {
      "matches": ["*://*.google.com/*"],
      "js": ["process.js"]
    }
  ]

process.js

var html = document.documentElement.innerHTML;
html = html.replace("change this","to this");
document.documentElement.innerHTML = html;

更好的方式让我显示已修复的页面。

0 个答案:

没有答案