Skip to content

Instantly share code, notes, and snippets.

@davlgd
Last active September 5, 2018 14:46
Show Gist options
  • Select an option

  • Save davlgd/3eb30916d0f57b68c41513188e4190b7 to your computer and use it in GitHub Desktop.

Select an option

Save davlgd/3eb30916d0f57b68c41513188e4190b7 to your computer and use it in GitHub Desktop.
Bad Search Engine Blocker - Script
chrome.webRequest.onBeforeRequest.addListener(function (request) {
return { redirectUrl: "https://www.framabee.org"};
},
{ urls: ["https://*.google.com/"] }, ["blocking"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment