mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
bypass for animesgd.net
This commit is contained in:
parent
8e17008069
commit
85ebdcd474
4 changed files with 20 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.3.9
|
||||
// @version 92.3.10
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -773,6 +773,7 @@
|
|||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @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.9
|
||||
// @version 92.3.10
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -773,6 +773,7 @@
|
|||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @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/
|
||||
|
@ -1813,7 +1814,7 @@
|
|||
//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)
|
||||
// AdClicker
|
||||
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];}
|
||||
|
@ -2295,6 +2296,12 @@
|
|||
link.href = atob(link.getAttribute('href').split('?url=')[1]);
|
||||
}); }) : null;
|
||||
|
||||
// animesgd.net
|
||||
/animesgd.net/.test(url) ? afterWindowLoaded(function() {
|
||||
document.querySelectorAll('a[href*="https://domk5.net/redir3/?"]').forEach(link => {
|
||||
link.href = link.getAttribute('href').split('/redir3/?')[1];
|
||||
}); }) : null;
|
||||
|
||||
// platinsport.com
|
||||
/platinsport.com/.test(url) ? afterDOMLoaded(function() {
|
||||
document.querySelectorAll('a[href*="http://bc.vc/"]').forEach(link => {
|
||||
|
|
|
@ -167,6 +167,7 @@
|
|||
// @include /newedutopics.com/
|
||||
// @include /blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -195,7 +196,7 @@
|
|||
//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)
|
||||
// AdClicker
|
||||
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];}
|
||||
|
@ -677,6 +678,12 @@
|
|||
link.href = atob(link.getAttribute('href').split('?url=')[1]);
|
||||
}); }) : null;
|
||||
|
||||
// animesgd.net
|
||||
/animesgd.net/.test(url) ? afterWindowLoaded(function() {
|
||||
document.querySelectorAll('a[href*="https://domk5.net/redir3/?"]').forEach(link => {
|
||||
link.href = link.getAttribute('href').split('/redir3/?')[1];
|
||||
}); }) : null;
|
||||
|
||||
// platinsport.com
|
||||
/platinsport.com/.test(url) ? afterDOMLoaded(function() {
|
||||
document.querySelectorAll('a[href*="http://bc.vc/"]').forEach(link => {
|
||||
|
|
|
@ -753,6 +753,7 @@ https://paster.so/*
|
|||
/newedutopics.com/
|
||||
/blog.jytechs.in|mi.miuiflash.com|hypershort.com/
|
||||
/mayas.travel/
|
||||
/animesgd.net/
|
||||
/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