View Single Post
Old 12-17-2003, 11:35 AM   #3 (permalink)
Redlemon
Devoted
 
Redlemon's Avatar
 
Donor
Location: New England
I use a javascript under Mozilla Firebird, it might work on IE as well (or there's probably a similar one):
Code:
javascript: (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(%22javascript:'%22+styles+%22'%22); } else { newSS=document.createElement('link'); 
newSS.rel='stylesheet'; newSS.href='data:text/css,'+escape(styles); document.documentElement.childNodes[0].appendChild(newSS); } })();
It isn't quite as convenient as what you are asking for, but with a simple button press (I keep it in the toolbar), it sets the page to white, the text to black, the links to blue/purple, removes background images, and probably some other stuff.
__________________
I can't read your signature. Sorry.
Redlemon is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76