虎扑论坛界面优化

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

目前为 2023-08-08 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name 虎扑论坛界面优化
  3. // @namespace KDX Group
  4. // @version 最终版
  5. // @description 这么大个詹姆斯动图要吓死人啊?重改!
  6. // @author AceKadoce
  7. // @match https://bbs.hupu.com/**
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=hupu.com
  9. // @grant none
  10. // @require https://code.jquery.com/jquery-2.1.4.min.js
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. $(() => {
  16. $("div[class^=index_bbs-post-web-body-right]").remove();
  17. $("div[class^=index_bbs-post-web-body-left]").css("flex", "1");
  18. })
  19.  
  20. let resizeImg = () => {
  21. let imgBean = $(".post-reply-list .thread-img");
  22. imgBean.css('max-width', '100px');
  23. imgBean.css('max-height', '100px');
  24. }
  25.  
  26. resizeImg();
  27. $(document).scroll(() => {
  28. resizeImg();
  29. })
  30. })();

QingJ © 2025

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