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.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
hervad
Günlük kurulumlar
1
Toplam kurulumlar
15
Değerlendirmeler
0 0 0
Versiyon
1.0.0
Oluşturulma
29.04.2026
Güncellenme
29.04.2026
Boyut
4,54 KB
Lisans
MIT
Geçerli

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