Waitless

Speeds up client-side countdown timers on download pages.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

Advertisement:

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

Advertisement:

작성자
hankaviator
일일 설치 수
3
총 설치 수
232
평점
0 0 1
버전
1.0.3
생성일
2026-05-04
갱신일
2026-05-05
크기
3.31KB
라이선스
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.