Created
April 8, 2025 09:38
-
-
Save thomas-riccardi/b3bb8739293e2d7f39b7907b6adaaf45 to your computer and use it in GitHub Desktop.
UserScript: Wider content area on Github: PR, issues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Github wider | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-04-08 | |
// @description Wider content area on Github: PR, issues | |
// @author Thomas Riccardi | |
// @match https://github.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle ( ` | |
/* full PR/issues page: wider */ | |
.container-xl { | |
max-width: 1500px !important; | |
} | |
` ); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment