mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-03-02 21:39:38 +05:00
fix teknoasian for pahe.ink removing timer acceleration
This commit is contained in:
parent
a253e52575
commit
bfd8659b19
4 changed files with 15 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue