Guest User

Untitled

a guest
Oct 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. chrome.webRequest.onBeforeRequest.addListener(function (details) {
  2. return { redirectUrl: 'https://bar.com'};
  3. }, {urls: ['https://foo.com/']}, ['blocking']);
  4.  
  5. {
  6. "name": "redirect",
  7. "description": "Redirect foo to bar.",
  8. "version": "1.0",
  9. "permissions": ["webRequest", "webRequestBlocking", "https://foo.com/"],
  10. "background": { "scripts": ["background.js"] },
  11. "manifest_version": 2
  12. }
Add Comment
Please, Sign In to add comment