mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
added bypasses for starsddl.me and tech.unblockedgames.world
This commit is contained in:
parent
e469991caa
commit
25555cfd0a
4 changed files with 26 additions and 0 deletions
|
@ -674,6 +674,8 @@
|
|||
// @include /short-ly.co/
|
||||
// @include /shramikcard.in/
|
||||
// @include /blogging.techworldx.net/
|
||||
// @include /starsddl.me\/short/
|
||||
// @include /tech.unblockedgames.world/
|
||||
// @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
|
||||
|
|
|
@ -674,6 +674,8 @@
|
|||
// @include /short-ly.co/
|
||||
// @include /shramikcard.in/
|
||||
// @include /blogging.techworldx.net/
|
||||
// @include /starsddl.me\/short/
|
||||
// @include /tech.unblockedgames.world/
|
||||
// @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
|
||||
|
@ -1822,6 +1824,15 @@
|
|||
/blogging.techworldx.net/.test(url) ? clickIfVisible('#generater > img:nth-child(1)') : null;
|
||||
/blogging.techworldx.net/.test(url) ? clickIfVisible('#showlink') : null;
|
||||
|
||||
// starsddl.me
|
||||
/starsddl.me\/short\/\?anonym=/.test(url) ? redirect(atob(url.split('?anonym=')[1])) : null;
|
||||
|
||||
// https://greasyfork.org/en/scripts/431691-bypass-all-shortlinks/discussions/229509 (targets files in driveleech.org)
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('span.block > a:nth-child(1)')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('#verify_button')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('#verify_button2')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {redirectIfExists('#two_steps_btn')}) : null;
|
||||
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
// @include /short-ly.co/
|
||||
// @include /shramikcard.in/
|
||||
// @include /blogging.techworldx.net/
|
||||
// @include /starsddl.me\/short/
|
||||
// @include /tech.unblockedgames.world/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -153,6 +155,15 @@
|
|||
/blogging.techworldx.net/.test(url) ? clickIfVisible('#generater > img:nth-child(1)') : null;
|
||||
/blogging.techworldx.net/.test(url) ? clickIfVisible('#showlink') : null;
|
||||
|
||||
// starsddl.me
|
||||
/starsddl.me\/short\/\?anonym=/.test(url) ? redirect(atob(url.split('?anonym=')[1])) : null;
|
||||
|
||||
// https://greasyfork.org/en/scripts/431691-bypass-all-shortlinks/discussions/229509 (targets files in driveleech.org)
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('span.block > a:nth-child(1)')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('#verify_button')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {clickIfExists('#verify_button2')}) : null;
|
||||
/tech.unblockedgames.world/.test(url) ? afterDOMLoaded(function() {redirectIfExists('#two_steps_btn')}) : null;
|
||||
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
|
|
|
@ -659,3 +659,5 @@ r1.foxylinks.site
|
|||
/short-ly.co/
|
||||
/shramikcard.in/
|
||||
/blogging.techworldx.net/
|
||||
/starsddl.me\/short/
|
||||
/tech.unblockedgames.world/
|
||||
|
|
Loading…
Reference in a new issue