特定の URL で始まるすべての URL に何かを追加しようとしていますが、Chrome でそれを行うことは可能ですか?
を使用しようとしましたがchrome.webRequest.onCompleted
、ドキュメントには何も表示されませんでした
http://code.google.com/chrome/extensions/webRequest.html
応答を読み取ったり変更したりできること
chrome.webRequest.onCompleted.addListener(function(info) {
if(info.url.indexOf('mypage.com/page') > -1){
//Do Something here to alter the response before its used in Chrome requests
//or displayed
}
},{urls:["<all_urls>"]});
このコンテンツを変更するにはどうすればよいですか? タブまたはiframeに配置する前に、さらにものを追加します。
ありがとう!