Guest User

Untitled

a guest
Apr 14th, 2020
1,184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. // ==UserScript==
  2. // @name IGG-Games ads bypass
  3. // @version 0.1
  4. // @description blocks bluemediafiles
  5. // @author You
  6. // @match https://igg-games.com/*
  7. // @grant unsafeWindow
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. var links = document.getElementsByTagName("a");
  14. for(var i = 0;i < links.length;i++) {
  15. if(links[i].href.includes("bluemediafiles")){
  16. if(links[i].href.includes("xurl=s")){
  17. var res = links[i].href.split("xurl=s://");
  18. links[i].href = "https://" + res[1];
  19. }
  20. if(links[i].href.includes("xurl=:")){
  21. var res2 = links[i].href.split("xurl=://");
  22. links[i].href = "https://" + res2[1];
  23. }
  24. }
  25. }
  26.  
  27. })();
Advertisement
Add Comment
Please, Sign In to add comment