虎扑移动端图片缩小

把楼中回复图片变成30px

// ==UserScript==
// @name         虎扑移动端图片缩小
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  把楼中回复图片变成30px
// @author       tao
// @match        https://m.hupu.com/*
// @grant    GM_addStyle
// @license MIT
// ==/UserScript==

GM_addStyle ( `
    .show-section {
       width: 30px!important;
    }
    .sign-3 {
       display: none!important;
    }
    .operation-alpha {
       display: none!important;
    }
    .bottom-reply-wrap {
       display: none!important;
    }
` );

document.execCommand = null