Skip to content

Instantly share code, notes, and snippets.

@kkaefer
Created October 12, 2011 16:20
Show Gist options
  • Save kkaefer/1281706 to your computer and use it in GitHub Desktop.
Save kkaefer/1281706 to your computer and use it in GitHub Desktop.
// ==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