Created
October 12, 2011 16:20
-
-
Save kkaefer/1281706 to your computer and use it in GitHub Desktop.
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 monospace | |
// @namespace http://kkaefer.com | |
// @match https://github.com/* | |
// @author Konstantin Käfer | |
// @description Changes GitHub's table listing to monospace | |
// ==/UserScript== | |
(function() { | |
var style = document.createElement('style'); | |
style.innerText = [ | |
'.tree-browser { font-family: Menlo, "Bitstream Vera Sans Mono", Monaco, monospace; }' | |
].join('\n'); | |
document.head.appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment