Webtoons Chapter Preloader

Force-loads every image in a Webtoons chapter on page open instead of lazy-loading on scroll. Handles SPA navigation between chapters.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

작성자
hervad
일일 설치 수
0
총 설치 수
15
평점
0 0 0
버전
1.0.0
생성일
2026-04-29
갱신일
2026-04-29
크기
4.54KB
라이선스
MIT
적용 사이트

Webtoons.com lazy-loads chapter images as you scroll, which produces a brief blank-image flash every time a new panel comes into view — especially noticeable on slower connections or long chapters. This script forces the browser to fetch the entire chapter immediately on page open. By the time you scroll, every image is already in cache.

It also handles the in-place navigation Webtoons uses between chapters: when the image list swaps without a full page reload, the preloader re-runs automatically.

How it works

For every <img> inside #_imageList, the script copies the real URL from data-url to src and sets loading="eager" and decoding="async" to nudge the browser to fetch immediately. A MutationObserver re-runs the same pass whenever new images appear (chapter changes, dynamically inserted nodes), and is filtered to image-adding mutations only so it doesn't fire on every unrelated DOM tick.

A small status bubble in the bottom-right corner shows preload progress and fades out once everything's loaded.

Privacy

The script uses @grant none, so it has no userscript-manager privileges beyond plain DOM access — no network APIs, no storage, nothing it could exfiltrate even in principle.

Compatibility

  • Userscript managers: Tampermonkey, Violentmonkey, Greasemonkey
  • Browsers: Chrome, Edge, Firefox, Brave, Opera, Vivaldi, Safari (with Tampermonkey)
  • Site: desktop only — www.webtoons.com/*/viewer*. The mobile site m.webtoons.com is not matched.

Chrome users: since Manifest V3, Tampermonkey requires Developer Mode enabled in chrome://extensions/ for userscripts to run. Flip the toggle once.

Source & issues

github.com/hervad/webtoons-chapter-preloader — bug reports and pull requests welcome. When reporting a bug, please include a chapter URL where the issue reproduces (markup occasionally varies by genre/locale).