您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reduces the max width and height of pictures on mangakakalot
// ==UserScript== // @name Mangakakalot Image Max Width/Height // @description Reduces the max width and height of pictures on mangakakalot // @author xav0989 // @version 1.1 // @include /^https?:\/\/(?:www\.)?(mangakakalot\.com|manganelo\.com)\/chapter\/(?:.*)\/(?:.*)$/ // @require https://greasemonkey.github.io/gm4-polyfill/gm4-polyfill.js // @require https://code.jquery.com/jquery-3.3.1.js // @grant GM_addStyle // @namespace https://greasyfork.org/users/674818 // ==/UserScript== GM_addStyle(` .vung-doc { margin: auto; max-width: 980px; } .vung-doc img { max-height: 900px; } `);