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.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Author
hervad
Daily installs
0
Total installs
2
Ratings
0 0 0
Version
1.0.0
Created
2026-04-29
Updated
2026-04-29
Size
4.54 KB
License
MIT
Applies to

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).