您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Comixes in full width, zoom panel hidden
// ==UserScript== // @name Make Readcomiconline Great Again // @namespace http://tampermonkey.net/ // @version 0.1 // @description Comixes in full width, zoom panel hidden // @author You // @match https://readcomiconline.li/* // @icon https://www.google.com/s2/favicons?domain=readcomiconline.li // @grant none // @require https://unpkg.com/[email protected]/dist/jquery.min.js // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... $(`<style type=text/css> #containerRoot div:nth-child(4) { margin: 0 !important; width: 100% !important; } #divImage img { max-width: 100% !important; }\ .btnZoom-container { display: none !important; } </style>`).appendTo('head'); })();