您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Force classic left to right comic panel layout on webtoon.
当前为
// ==UserScript== // @name Webtoon scroll-no-more // @icon https://upload.wikimedia.org/wikipedia/commons/thumb/0/09/Naver_Line_Webtoon_logo.png/128px-Naver_Line_Webtoon_logo.png // @description Force classic left to right comic panel layout on webtoon. // @match https://www.webtoons.com/en/*/viewer* // @version 1 // @grant none // @esversion 11 // @license MIT // @namespace https://greasyfork.org/users/1368219 // ==/UserScript== // Fill horizontal space with comics document.getElementById("_viewerBox")?.style.setProperty('width', 'auto'); // Add borders to images so reading order is clear (they don't exactly line up with actual panels) Array.from(document.getElementsByClassName("_images")).forEach(function(element) { element.style.setProperty('border', '1px solid grey'); }); // Remove gaps between images document.getElementById("_imageList")?.style.setProperty('font-size', '0');