mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
add mayas.travel used in fiuxy2.co
This commit is contained in:
parent
e26b0182c0
commit
8e17008069
4 changed files with 30 additions and 18 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.3.8
|
||||
// @version 92.3.9
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -772,6 +772,7 @@
|
|||
// @include /ontechhindi.com/
|
||||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.3.8
|
||||
// @version 92.3.9
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -772,6 +772,7 @@
|
|||
// @include /ontechhindi.com/
|
||||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
|
@ -1812,6 +1813,18 @@
|
|||
//peliculasgd.net, animesgd.net, club-hd.com, librolandia.net, pelishd4k.com, programasvirtualespc.net, pasteprivado.blogspot.com
|
||||
/(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/.test(url) ? redirect(decodeURIComponent(atob(atob(atob(url.split('#!')[1]))))) : null;
|
||||
|
||||
// AdClicker (used in animesgd.net and many others)
|
||||
if (/(adclicker.(io|info)|(discoveryultrasecure|yourihollier).com)\/url\/\#/.test(url)){
|
||||
let decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
|
||||
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
|
||||
let urlParam = new URLSearchParams(decodedUrl).get('url');
|
||||
if (urlParam) {redirect(urlParam);}
|
||||
}
|
||||
|
||||
// mayas.travel used in fiuxy2.co
|
||||
/mayas.travel\/api/.test(url) ? redirect(decodeURIComponent(url.split('&url=')[1].split('&')[0])) : null;
|
||||
/mayas.travel\/\#/.test(url) ? redirect(atob(atob(atob(url.split('/#')[1]))).split('&url=')[1].split('&')[0]) : null;
|
||||
|
||||
// descargasdirecta.com
|
||||
/playpastelinks.com/.test(url) ? afterDOMLoaded(function() {setTimeout(() => { document.querySelector('#btn-redirect').click(); }, 8000)}) : null;
|
||||
/mh.gourlpro.com/.test(url) ? redirect(atob(atob(atob(url.split('#')[1])))) : null;
|
||||
|
@ -2219,14 +2232,6 @@
|
|||
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
||||
/sunci.net/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('button#link-button.btn-primary:not(.btn-download)')}) : null;
|
||||
|
||||
// AdClicker (used in animesgd.net and many others)
|
||||
if (/(adclicker.(io|info)|(discoveryultrasecure|yourihollier).com)\/url\/\#/.test(url)){
|
||||
var decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
|
||||
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
|
||||
var urlParam = new URLSearchParams(decodedUrl).get('url');
|
||||
if (urlParam) {redirect(urlParam);}
|
||||
}
|
||||
|
||||
// filmesmega.online
|
||||
/minimilionario.com\/noticia.php\?token=/.test(url) ? redirect(atob(url.split('?token=')[1])) : null;
|
||||
|
||||
|
|
|
@ -166,6 +166,7 @@
|
|||
// @include /ontechhindi.com/
|
||||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -194,6 +195,18 @@
|
|||
//peliculasgd.net, animesgd.net, club-hd.com, librolandia.net, pelishd4k.com, programasvirtualespc.net, pasteprivado.blogspot.com
|
||||
/(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/.test(url) ? redirect(decodeURIComponent(atob(atob(atob(url.split('#!')[1]))))) : null;
|
||||
|
||||
// AdClicker (used in animesgd.net and many others)
|
||||
if (/(adclicker.(io|info)|(discoveryultrasecure|yourihollier).com)\/url\/\#/.test(url)){
|
||||
let decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
|
||||
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
|
||||
let urlParam = new URLSearchParams(decodedUrl).get('url');
|
||||
if (urlParam) {redirect(urlParam);}
|
||||
}
|
||||
|
||||
// mayas.travel used in fiuxy2.co
|
||||
/mayas.travel\/api/.test(url) ? redirect(decodeURIComponent(url.split('&url=')[1].split('&')[0])) : null;
|
||||
/mayas.travel\/\#/.test(url) ? redirect(atob(atob(atob(url.split('/#')[1]))).split('&url=')[1].split('&')[0]) : null;
|
||||
|
||||
// descargasdirecta.com
|
||||
/playpastelinks.com/.test(url) ? afterDOMLoaded(function() {setTimeout(() => { document.querySelector('#btn-redirect').click(); }, 8000)}) : null;
|
||||
/mh.gourlpro.com/.test(url) ? redirect(atob(atob(atob(url.split('#')[1])))) : null;
|
||||
|
@ -601,14 +614,6 @@
|
|||
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
||||
/sunci.net/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('button#link-button.btn-primary:not(.btn-download)')}) : null;
|
||||
|
||||
// AdClicker (used in animesgd.net and many others)
|
||||
if (/(adclicker.(io|info)|(discoveryultrasecure|yourihollier).com)\/url\/\#/.test(url)){
|
||||
var decodedUrl = decodeURIComponent(atob(atob(atob(url.split('/url/#')[1]))));
|
||||
if (decodedUrl.includes('&url=')) {decodedUrl = decodedUrl.split('&')[1];}
|
||||
var urlParam = new URLSearchParams(decodedUrl).get('url');
|
||||
if (urlParam) {redirect(urlParam);}
|
||||
}
|
||||
|
||||
// filmesmega.online
|
||||
/minimilionario.com\/noticia.php\?token=/.test(url) ? redirect(atob(url.split('?token=')[1])) : null;
|
||||
|
||||
|
|
|
@ -752,6 +752,7 @@ https://paster.so/*
|
|||
/ontechhindi.com/
|
||||
/newedutopics.com/
|
||||
/blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
/mayas.travel/
|
||||
/filecrypt.(cc|co)/
|
||||
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
/(mega-enlace|acortados).com/
|
||||
|
|
Loading…
Reference in a new issue