Created
February 13, 2020 15:54
-
-
Save corbin-c/c087336adb45082a037f66212822a30f to your computer and use it in GitHub Desktop.
bookmarklet to open multiple links at once, separated by a pipe |
This file contains 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:(() => { | |
prompt().split("|").map(e => { | |
let a = document.createElement("a"); | |
a.href = e; | |
a.target = "_blank"; | |
a.click(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment