我需要使用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;
更好的方式让我显示已修复的页面。