Skip to content

Instantly share code, notes, and snippets.

@hekt
Created February 6, 2012 23:47
Show Gist options
  • Save hekt/1755965 to your computer and use it in GitHub Desktop.
Save hekt/1755965 to your computer and use it in GitHub Desktop.
remove too many args from google search url
(function() {
url = location.href;
window.prompt('Clean URL', url.match(/^.+?\?/) + url.match(/q=.*?(?=&)/));
})();
// javascript:(function(){var%20u=location.href;window.prompt('Clean%20URL',u.match(/^.+?\?/)+u.match(/q=.*?(?=&)/))})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment