By FaeGiN
—
Last update
Feb 7, 2008
—
Installed
328 times.
// ==UserScript==
// @name PlainPager
// @author HitMeWithIt
// @namespace http://www.mp33pm.co.uk
// @description Make the pages PLAIN with white background/black text/blue Links, so you can read them better and easier!
// @include http://*
// @include *
// ==/UserScript==
(function(){var newSS, styles='* { background: white ! important; color: black !important } :link, :link * { color: #0000EE !important } :visited, :visited * { color: #551A8B !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); } })()