Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. chrome.webRequest.onBeforeRequest.addListener(
  3. function() {
  4. return {
  5. //Return our modified vPaid js file
  6. redirectUrl: chrome.extension.getURL( "/js/override/twitch_vpaid_modified.js" )
  7. };
  8. },
  9. {
  10. urls: [
  11. "https://images-na.ssl-images-amazon.com/images/G/01/d16g/kpw/vpaid.js"
  12. ]
  13. },
  14. ["blocking"]
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement