diff --git a/Bypass_All_Shortlinks.meta.js b/Bypass_All_Shortlinks.meta.js index 41480d2..f91bf02 100644 --- a/Bypass_All_Shortlinks.meta.js +++ b/Bypass_All_Shortlinks.meta.js @@ -3,7 +3,7 @@ // @namespace Violentmonkey Scripts // @run-at document-start // @author Bloggerpemula -// @version 91.1.8 +// @version 91.1.9 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle @@ -677,6 +677,7 @@ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ +// @include /(linkvertise.com|linkvertise.net|link-to.net).*\?r=/ // @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/ // @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js // @updateURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.meta.js diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index 7b2c4ed..94917a9 100644 --- a/Bypass_All_Shortlinks.user.js +++ b/Bypass_All_Shortlinks.user.js @@ -3,7 +3,7 @@ // @namespace Violentmonkey Scripts // @run-at document-start // @author Bloggerpemula -// @version 91.1.8 +// @version 91.1.9 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle @@ -677,6 +677,7 @@ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ +// @include /(linkvertise.com|linkvertise.net|link-to.net).*\?r=/ // @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/ // @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js // @updateURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.meta.js @@ -1843,6 +1844,9 @@ /www.itscybertech.com/.test(url) ? clickIfVisible('.download') : null; /thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null; + // Linkvertise easy case (when there is '?r=') + /(linkvertise.com|linkvertise.net|link-to.net).*\?r=/.test(url) ? redirect(atob((new URLSearchParams(window.location.search)).get('r'))) : null; + })(); // ----- ----- ----- diff --git a/README.md b/README.md index e19f2ef..eabed34 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Automatically bypass many link shorteners ([supported shorteners](https://codebe (you need a userscript manager like [ViolentMonkey](https://violentmonkey.github.io/) installed in your web browser) ## Improvements in this fork -- **Disabled the linkvertise bypass. Use [linkvertise and krnl bypasser](https://greasyfork.org/scripts/427869)**, which works better for that shortener. (I disabled it to avoid conflicts between both scripts.) +- **Disabled the linkvertise bypass for the complicated cases**. For those cases where the origin URL doesn't contain `?r=`, use [linkvertise and krnl bypasser](https://greasyfork.org/scripts/427869)**, which works better for that link shortener. (I disabled it to avoid conflicts between both scripts.) - **Added extra bypasses** from the [extra_bypasses](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/src/branch/main/extra_bypasses) folder. - **No loading the script indiscriminately on every site.** The script will be loaded only for the sites that are supported. (the original userscript is loaded in every site you visit which is not necessary). - Note: By default, the script will not run on the following sites (these can be enabled manually): diff --git a/extra_bypasses/simple_redirects.user.js b/extra_bypasses/simple_redirects.user.js index 429ed13..be6e54a 100644 --- a/extra_bypasses/simple_redirects.user.js +++ b/extra_bypasses/simple_redirects.user.js @@ -29,6 +29,7 @@ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ +// @include /(linkvertise.com|linkvertise.net|link-to.net).*\?r=/ // @run-at document-start // ==/UserScript== @@ -176,6 +177,9 @@ /www.itscybertech.com/.test(url) ? clickIfVisible('.download') : null; /thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null; + // Linkvertise easy case (when there is '?r=') + /(linkvertise.com|linkvertise.net|link-to.net).*\?r=/.test(url) ? redirect(atob((new URLSearchParams(window.location.search)).get('r'))) : null; + })(); // ----- ----- ----- diff --git a/supported_sites.txt b/supported_sites.txt index 8e1822b..18555ef 100644 --- a/supported_sites.txt +++ b/supported_sites.txt @@ -662,3 +662,4 @@ r1.foxylinks.site /seriezloaded.com.ng\/sl-download\/\?link=/ /www.itscybertech.com/ /thegadgetking.in/ +/(linkvertise.com|linkvertise.net|link-to.net).*\?r=/