Skip to content

Instantly share code, notes, and snippets.

@arnaud33200
Created March 7, 2019 20:28
Show Gist options
  • Save arnaud33200/c6abe6a76f59a11673d60a46474c9412 to your computer and use it in GitHub Desktop.
Save arnaud33200/c6abe6a76f59a11673d60a46474c9412 to your computer and use it in GitHub Desktop.
javascript: (function() {
var s='%s';
url='<URL_USING_%s_MULTIPLE_TIME>';
// e.g. 'https://www.google.com/search?hl=en&q=%s&tbo=1&tbs=qdr:%s'
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