Skip to content

Instantly share code, notes, and snippets.

@engelju
Last active May 11, 2016 10:03
Show Gist options
  • Save engelju/b39490211eae61947f615e8c1214e73d to your computer and use it in GitHub Desktop.
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
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