Skip to content

Instantly share code, notes, and snippets.

@ramn
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ramn/fa7f13b736f872e6f506 to your computer and use it in GitHub Desktop.
Save ramn/fa7f13b736f872e6f506 to your computer and use it in GitHub Desktop.
normalize bookmarklet
// Create a bookmarklet with the following line:
// javascript:(function(){document.body.appendChild(document.createElement('script')).src='https://gist.githubusercontent.com/ramn/fa7f13b736f872e6f506/raw/normalize_bookmarklet.js';})();
var s=document.body.style;
s.fontFamily='"Optima", "ubuntu light", "lucida grande", verdana';
s.background='#EEEEEE';
s.color='black';
for (i=0; i<document.links.length; i++) {
document.links[i].style.color='blue';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment