Skip to content

Instantly share code, notes, and snippets.

@tarqd
Created November 30, 2012 22:44
Show Gist options
  • Save tarqd/4179233 to your computer and use it in GitHub Desktop.
Save tarqd/4179233 to your computer and use it in GitHub Desktop.
chrome.webRequest.onBeforeRequest.addListener(
function(details) { return {cancel: true}; },
{urls: ["*://www.evil.com/*"]},
["blocking"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment