// ==UserScript==
// @name Hotmail Font
// @namespace http://greasemonkey.sitesbr.net
// @description Corrects the Hotmail font style
// @include *.hotmail.*
// ==/UserScript==
/*
* Autor: Sergio Abreu
* Idéia de criação: Brunno Stanley
* http://sitedosergio.sitesbr.net/
*
* Criado em 15/01/2006 14:30h
* Atualizado em 18/01/2006 12:50h
*
*/
function fonte_Hot(){
var n = 0;
while(document.styleSheets.item(n)){
var a = document.styleSheets.item(n).cssRules;
for(var b = 0; b < a.length; b++){
a[b].cssText = a[b].cssText.replace(/[\spx]+/gi, "px");
if( a[b].cssText.indexOf('ahoma') > -1){
var s = a[b].cssText.replace(/([t|T]ahoma)+/gi, "verdana, arial");
s = s.substring(0, s.indexOf("}")) + "; font-size:12px; color:black;}" ;
document.styleSheets.item(n).deleteRule(b);
document.styleSheets.item(n).insertRule(s, b+1);
}
}
n++;
}
}
fonte_Hot();