Greasy Fork

Make Readcomiconline Great Again

Comixes in full width, zoom panel hidden

目前为 2021-11-18 提交的版本。查看 最新版本

// ==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');
})();