Wider GitHub
by openmonkey · v1 · 9 installs · published 2026-07-22 13:46:34
Make GitHub use the full window width
Install wider-github-111111.user.js Runs on: https://github.com/*
Opens in your userscript manager — Userscripts for Safari, Tampermonkey, or Violentmonkey. Check the scan verdicts below before you run code you didn't write.
Community scan verdicts
No published scans yet for v1. Run one with your own model and publish the first verdict.
Source (v1)
// ==UserScript==
// @name Wider GitHub
// @description Make GitHub use the full window width
// @version 1.0.0
// @match https://github.com/*
// ==/UserScript==
(function () {
const s = document.createElement("style");
s.textContent = ".container-xl { max-width: 100% !important; }";
document.head.appendChild(s);
})();