mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 00:13:02 +05:00
added bypass for doroni.me
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/24
This commit is contained in:
parent
324360b9af
commit
f1493cbd3f
4 changed files with 22 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 91.8.5
|
// @version 91.8.6
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -771,6 +771,7 @@
|
||||||
// @include /fiuxy2.co\/threads/
|
// @include /fiuxy2.co\/threads/
|
||||||
// @include /megalinks.info\/index.php\?v=/
|
// @include /megalinks.info\/index.php\?v=/
|
||||||
// @include /ocultandoo.blogspot.com/
|
// @include /ocultandoo.blogspot.com/
|
||||||
|
// @include /rodimalam.com/
|
||||||
// @include /filecrypt.(cc|co)/
|
// @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 /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /mega-enlace.com/
|
// @include /mega-enlace.com/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 91.8.5
|
// @version 91.8.6
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -771,6 +771,7 @@
|
||||||
// @include /fiuxy2.co\/threads/
|
// @include /fiuxy2.co\/threads/
|
||||||
// @include /megalinks.info\/index.php\?v=/
|
// @include /megalinks.info\/index.php\?v=/
|
||||||
// @include /ocultandoo.blogspot.com/
|
// @include /ocultandoo.blogspot.com/
|
||||||
|
// @include /rodimalam.com/
|
||||||
// @include /filecrypt.(cc|co)/
|
// @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 /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /mega-enlace.com/
|
// @include /mega-enlace.com/
|
||||||
|
@ -2321,6 +2322,14 @@
|
||||||
// megalinks (used in peliculasmega1k.com)
|
// megalinks (used in peliculasmega1k.com)
|
||||||
/megalinks.info\/index.php\?v=/.test(url) ? clickIfExists('#continue') : null;
|
/megalinks.info\/index.php\?v=/.test(url) ? clickIfExists('#continue') : null;
|
||||||
|
|
||||||
|
// doroni.me - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/24
|
||||||
|
if (/rodimalam.com/.test(url)) { afterDOMLoaded(function() {
|
||||||
|
clickIfExistsNonStop('#SafelinkChecker');
|
||||||
|
let intervalId = setInterval(function() {
|
||||||
|
let targetLink = document.querySelector('a[href*="https://semawur.com/st/?api="]');
|
||||||
|
if (targetLink) { clearInterval(intervalId); redirect(decodeURIComponent(targetLink.href.split('url=')[1])); }; }, 1000);
|
||||||
|
}); }
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
|
@ -128,6 +128,7 @@
|
||||||
// @include /fiuxy2.co\/threads/
|
// @include /fiuxy2.co\/threads/
|
||||||
// @include /megalinks.info\/index.php\?v=/
|
// @include /megalinks.info\/index.php\?v=/
|
||||||
// @include /ocultandoo.blogspot.com/
|
// @include /ocultandoo.blogspot.com/
|
||||||
|
// @include /rodimalam.com/
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
|
@ -601,6 +602,14 @@
|
||||||
// megalinks (used in peliculasmega1k.com)
|
// megalinks (used in peliculasmega1k.com)
|
||||||
/megalinks.info\/index.php\?v=/.test(url) ? clickIfExists('#continue') : null;
|
/megalinks.info\/index.php\?v=/.test(url) ? clickIfExists('#continue') : null;
|
||||||
|
|
||||||
|
// doroni.me - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/24
|
||||||
|
if (/rodimalam.com/.test(url)) { afterDOMLoaded(function() {
|
||||||
|
clickIfExistsNonStop('#SafelinkChecker');
|
||||||
|
let intervalId = setInterval(function() {
|
||||||
|
let targetLink = document.querySelector('a[href*="https://semawur.com/st/?api="]');
|
||||||
|
if (targetLink) { clearInterval(intervalId); redirect(decodeURIComponent(targetLink.href.split('url=')[1])); }; }, 1000);
|
||||||
|
}); }
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
|
@ -750,6 +750,7 @@ r1.foxylinks.site
|
||||||
/fiuxy2.co\/threads/
|
/fiuxy2.co\/threads/
|
||||||
/megalinks.info\/index.php\?v=/
|
/megalinks.info\/index.php\?v=/
|
||||||
/ocultandoo.blogspot.com/
|
/ocultandoo.blogspot.com/
|
||||||
|
/rodimalam.com/
|
||||||
/filecrypt.(cc|co)/
|
/filecrypt.(cc|co)/
|
||||||
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
/mega-enlace.com/
|
/mega-enlace.com/
|
||||||
|
|
Loading…
Reference in a new issue