-
-
Save saidimu/b9ea2d4dd4ba16a6d660 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var active = false; | |
function changeRefer(details) { | |
if (!active) return; | |
for (var i = 0; i < details.requestHeaders.length; ++i) { | |
if (details.requestHeaders[i].name === 'Referer') { | |
details.requestHeaders[i].value = 'http://www.google.com/'; | |
break; | |
} | |
} | |
active = false; | |
return {requestHeaders: details.requestHeaders}; | |
} | |
chrome.webRequest.onBeforeSendHeaders.addListener(changeRefer, { | |
urls: ["<all_urls>"], | |
types: ["main_frame"], | |
}, ["requestHeaders", "blocking"]); | |
chrome.browserAction.onClicked.addListener(function(tab) { | |
active = true; | |
chrome.tabs.executeScript({ | |
code: 'window.stop(); window.location.reload();' | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment