From 1ced064b571d6bded8ab79cc973156eb2b9d8fb9 Mon Sep 17 00:00:00 2001 From: Amm0ni4 Date: Mon, 3 Feb 2025 13:16:35 +0100 Subject: [PATCH] fix bypass for unblockedgames.world (moviesmod.cash, ...) --- Bypass_All_Shortlinks.meta.js | 4 ++-- Bypass_All_Shortlinks.user.js | 21 +++++++++++---------- extra_bypasses/extra_bypasses.user.js | 19 ++++++++++--------- supported_sites.txt | 2 +- 4 files changed, 24 insertions(+), 22 deletions(-) diff --git a/Bypass_All_Shortlinks.meta.js b/Bypass_All_Shortlinks.meta.js index 752f017..b2fb4e2 100644 --- a/Bypass_All_Shortlinks.meta.js +++ b/Bypass_All_Shortlinks.meta.js @@ -4,7 +4,7 @@ // @run-at document-start // @author Amm0ni4 // @noframes -// @version 93.4.37 +// @version 93.4.38 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle @@ -538,7 +538,7 @@ // @include /uqozy.com|posterify.net|drinkspartner.com|manishclasses.in|boiscd.com/ // @include /blogging.techworldx.net|10beasts.biz/ // @include /starsddl.me\/short/ -// @include /tech.unblockedgames.world/ +// @include /(tech|technews).unblockedgames.world/ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index 2b65f69..2676855 100644 --- a/Bypass_All_Shortlinks.user.js +++ b/Bypass_All_Shortlinks.user.js @@ -4,7 +4,7 @@ // @run-at document-start // @author Amm0ni4 // @noframes -// @version 93.4.37 +// @version 93.4.38 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle @@ -538,7 +538,7 @@ // @include /uqozy.com|posterify.net|drinkspartner.com|manishclasses.in|boiscd.com/ // @include /blogging.techworldx.net|10beasts.biz/ // @include /starsddl.me\/short/ -// @include /tech.unblockedgames.world/ +// @include /(tech|technews).unblockedgames.world/ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ @@ -1983,16 +1983,17 @@ // starsddl.me /starsddl.me\/short\/\?anonym=/.test(url) ? redirect(atob(url.split('?anonym=')[1])) : null; - // uhdmovies.icu, topmovies.icu (modlist.in) - + // uhdmovies.icu, topmovies.icu (modlist.in), moviesmod.cash + //uBO filter bypass: https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11995191 // button-clicking method - /* /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; */ - + /(tech|technews).unblockedgames.world/.test(url) ? afterDOMLoaded(function() { + clickIfExists('span.block > a:nth-child(1)'); + clickIfExists('#verify_button'); + clickIfExists('#verify_button2'); + redirectIfExists('#two_steps_btn'); + }) : null; //alt method (thanks to https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11063787) - if (/tech.unblockedgames.world/.test(url)) { + if (/(tech|technews).unblockedgames.world/.test(url)) { afterDOMLoaded(function() { // First step const landingElement = document.querySelector("#landing"); diff --git a/extra_bypasses/extra_bypasses.user.js b/extra_bypasses/extra_bypasses.user.js index 137f1f0..ad534f8 100644 --- a/extra_bypasses/extra_bypasses.user.js +++ b/extra_bypasses/extra_bypasses.user.js @@ -29,7 +29,7 @@ // @include /uqozy.com|posterify.net|drinkspartner.com|manishclasses.in|boiscd.com/ // @include /blogging.techworldx.net|10beasts.biz/ // @include /starsddl.me\/short/ -// @include /tech.unblockedgames.world/ +// @include /(tech|technews).unblockedgames.world/ // @include /seriezloaded.com.ng\/sl-download\/\?link=/ // @include /www.itscybertech.com/ // @include /thegadgetking.in/ @@ -543,16 +543,17 @@ // starsddl.me /starsddl.me\/short\/\?anonym=/.test(url) ? redirect(atob(url.split('?anonym=')[1])) : null; - // uhdmovies.icu, topmovies.icu (modlist.in) - + // uhdmovies.icu, topmovies.icu (modlist.in), moviesmod.cash + //uBO filter bypass: https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11995191 // button-clicking method - /* /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; */ - + /(tech|technews).unblockedgames.world/.test(url) ? afterDOMLoaded(function() { + clickIfExists('span.block > a:nth-child(1)'); + clickIfExists('#verify_button'); + clickIfExists('#verify_button2'); + redirectIfExists('#two_steps_btn'); + }) : null; //alt method (thanks to https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-11063787) - if (/tech.unblockedgames.world/.test(url)) { + if (/(tech|technews).unblockedgames.world/.test(url)) { afterDOMLoaded(function() { // First step const landingElement = document.querySelector("#landing"); diff --git a/supported_sites.txt b/supported_sites.txt index 5f7c07e..d247356 100644 --- a/supported_sites.txt +++ b/supported_sites.txt @@ -519,7 +519,7 @@ https://paster.so/* /uqozy.com|posterify.net|drinkspartner.com|manishclasses.in|boiscd.com/ /blogging.techworldx.net|10beasts.biz/ /starsddl.me\/short/ -/tech.unblockedgames.world/ +/(tech|technews).unblockedgames.world/ /seriezloaded.com.ng\/sl-download\/\?link=/ /www.itscybertech.com/ /thegadgetking.in/