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, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

作者のサイトでサポートを受ける。または、このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
作者
hervad
1日のインストール数
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).