/* bookmarklet - add bookmark and paste this code into the location/url value, save. Then click the bookmark to overwrite the text styles on any page */ javascript:(function(){var newSS, styles='*, a, td, textarea, label, input, select, span, input[type=text], p { background: white !important; color: black !important; font-size:11pt !important;font-family:arial,helvetica !important; } :link, :link * { color: black !important;font-family:arial,helvetica;font-size:11pt; } :visited, :visited * { color: black !important }'; if(document.createStyleSheet) { document.createStyleSheet("javascript:'"+styles+"'"); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.getElementsByTagName("head")[0].appendChild(newSS); } })();