Last active
May 11, 2016 10:03
-
-
Save engelju/b39490211eae61947f615e8c1214e73d to your computer and use it in GitHub Desktop.
Bookmarklet to make a home page easier to read. Original from: https://gist.github.com/chrismealy/7075460
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){var newSS, styles='* { background:white ! important; color: black !important; text-decoration: none !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); } })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment