Waitless

Speeds up client-side countdown timers on download pages.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

Advertisement:

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

Advertisement:

作者
hankaviator
今日安裝
3
安裝總數
232
評價
0 0 1
版本
1.0.3
建立日期
2026-05-04
更新日期
2026-05-05
尺寸
3.3 KB
授權條款
GPL-3.0-or-later
腳本執行於

Waitless

Waitless is a Greasemonkey/Tampermonkey userscript that speeds up JavaScript-driven countdowns on supported download pages by making browser timers appear to move faster.

It has no configuration panel and runs only on the hosts listed in the userscript header.

What It Changes

The current script accelerates:

  • setTimeout
  • setInterval
  • Date and Date.now()
  • performance.now() when the page allows it to be overridden
  • only delays of 500ms or more are accelerated, so short polling and animation timers stay at normal speed

Default behavior in waitless.js:

  • Speed factor: 30x
  • Minimum accelerated delay: 500ms
  • Minimum scheduled delay after scaling: 10ms
  • Match patterns: the listed download hosts in the userscript header
  • Run timing: document-start

What It Can Help With

If a page relies only on client-side JavaScript countdowns before enabling a button or showing content, this script may make that countdown finish sooner.

Limits

This does not bypass:

  • server-enforced waiting periods
  • token validation
  • CAPTCHAs
  • rate limits
  • download rules enforced outside page-side JavaScript

Some sites may also behave incorrectly if they depend on real-time timing for animations, polling, or anti-tamper logic.

Installation

  1. Install a userscript manager such as Greasemonkey or Tampermonkey.
  2. Open Greasy Fork at https://greasyfork.org/.
  3. Find the Waitless script and click its install button.
  4. Confirm the installation in your userscript manager.
  5. Reload the page you want to test.

Verification

The current version was verified locally with a small Node-based harness that executed the userscript in a mocked browser environment.

Observed behavior:

  • a 3000ms timeout fired in about 100ms
  • Date.now() advanced about 30x faster than real elapsed time
  • performance.now() advanced about 30x faster than real elapsed time

That confirms the present implementation is working as written for timer acceleration. Real-world results still depend on how each site implements its waiting logic.