Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name IGG-Games ads bypass
- // @version 0.1
- // @description blocks bluemediafiles
- // @author You
- // @match https://igg-games.com/*
- // @grant unsafeWindow
- // ==/UserScript==
- (function() {
- 'use strict';
- var links = document.getElementsByTagName("a");
- for(var i = 0;i < links.length;i++) {
- if(links[i].href.includes("bluemediafiles")){
- if(links[i].href.includes("xurl=s")){
- var res = links[i].href.split("xurl=s://");
- links[i].href = "https://" + res[1];
- }
- if(links[i].href.includes("xurl=:")){
- var res2 = links[i].href.split("xurl=://");
- links[i].href = "https://" + res2[1];
- }
- }
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment