Twitter Text Hack

By Ale Muñoz Last update Oct 4, 2007 — Installed 201 times. Daily Installs: 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0
// ==UserScript==
// @namespace 			http://sofanaranja.com
// @name 						Twitter Text Hack
// @description 		Replaces the fugly Lucida Grande from the new Twitter redesign with a more palatable Arial
// @author				 	bomberstudios
// @version 				1.1
// @include 				http://twitter.com/*
// ==/UserScript==

var content = document.getElementById('container');
content.style.fontFamily = "Arial";
content.style.fontSize = "11px";