diff --git a/Bypass_All_Shortlinks.meta.js b/Bypass_All_Shortlinks.meta.js index 36b18fe..f0892c7 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.7.2 +// @version 93.7.3 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index 268157f..bc6f1aa 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.7.2 +// @version 93.7.3 // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle @@ -2796,9 +2796,11 @@ // pahe.ink /teknoasian.com/.test(url) ? afterDOMLoaded(function() { - clickWithDelay('.myButton', 2000); - clickWithDelay('.myButton', 3000); - clickWithDelay('.myButton', 4000); + let intervalId = setInterval(() => { + let button = document.querySelector('.myButton'); + let buttonIsVisible = button && button.offsetParent !== null; + if (buttonIsVisible) {button.click();} + }, 500); }) : null; //suncy.net (upfiles.com) (seen used in fiuxy2.co) @@ -2880,7 +2882,7 @@ /^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null; // pahe.ink - /teknoasian.com/.test(url) ? boostTimers() : null; + // /teknoasian.com/.test(url) ? boostTimers() : null; // goo.st - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/215 /goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null; diff --git a/extra_bypasses/extra_bypasses.user.js b/extra_bypasses/extra_bypasses.user.js index db35e84..d644ddb 100644 --- a/extra_bypasses/extra_bypasses.user.js +++ b/extra_bypasses/extra_bypasses.user.js @@ -1262,9 +1262,11 @@ // pahe.ink /teknoasian.com/.test(url) ? afterDOMLoaded(function() { - clickWithDelay('.myButton', 2000); - clickWithDelay('.myButton', 3000); - clickWithDelay('.myButton', 4000); + let intervalId = setInterval(() => { + let button = document.querySelector('.myButton'); + let buttonIsVisible = button && button.offsetParent !== null; + if (buttonIsVisible) {button.click();} + }, 500); }) : null; //suncy.net (upfiles.com) (seen used in fiuxy2.co) @@ -1346,7 +1348,7 @@ /^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null; // pahe.ink - /teknoasian.com/.test(url) ? boostTimers() : null; + // /teknoasian.com/.test(url) ? boostTimers() : null; // goo.st - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/215 /goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null; diff --git a/untouched_Bypass_All_Shortlinks_patched.user.js b/untouched_Bypass_All_Shortlinks_patched.user.js index b99cec4..aa49a4a 100644 --- a/untouched_Bypass_All_Shortlinks_patched.user.js +++ b/untouched_Bypass_All_Shortlinks_patched.user.js @@ -37,7 +37,7 @@ // @namespace Violentmonkey Scripts // @run-at document-start // @author Bloggerpemula -// @version 93.7.2 +// @version 93.7.3 // @match *://*/* // @grant GM_setValue // @grant GM_getValue