Created
October 1, 2016 05:17
-
-
Save pkutzner/d390a60229c59c3b21578bff5886ed9b to your computer and use it in GitHub Desktop.
Google Chrome Multi Keyword Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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