mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
added bypass and auto-DL for file host skyve.io
used in dodi-repacks.site
This commit is contained in:
parent
8ff23ed04b
commit
58e79f54aa
4 changed files with 12 additions and 0 deletions
|
@ -706,6 +706,7 @@
|
|||
// @include /(do|fast).rtilinks.com/
|
||||
// @include /vidhidepro.com\/d/
|
||||
// @include /www.mirrored.to\/files\/(?!.*\?hash=)/
|
||||
// @include /skyve.io/
|
||||
// @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/
|
||||
// @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js
|
||||
// @updateURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.meta.js
|
||||
|
|
|
@ -706,6 +706,7 @@
|
|||
// @include /(do|fast).rtilinks.com/
|
||||
// @include /vidhidepro.com\/d/
|
||||
// @include /www.mirrored.to\/files\/(?!.*\?hash=)/
|
||||
// @include /skyve.io/
|
||||
// @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/
|
||||
// @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js
|
||||
// @updateURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.meta.js
|
||||
|
@ -1946,6 +1947,10 @@
|
|||
// mirrored.to seen in rareanimes.net
|
||||
/www.mirrored.to\/files\/(?!.*\?hash=)/.test(url) ? afterDOMLoaded(function() {redirectIfExists('body > div.container.dl-width > div:nth-child(4) > div > a')}) : null;
|
||||
|
||||
// skyve.io file host, seen on dodi-repacks.site
|
||||
/skyve.io/.test(url) ? afterDOMLoaded(function() {clickIfExists('#method_free')}) : null;
|
||||
/skyve.io/.test(url) ? afterDOMLoaded(function() {clickIfExists('.bicon')}) : null; //download button
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
// @include /(do|fast).rtilinks.com/
|
||||
// @include /vidhidepro.com\/d/
|
||||
// @include /www.mirrored.to\/files\/(?!.*\?hash=)/
|
||||
// @include /skyve.io/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -282,6 +283,10 @@
|
|||
// mirrored.to seen in rareanimes.net
|
||||
/www.mirrored.to\/files\/(?!.*\?hash=)/.test(url) ? afterDOMLoaded(function() {redirectIfExists('body > div.container.dl-width > div:nth-child(4) > div > a')}) : null;
|
||||
|
||||
// skyve.io file host, seen on dodi-repacks.site
|
||||
/skyve.io/.test(url) ? afterDOMLoaded(function() {clickIfExists('#method_free')}) : null;
|
||||
/skyve.io/.test(url) ? afterDOMLoaded(function() {clickIfExists('.bicon')}) : null; //download button
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -691,3 +691,4 @@ r1.foxylinks.site
|
|||
/(do|fast).rtilinks.com/
|
||||
/vidhidepro.com\/d/
|
||||
/www.mirrored.to\/files\/(?!.*\?hash=)/
|
||||
/skyve.io/
|
||||
|
|
Loading…
Reference in a new issue