Skip to content

Instantly share code, notes, and snippets.

@xeoncross
Created February 1, 2011 18:57
Show Gist options
  • Save xeoncross/806390 to your computer and use it in GitHub Desktop.
Save xeoncross/806390 to your computer and use it in GitHub Desktop.
Make any website page into an easy-to-read, black text on white. Removes all backgrounds and colors. Drag to your bookmark bar.
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.getElementsByTagName(%22head%22)[0].appendChild(newSS); } })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment