Skip to content

Instantly share code, notes, and snippets.

@cb1kenobi
Created March 6, 2012 06:55
Show Gist options
  • Save cb1kenobi/1984436 to your computer and use it in GitHub Desktop.
Save cb1kenobi/1984436 to your computer and use it in GitHub Desktop.
GitHub widescreen GreaseMonkey script
// ==UserScript==
// @name GitHub Widescreen
// @namespace http://github.com
// ==/UserScript==
(function() {
var style = document.createElement("style");
style.type = "text/css";
style.innerHTML = "body .container{width:95%;min-width:920px;}";
document.getElementsByTagName("head")[0].appendChild(style);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment