我一直在尝试在每个以某个特定 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 之前为其添加更多内容。
谢谢!