Created
February 13, 2009 14:22
-
-
Save wfarr/63923 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 reddit - Make fonts less retarded | |
| // @namespace http://wfarr.org | |
| // @description Makes reddit's fonts more tolerable | |
| // @include http://*.reddit.com/* | |
| // @include http://reddit.com/* | |
| // ==/UserScript== | |
| modifyCSS(); | |
| function modifyCSS() { | |
| var s = document.styleSheets[0]; | |
| s.insertRule('body { font-size: 0.9em; }',s.cssRules.length); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment