Created
November 9, 2020 02:47
-
-
Save ishideo/ecbc5918c78eb885df8cfc73d70da65e to your computer and use it in GitHub Desktop.
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: (() => { | |
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