mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-27 23:43:02 +05:00
add modijiurl
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/180 https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/111 https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11295970
This commit is contained in:
parent
e1fae135b4
commit
fc1e5e34e3
4 changed files with 18 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 93.1.4
|
||||
// @version 93.1.5
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -748,6 +748,8 @@
|
|||
// @include /^https:\/\/relampagomovies\.com\/.+/
|
||||
// @include /(shramikcard|pmkisanlists|techishant|cinedesi|thevouz).in|cookad.net|tejtime24.com/
|
||||
// @include /tii.la|oei.la|iir.la|tvi.la|oii.la|tpi.li|lnbz.la/
|
||||
// @include /^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/
|
||||
// @include /^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
// @include /^https:\/\/.*\.(tradeshowrating\.com|historyofyesterday\.com)\/.*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 93.1.4
|
||||
// @version 93.1.5
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -748,6 +748,8 @@
|
|||
// @include /^https:\/\/relampagomovies\.com\/.+/
|
||||
// @include /(shramikcard|pmkisanlists|techishant|cinedesi|thevouz).in|cookad.net|tejtime24.com/
|
||||
// @include /tii.la|oei.la|iir.la|tvi.la|oii.la|tpi.li|lnbz.la/
|
||||
// @include /^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/
|
||||
// @include /^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
// @include /^https:\/\/.*\.(tradeshowrating\.com|historyofyesterday\.com)\/.*/
|
||||
|
@ -2637,6 +2639,10 @@
|
|||
}
|
||||
}) : null;
|
||||
|
||||
// modijiurl - https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11295970
|
||||
/^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/.test(url) ? window.location.assign(new URLSearchParams(window.location.search).get('link')) : null;
|
||||
/^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/.test(url) ? redirectIfNotDisabled('#getLinkButton') : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -200,6 +200,8 @@
|
|||
// @include /^https:\/\/relampagomovies\.com\/.+/
|
||||
// @include /(shramikcard|pmkisanlists|techishant|cinedesi|thevouz).in|cookad.net|tejtime24.com/
|
||||
// @include /tii.la|oei.la|iir.la|tvi.la|oii.la|tpi.li|lnbz.la/
|
||||
// @include /^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/
|
||||
// @include /^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -1103,6 +1105,10 @@
|
|||
}
|
||||
}) : null;
|
||||
|
||||
// modijiurl - https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11295970
|
||||
/^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/.test(url) ? window.location.assign(new URLSearchParams(window.location.search).get('link')) : null;
|
||||
/^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/.test(url) ? redirectIfNotDisabled('#getLinkButton') : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -729,6 +729,8 @@ https://paster.so/*
|
|||
/^https:\/\/relampagomovies\.com\/.+/
|
||||
/(shramikcard|pmkisanlists|techishant|cinedesi|thevouz).in|cookad.net|tejtime24.com/
|
||||
/tii.la|oei.la|iir.la|tvi.la|oii.la|tpi.li|lnbz.la/
|
||||
/^https?:\/\/(?:phonesparrow.com|rajasthantopnews.com|stocks.mewatjobs.com|samaysuchi.com|alljntuworld.in|mazijob.in|asaura.com|updatewallah.in|wikijankari.com|newsonnline.com|creditcarred.com|accucaptions.com)\/safe.php\?link=.*$/
|
||||
/^https:\/\/modijiurl\.com\/NJW7do\/\?mid=.*$/
|
||||
/filecrypt.(cc|co)/
|
||||
/(mega-enlace|acortados).com/
|
||||
/^https:\/\/.*\.(tradeshowrating\.com|historyofyesterday\.com)\/.*/
|
||||
|
|
Loading…
Reference in a new issue