mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-27 23:43:02 +05:00
29 lines
1.5 KiB
JavaScript
29 lines
1.5 KiB
JavaScript
// ==UserScript==
|
|
// @name bypass.vip and bypass.city APIs
|
|
// @match https://bleleadersto.com/s?*
|
|
// @match https://tonordersitye.com/s?*
|
|
// @match https://daughablelea.com/s?*
|
|
// @match https://linkvertise.com/*
|
|
// @include /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
|
// @run-at document-start
|
|
// ==/UserScript==
|
|
|
|
// ----- bypass.vip and bypass.city APIs------
|
|
(function() {
|
|
'use strict';
|
|
const admavenRegex = /^https:\/\/(bleleadersto\.com|tonordersitye\.com|daughablelea\.com)\/s\?.*$/;
|
|
const linkvertiseRegex = /^https:\/\/linkvertise\.com\/.+$/;
|
|
const lootlinkRegex = /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
|
|
|
// Linkvertise easy case
|
|
if (linkvertiseRegex.test(window.location.href) && window.location.search.includes('r=')) {
|
|
const rParam = new URLSearchParams(window.location.search).get('r');
|
|
if (rParam) {window.location.assign(atob(rParam));};
|
|
|
|
// Linkvertise hard case and Admaven using bypass.city
|
|
} else if (admavenRegex.test(window.location.href) || linkvertiseRegex.test(window.location.href) || lootlinkRegex.test(window.location.href)) {
|
|
window.location.assign(`https://adbypass.org/bypass?bypass=${encodeURIComponent(window.location.href)}`);
|
|
}
|
|
})();
|
|
// ----- ------ ----------
|
|
|