Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save david-shepard/3660a88002c7dc726936efe8195578bf to your computer and use it in GitHub Desktop.

Select an option

Save david-shepard/3660a88002c7dc726936efe8195578bf to your computer and use it in GitHub Desktop.
Split highlighted text into search terms and search for them in new tabs
const lines = window.getSelection().toString()
const games = lines.split('\n')
.map(q => q.trim())
.filter(Boolean)
games.forEach(q => window.open('https://store.steampowered.com/search?term=' + encodeURIComponent(q)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment