I've been trying to add some stuff in every URLs that begins with some certain URL, is it possible to do that in Chrome?
I've been trying to use chrome.webRequest.onCompleted, but I couldn't see anything in the documentation
http://code.google.com/chrome/extensions/webRequest.html
that you can read or change the response
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>"]});
what do I do to alter this content? adding more stuff to it before it's put in the tab or in the iframe.
Thanks!