Last active
December 15, 2015 07:19
-
-
Save benjamine/5222533 to your computer and use it in GitHub Desktop.
UserScript/GithubFullWidth
This file contains 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 Full Width | |
// @namespace github.responsive.width | |
// @version 0.1 | |
// @description make github use all your screen | |
// @include https://github.com/*/blob/* | |
// @include https://github.com/*/pull/*/files | |
// @include https://github.com/*/commit/* | |
// @copyright 2013+, Benjamin Eidelman | |
// ==/UserScript== | |
var style = document.createElement('style'); | |
style.setAttribute('type', 'text/css'); | |
style.innerHTML = '\ | |
.container {\ | |
width: 98%;\ | |
}\ | |
#slider .frames {\ | |
width: 100%;\ | |
}\ | |
#slider .frames .frame {\ | |
width: 100%;\ | |
}' | |
document.body.appendChild(style); |
Also GreaseMonkey on FF
nice, thx!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
works on Chrome on OSX too