mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
fix render-state.to
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/108
This commit is contained in:
parent
4b8169f5a7
commit
9276a410e6
4 changed files with 19 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.3.16
|
||||
// @version 92.3.17
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -144,7 +144,6 @@
|
|||
// @include /^(https?:\/\/)(.+)?(bildirim.in|bildirim.eu|bildirim.link)(\/.*)/
|
||||
// @match *://*.enlacito.com/*
|
||||
// @match *://*.webhostingtips.club/*
|
||||
// @match *://*.render-state.to/*
|
||||
// @include /^(https?:\/\/)(.+)?(michaelemad.com|7misr4day.com)(\/.*)/
|
||||
// @match *://*.shareus.io/*
|
||||
// @match *://*.adtival.network/*
|
||||
|
@ -774,6 +773,7 @@
|
|||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @include /tucinehd.com\/links/
|
||||
// @include /render-state.to\/download\/\?link=/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.3.16
|
||||
// @version 92.3.17
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -144,7 +144,6 @@
|
|||
// @include /^(https?:\/\/)(.+)?(bildirim.in|bildirim.eu|bildirim.link)(\/.*)/
|
||||
// @match *://*.enlacito.com/*
|
||||
// @match *://*.webhostingtips.club/*
|
||||
// @match *://*.render-state.to/*
|
||||
// @include /^(https?:\/\/)(.+)?(michaelemad.com|7misr4day.com)(\/.*)/
|
||||
// @match *://*.shareus.io/*
|
||||
// @match *://*.adtival.network/*
|
||||
|
@ -774,6 +773,7 @@
|
|||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @include /tucinehd.com\/links/
|
||||
// @include /render-state.to\/download\/\?link=/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
|
@ -1302,7 +1302,7 @@
|
|||
//BypassedByBloggerPemula(/enlacito.com|acortalink.me/, function() {setTimeout(() => {redirect(window.DYykkzwP,false);}, 2 * 1000);});
|
||||
BypassedByBloggerPemula(/enlacito.com/, () => {let acorta = setInterval(function() {if (DYykkzwP) {redirect(DYykkzwP); clearInterval(acorta);}}, 500);});
|
||||
BypassedByBloggerPemula(/webhostingtips.club/, {'/safe.php': ['link', 'https://jrlinks.in/safe2.php?link='],}, false);
|
||||
BypassedByBloggerPemula(/render-state.to/, function() {if (BpParams.has('link')) {meta(atob(BpParams.get('link')));}});
|
||||
//BypassedByBloggerPemula(/render-state.to/, function() {if (BpParams.has('link')) {meta(atob(BpParams.get('link')));}});
|
||||
BypassedByBloggerPemula(/michaelemad.com|7misr4day.com/, () => waitForElm('a.s-btn-f', mld => redirect(mld.href, false)));
|
||||
BypassedByBloggerPemula(/shareus.io/, function() {if (BpParams.has('sid')) {ReadytoClick('button.MuiButtonBase-root', 2);}});
|
||||
BypassedByBloggerPemula(/adtival.network/, function() {if (BpParams.has('shortid')) {meta(atob(BpParams.get('shortid')));}});
|
||||
|
@ -2422,6 +2422,12 @@
|
|||
redirectIfExists('#gettinglink');
|
||||
}) : null;
|
||||
|
||||
// render-state.to - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/108
|
||||
/render-state.to\/download\/\?link=/.test(url) ? afterDOMLoaded(function() {
|
||||
popupsToRedirects();
|
||||
goToLink();
|
||||
}) : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -168,6 +168,7 @@
|
|||
// @include /mayas.travel/
|
||||
// @include /animesgd.net/
|
||||
// @include /tucinehd.com\/links/
|
||||
// @include /render-state.to\/download\/\?link=/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -803,6 +804,12 @@
|
|||
redirectIfExists('#gettinglink');
|
||||
}) : null;
|
||||
|
||||
// render-state.to - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/108
|
||||
/render-state.to\/download\/\?link=/.test(url) ? afterDOMLoaded(function() {
|
||||
popupsToRedirects();
|
||||
goToLink();
|
||||
}) : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -126,7 +126,6 @@ kisalt.digital
|
|||
bildirim.in|bildirim.eu|bildirim.link
|
||||
enlacito.com
|
||||
webhostingtips.club
|
||||
render-state.to
|
||||
michaelemad.com|7misr4day.com
|
||||
shareus.io
|
||||
adtival.network
|
||||
|
@ -754,6 +753,7 @@ https://paster.so/*
|
|||
/mayas.travel/
|
||||
/animesgd.net/
|
||||
/tucinehd.com\/links/
|
||||
/render-state.to\/download\/\?link=/
|
||||
/filecrypt.(cc|co)/
|
||||
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
|
|
Loading…
Reference in a new issue