mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-03-03 13:59:37 +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
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.7.2
|
// @version 93.7.3
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.7.2
|
// @version 93.7.3
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -2796,9 +2796,11 @@
|
||||||
|
|
||||||
// pahe.ink
|
// pahe.ink
|
||||||
/teknoasian.com/.test(url) ? afterDOMLoaded(function() {
|
/teknoasian.com/.test(url) ? afterDOMLoaded(function() {
|
||||||
clickWithDelay('.myButton', 2000);
|
let intervalId = setInterval(() => {
|
||||||
clickWithDelay('.myButton', 3000);
|
let button = document.querySelector('.myButton');
|
||||||
clickWithDelay('.myButton', 4000);
|
let buttonIsVisible = button && button.offsetParent !== null;
|
||||||
|
if (buttonIsVisible) {button.click();}
|
||||||
|
}, 500);
|
||||||
}) : null;
|
}) : null;
|
||||||
|
|
||||||
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
||||||
|
@ -2880,7 +2882,7 @@
|
||||||
/^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null;
|
/^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null;
|
||||||
|
|
||||||
// pahe.ink
|
// 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 - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/215
|
||||||
/goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null;
|
/goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null;
|
||||||
|
|
|
@ -1262,9 +1262,11 @@
|
||||||
|
|
||||||
// pahe.ink
|
// pahe.ink
|
||||||
/teknoasian.com/.test(url) ? afterDOMLoaded(function() {
|
/teknoasian.com/.test(url) ? afterDOMLoaded(function() {
|
||||||
clickWithDelay('.myButton', 2000);
|
let intervalId = setInterval(() => {
|
||||||
clickWithDelay('.myButton', 3000);
|
let button = document.querySelector('.myButton');
|
||||||
clickWithDelay('.myButton', 4000);
|
let buttonIsVisible = button && button.offsetParent !== null;
|
||||||
|
if (buttonIsVisible) {button.click();}
|
||||||
|
}, 500);
|
||||||
}) : null;
|
}) : null;
|
||||||
|
|
||||||
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
//suncy.net (upfiles.com) (seen used in fiuxy2.co)
|
||||||
|
@ -1346,7 +1348,7 @@
|
||||||
/^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null;
|
/^https:\/\/relampagomovies\.com\/.+/.test(url) ? boostTimers() : null;
|
||||||
|
|
||||||
// pahe.ink
|
// 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 - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/215
|
||||||
/goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null;
|
/goo.st|(businesssoftwarehere|freevpshere|softwaresolutionshere|travelironguide).com/.test(url) ? boostTimers() : null;
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
// @namespace Violentmonkey Scripts
|
// @namespace Violentmonkey Scripts
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Bloggerpemula
|
// @author Bloggerpemula
|
||||||
// @version 93.7.2
|
// @version 93.7.3
|
||||||
// @match *://*/*
|
// @match *://*/*
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
|
|
Loading…
Reference in a new issue