虎扑论坛界面优化

这么大个詹姆斯动图要吓死人啊?重改!

// ==UserScript==
// @name         虎扑论坛界面优化
// @namespace    KDX Group
// @version      最终版
// @description  这么大个詹姆斯动图要吓死人啊?重改!
// @author       AceKadoce
// @match        https://bbs.hupu.com/**
// @icon         https://www.google.com/s2/favicons?sz=64&domain=hupu.com
// @grant        none
// @require https://code.jquery.com/jquery-2.1.4.min.js
// @license MIT
// ==/UserScript==

(function() {
    $(() => {
        $("div[class^=index_bbs-post-web-body-right]").remove();
        $("div[class^=index_bbs-post-web-body-left]").css("flex", "1");
    })

    let resizeImg = () => {
        let imgBean = $(".post-reply-list .thread-img");
        imgBean.css('max-width', '100px');
        imgBean.css('max-height', '100px');
    }

    resizeImg();
    $(document).scroll(() => {
        resizeImg();
    })
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址