Wide new reddit | Userscript

Make new reddit layout fill screen width. 10/06/2020, 22:31:07

  1. // ==UserScript==
  2. // @name Wide new reddit | Userscript
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.reddit.com/*
  5. // @grant none
  6. // @version 1.3
  7. // @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
  8. // @icon https://www.redditstatic.com/desktop2x/img/favicon/favicon-96x96.png
  9. // @author jxm
  10. // @description Make new reddit layout fill screen width. 10/06/2020, 22:31:07
  11. // ==/UserScript==
  12. function addGlobalStyle(css) {
  13. var head, style;
  14. head = document.getElementsByTagName('head')[0];
  15. if (!head) { return; }
  16. style = document.createElement('style');
  17. style.type = 'text/css';
  18. style.innerHTML = css;
  19. head.appendChild(style);
  20. }
  21. addGlobalStyle('{._1OVBBWLtHoSPfGCRaPzpTf._3nSp9cdBpqL13CqjdMr2L_ { width: 90% !important;}}')
  22. addGlobalStyle('div { max-width: none !important; }');

QingJ © 2025

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