Skip to content

Instantly share code, notes, and snippets.

@ishideo
Created November 9, 2020 02:47
Show Gist options
  • Save ishideo/ecbc5918c78eb885df8cfc73d70da65e to your computer and use it in GitHub Desktop.
Save ishideo/ecbc5918c78eb885df8cfc73d70da65e to your computer and use it in GitHub Desktop.
javascript: (() => {
let text = prompt('Enter comma-separated domains', '');
let lines = text.split(',');
lines.forEach(_ => {
open('https://www.bing.com/search?q="' + _ + '"', '_blank');
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment