Skip to content

Instantly share code, notes, and snippets.

@milnak
Last active March 3, 2025 01:08
Show Gist options
  • Save milnak/1d27609d6aa679ca9626a08e0fc78844 to your computer and use it in GitHub Desktop.
Save milnak/1d27609d6aa679ca9626a08e0fc78844 to your computer and use it in GitHub Desktop.
Web Search Engine Queries

Web Search Engine Queries

For use with ueli.

File location on Windows: $env:AppData\ueli\ueli9.settings.json

Table created using:

$s="|Name|Prefix|Url|`n|----|------|---|`n"; (Get-Content "$env:AppData/ueli/ueli9.settings.json" | ConvertFrom-Json).'extension[CustomWebSearch].customSearchEngines' | Sort-Object name | ForEach-Object { $s+="|{0}|{1}|``{2}``|`n" -f $_.name,$_.prefix,$_.url }; $s
Name Prefix Url
AllMusic allmusic https://www.allmusic.com/search/all/{{query}}
Amazon amazon https://www.amazon.com/s?k={{query}}
Board Game Geek boardgamegeek https://boardgamegeek.com/geeksearch.php?action=search&q={{query}}&objecttype=boardgame
Dictionary dictionary https://www.dictionary.com/browse/{{query}}
DuckDuckGo duckduckgo https://duckduckgo.com/q={{query}}
eBay ebay https://www.ebay.com/sch/i.html?_nkw={{query}}
Genius genius https://genius.com/search?q={{query}}
GitHub github https://github.com/search?q={{query}}
GoodReads goodreads https://www.goodreads.com/search?q={{query}}
Google google https://www.google.com/search?q={{query}}
Internet Movie Database imdb https://www.imdb.com/find/?q={{query}}
Internet Pinball Database ipdb https://www.ipdb.org/search.pl?any={{query}}
Reverb reverb https://reverb.com/marketplace?query={{query}}
SetList.fm setlist https://www.setlist.fm/search?query={{query}}
Snopes snopes https://www.snopes.com/search/?q={{query}}
Wikipedia wikipedia https://en.wikipedia.org/w/index.php?search={{query}}
YouTube youtube https://www.youtube.com/results?search_query={{query}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment