ShrinkImageInQuote

Make images in quotes smaller for forum.

  1. // ==UserScript==
  2. // @name ShrinkImageInQuote
  3. // @namespace torn
  4. // @version 1.0
  5. // @description Make images in quotes smaller for forum.
  6. // @author bot_7420 [2937420]
  7. // @license GNU GPLv3
  8. // @run-at document-body
  9. // @match https://www.torn.com/forums.php
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict";
  14. checkForum();
  15. function checkForum() {
  16. if (location.hash.startsWith("#/p=threads") && $("ul.thread-list").length > 0) {
  17. const $imgs = $("ul.thread-list div.quote-post-content img").not(".script-shrunk");
  18. $imgs.addClass("script-shrunk");
  19. $imgs.attr("style", "width: 100px;");
  20. }
  21. setTimeout(checkForum, 200);
  22. }
  23. })();

QingJ © 2025

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