Sleazy Fork is available in English.

海角天涯显示大图

放大显示海角里的图片,这么小怎么看!

// ==UserScript==
// @name     海角天涯显示大图
// @description 放大显示海角里的图片,这么小怎么看!
// @include  https://*haijiao.com/*
// @grant    GM_addStyle
// @run-at   document-start
// @version  1.0.5
// @license MIT
// @namespace https://greasyfork.org/users/439775
// ==/UserScript==

GM_addStyle ( `
    .article img[title="点击查看大图"],
    .mobile .details-body p img {
        max-width: 100% !important;
        max-height:calc(100vh - 4em)!important;
    }

    .html-box.ishide {
        position: static !important;
        overflow: auto !important;
        max-height: none !important;
    }
    .html-box.ishide::before {
        display: none !important;
    }
    .html-bottom-box {
        display: none !important;
    }
` );