更宽的 Github.com

拉伸 Github 新 UI 的容器, 填满浏览器界面

  1. // ==UserScript==
  2. // @name Wider github.com
  3. // @name:zh-CN 更宽的 Github.com
  4. // @namespace BigWater
  5. // @description Fills the blank between the container and two sides of the browser.
  6. // @description:zh-CN 拉伸 Github 新 UI 的容器, 填满浏览器界面
  7. // @match https://github.com/*
  8. // @grant none
  9. // @version 0.1.3
  10. // @author BigWater
  11. // @run-at document-idle
  12. // ==/UserScript==
  13.  
  14. function $(e) {
  15. return document.querySelector(e);
  16. }
  17.  
  18. (function () {
  19. container = $('.container-xl');
  20. container.className = container.className.replace('container-xl', 'container-xxl');
  21. })();

QingJ © 2025

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