Skip to content

Instantly share code, notes, and snippets.

@ishideo
Last active April 15, 2019 01:55
Show Gist options
  • Save ishideo/4e313409902b9b22bc714084fa106d38 to your computer and use it in GitHub Desktop.
Save ishideo/4e313409902b9b22bc714084fa106d38 to your computer and use it in GitHub Desktop.
Open URLs Bookmarklet
javascript:((urls) => {
urls.map(v => 'http://' + v.replace('*.', '')).forEach(v => open(v, '_blank'));
})(
[
"www.google.co.jp",
"yahoo.co.jp",
"*.yahoo.co.jp",
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment