Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. chrome.webRequest.onBeforeRequest.addListener(
  2. function(detalhes) {
  3. return {cancel: detalhes.url.indexOf("://ouo.io/") != -1};
  4. },
  5. { urls: ["<all_urls>"] },
  6. ["blocking"]
  7. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement