Improved Content Width - fandom.com

The width of the content window is no longer limited, making it easier to read wide tables.

  1. // ==UserScript==
  2. // @name Improved Content Width - fandom.com
  3. // @namespace Violentmonkey Scripts
  4. // @match https://*.fandom.com/wiki/*
  5. // @grant none
  6. // @version 1.0
  7. // @author neruok
  8. // @license WTFPL
  9. // @description The width of the content window is no longer limited, making it easier to read wide tables.
  10. // ==/UserScript==
  11.  
  12. var s = document.createElement("style");
  13. s.innerHTML = ".wide-resizable-container { max-width:unset !important; }";
  14. document.getElementsByTagName("head")[0].appendChild(s);
  15.  
  16. var elem, style;
  17. elem = document.querySelector(".main-container .resizable-container");
  18. elem.classList.add("wide-resizable-container");
  19.  
  20.  
  21.  

QingJ © 2025

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