Skip to content

Instantly share code, notes, and snippets.

@brettz9
Created March 4, 2014 12: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 brettz9/9345623 to your computer and use it in GitHub Desktop.
Save brettz9/9345623 to your computer and use it in GitHub Desktop.
Google Redirect bookmarklet and keyword target per http://brett-zamir.me/wiki/Google-Redirect
<script>
var url = window.location.href.match(/[?&]url=([^&]*)(?=&|$)/);
url = url && url[1];
url = decodeURIComponent(url).match(/[?&]url=([^&]*)(?=&|$)/);
url = url && url[1];
window.location = decodeURIComponent(url);
</script>
var url = window.location.href.match(/[?&]url=([^&]*)(?=&|$)/);
url = url && url[1];
window.location = decodeURIComponent(url);
//i.e.: javascript:(function()%7Bvar%20url%20%3D%20window.location.href.match(%2F%5B%3F%26%5Durl%3D(%5B%5E%26%5D*)(%3F%3D%26%7C%24)%2F)%3Burl%20%3D%20url%20%26%26%20url%5B1%5D%3Bwindow.location%20%3D%20decodeURIComponent(url)%7D)()
// courtesy: http://mrcoles.com/bookmarklet/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment