Skip to content

Instantly share code, notes, and snippets.

@pkutzner
Created October 1, 2016 05:17
Show Gist options
  • Save pkutzner/d390a60229c59c3b21578bff5886ed9b to your computer and use it in GitHub Desktop.
Save pkutzner/d390a60229c59c3b21578bff5886ed9b to your computer and use it in GitHub Desktop.
Google Chrome Multi Keyword Search
javascript:
var s='%s';
url='YOUR URL, WITH %s's FOR EACH TERM';
query='';
urlchunks=url.split('%s');
schunks=s.split(';');
for(i=0; i<schunks.length; i++)query+=urlchunks[i]+schunks[i];
location.replace(query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment