1 // ==UserScript== 2 // @name Ethos bypass.city Ad-link Bypasser 3 // @namespace http://tampermonkey.net/ 4 // @version 1.2 5 // @description checks if you are on a bypassable link and uses bypass.city to bypass it and redirect you instantly / automatically to the bypassed link 6 // @author Shehajeez 7 // @match https://linkvertise.com/*/dynamic/?* 8 // @match https://linkvertise.com/*/* 9 // @match https://loot-link.com/* 10 // @match https://loot-links.com/* 11 // @match https://lootlink.org/* 12 // @match https://lootlinks.co/* 13 // @match https://lootdest.info/* 14 // @match https://lootdest.org/* 15 // @match https://lootdest.com/* 16 // @match https://links-loot.com/* 17 // @match https://linksloot.net/* 18 // @match https://sub2unlock.com/* 19 // @match https://rekonise.com/* 20 // @match https://letsboost.net/* 21 // @match https://mboost.me/a/* 22 // @match https://socialwolvez.com/app/l/* 23 // @match https://boost.ink/* 24 // @match https://sub2get.com/link?l=* 25 // @exclude https://sub2get.com 26 // @exclude https://boost.ink 27 // @exclude https://socialwolvez.com 28 // @exclude https://mboost.me 29 // @exclude https://letsboost.net 30 // @exclude https://rekonise.com 31 // @exclude https://sub2unlock.com 32 // @exclude *://publisher.linkvertise.com/* 33 // @exclude *://linkvertise.com/search* 34 // @exclude *://linkvertise.com/login* 35 // @exclude *://linkvertise.com/profile* 36 // @exclude *://blog.linkvertise.com 37 // @exclude *://blog.linkvertise.com/* 38 // @exclude *://linkvertise.com/assets/vendor/* 39 // @exclude *://publisher.linkvertise.com/* 40 // @exclude *://link-mutation.linkvertise.com/* 41 // @exclude *://linkvertise.com/assets/external/thinksuggest 42 // @grant none 43 // @downloadURL https://update.greasyfork.org/scripts/490293/Ethos%20bypasscity%20Ad-link%20Bypasser.user.js 44 // @updateURL https://update.greasyfork.org/scripts/490293/Ethos%20bypasscity%20Ad-link%20Bypasser.meta.js 45 // ==/UserScript== 46 47 (function() { 48 'use strict'; 49 50 const url = window.location.href; 51 console.log("ethos is now bypassing your link using bypass.city"); 52 const bc = "https://bypass.city/bypass?bypass=" + encodeURIComponent(url) + "&redirect=true"; 53 window.location.href = bc; 54 })();