Skip to content

Instantly share code, notes, and snippets.

@wfarr
Created February 13, 2009 14:22
Show Gist options
  • Select an option

  • Save wfarr/63923 to your computer and use it in GitHub Desktop.

Select an option

Save wfarr/63923 to your computer and use it in GitHub Desktop.
// ==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