// ==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 // @downloadURL none // ==/UserScript== (function() { let resizeImg = () => { let imgBean = $(".post-reply-list .thread-img"); imgBean.css('max-width', '100px'); imgBean.css('max-height', '100px'); } resizeImg(); $(document).scroll(() => { resizeImg(); }) })();