Skip to content

Instantly share code, notes, and snippets.

@mvark
Created June 3, 2014 16:30
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 mvark/f5c6ac2846e6a995a5bd to your computer and use it in GitHub Desktop.
Save mvark/f5c6ac2846e6a995a5bd to your computer and use it in GitHub Desktop.
javascript:(function() {
a = document.getElementsByTagName('a');
for (i = 0; i < a.length; i++) {
a[i].href = 'http://www.google.com/gwt/x?noimg=1&btnGo=Go&source=wax&ie=UTF-8&oe=UTF-8&u=' + encodeURIComponent(a[i].href);
a[i].style.backgroundColor = '#f0f0f0';
}
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment