Chrome 拡張機能を使用して HTML ページのコンテンツを更新する必要があります。どうやってするの?
chrome.webRequest でできることはありますか? 例が見つかりません。
または、ページが読み込まれて準備ができたときに、javascript でのみ実行できますか?
マニフェスト.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;
すでに固定されているページを表示するためのより良い方法です。