mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 16:33:02 +05:00
added bstlar.com bypass with bypass.city
This commit is contained in:
parent
394b7f982d
commit
031e8db900
4 changed files with 12 additions and 2 deletions
|
@ -675,6 +675,7 @@
|
||||||
// @include /www.itscybertech.com/
|
// @include /www.itscybertech.com/
|
||||||
// @include /thegadgetking.in/
|
// @include /thegadgetking.in/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||||
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(bstlar.com)/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /epicload.com\/files/
|
// @include /epicload.com\/files/
|
||||||
|
|
|
@ -675,6 +675,7 @@
|
||||||
// @include /www.itscybertech.com/
|
// @include /www.itscybertech.com/
|
||||||
// @include /thegadgetking.in/
|
// @include /thegadgetking.in/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||||
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(bstlar.com)/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /epicload.com\/files/
|
// @include /epicload.com\/files/
|
||||||
|
@ -2013,6 +2014,7 @@
|
||||||
/thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null;
|
/thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null;
|
||||||
|
|
||||||
// Linkvertise
|
// Linkvertise
|
||||||
|
const solveThroughBypassCity = (linkShortenerUrl) => {if (!/(bypass.city|adbypass.org)/.test(linkShortenerUrl)) {redirect('https://adbypass.org/bypass?bypass=' + encodeURIComponent(linkShortenerUrl))}};
|
||||||
if (/linkvertise.com|(linkvertise|link-to).net/.test(url)) {
|
if (/linkvertise.com|(linkvertise|link-to).net/.test(url)) {
|
||||||
//solve easy case locally
|
//solve easy case locally
|
||||||
let rParam = new URLSearchParams(window.location.search).get('r');
|
let rParam = new URLSearchParams(window.location.search).get('r');
|
||||||
|
@ -2020,11 +2022,13 @@
|
||||||
redirect(atob(rParam));
|
redirect(atob(rParam));
|
||||||
// solve hard case through bypass.city
|
// solve hard case through bypass.city
|
||||||
} else {
|
} else {
|
||||||
const solveThroughBypassCity = (linkShortenerUrl) => {if (!/(bypass.city|adbypass.org)/.test(linkShortenerUrl)) {redirect('https://adbypass.org/bypass?bypass=' + encodeURIComponent(linkShortenerUrl))}};
|
|
||||||
solveThroughBypassCity(url);
|
solveThroughBypassCity(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// bstlar.com
|
||||||
|
/bstlar.com/.test(url) ? solveThroughBypassCity(url) : null;
|
||||||
|
|
||||||
// Ad-maven (optionally solve through bypass.city, but currently solved through adbypass.eu)
|
// Ad-maven (optionally solve through bypass.city, but currently solved through adbypass.eu)
|
||||||
// /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/.test(url) ? solveThroughBypassCity(url) : null;
|
// /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/.test(url) ? solveThroughBypassCity(url) : null;
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
// @include /www.itscybertech.com/
|
// @include /www.itscybertech.com/
|
||||||
// @include /thegadgetking.in/
|
// @include /thegadgetking.in/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||||
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(bstlar.com)/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
||||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /epicload.com\/files/
|
// @include /epicload.com\/files/
|
||||||
|
@ -300,6 +301,7 @@
|
||||||
/thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null;
|
/thegadgetking.in/.test(url) ? popupsToRedirects() && afterDOMLoaded(function() {clickIfExists('#openbtn')}) : null;
|
||||||
|
|
||||||
// Linkvertise
|
// Linkvertise
|
||||||
|
const solveThroughBypassCity = (linkShortenerUrl) => {if (!/(bypass.city|adbypass.org)/.test(linkShortenerUrl)) {redirect('https://adbypass.org/bypass?bypass=' + encodeURIComponent(linkShortenerUrl))}};
|
||||||
if (/linkvertise.com|(linkvertise|link-to).net/.test(url)) {
|
if (/linkvertise.com|(linkvertise|link-to).net/.test(url)) {
|
||||||
//solve easy case locally
|
//solve easy case locally
|
||||||
let rParam = new URLSearchParams(window.location.search).get('r');
|
let rParam = new URLSearchParams(window.location.search).get('r');
|
||||||
|
@ -307,11 +309,13 @@
|
||||||
redirect(atob(rParam));
|
redirect(atob(rParam));
|
||||||
// solve hard case through bypass.city
|
// solve hard case through bypass.city
|
||||||
} else {
|
} else {
|
||||||
const solveThroughBypassCity = (linkShortenerUrl) => {if (!/(bypass.city|adbypass.org)/.test(linkShortenerUrl)) {redirect('https://adbypass.org/bypass?bypass=' + encodeURIComponent(linkShortenerUrl))}};
|
|
||||||
solveThroughBypassCity(url);
|
solveThroughBypassCity(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// bstlar.com
|
||||||
|
/bstlar.com/.test(url) ? solveThroughBypassCity(url) : null;
|
||||||
|
|
||||||
// Ad-maven (optionally solve through bypass.city, but currently solved through adbypass.eu)
|
// Ad-maven (optionally solve through bypass.city, but currently solved through adbypass.eu)
|
||||||
// /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/.test(url) ? solveThroughBypassCity(url) : null;
|
// /^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/.test(url) ? solveThroughBypassCity(url) : null;
|
||||||
|
|
||||||
|
|
|
@ -657,6 +657,7 @@ r1.foxylinks.site
|
||||||
/www.itscybertech.com/
|
/www.itscybertech.com/
|
||||||
/thegadgetking.in/
|
/thegadgetking.in/
|
||||||
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||||
|
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(bstlar.com)/
|
||||||
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(free-content.pro|(ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com)\/s\?/
|
||||||
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
/epicload.com\/files/
|
/epicload.com\/files/
|
||||||
|
|
Loading…
Reference in a new issue