summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorLukas van den Berk <38686669+lukasvdberk@users.noreply.github.com>2020-07-03 15:25:04 +0200
committerGitHub <noreply@github.com>2020-07-03 13:25:04 +0000
commit4829a76aae8fa6af8d3f814ff780dc6e792b84e5 (patch)
tree8d6f26653c52a3b3a5a187fea6d9ef5f02133ec1 /searx
parentc21220c6714475cdbf247eba4046ba735d9d402a (diff)
downloadsearxng-4829a76aae8fa6af8d3f814ff780dc6e792b84e5.tar.gz
searxng-4829a76aae8fa6af8d3f814ff780dc6e792b84e5.zip
Created new plugin type custom_results. Added new plugin bang_redirect (#2027)
* Made first attempt at the bangs redirects plugin. * It redirects. But in a messy way via javascript. * First version with custom plugin * Added a help page and a operator to see all the bangs available. * Changed to .format because of support * Changed to .format because of support * Removed : in params * Fixed path to json file and changed bang operator * Changed bang operator back to & * Made first attempt at the bangs redirects plugin. * It redirects. But in a messy way via javascript. * First version with custom plugin * Added a help page and a operator to see all the bangs available. * Changed to .format because of support * Changed to .format because of support * Removed : in params * Fixed path to json file and changed bang operator * Changed bang operator back to & * Refactored getting search query. Also changed bang operator to ! and is now working. * Removed prints * Removed temporary bangs_redirect.js file. Updated plugin documentation * Added unit test for the bangs plugin * Fixed a unit test and added 2 more for bangs plugin * Changed back to default settings.yml * Added myself to AUTHORS.rst * Refacored working of custom plugin. * Refactored _get_bangs_data from list to dict to improve search speed. * Decoupled bangs plugin from webserver with redirect_url * Refactored bangs unit tests * Fixed unit test bangs. Removed dubbel parsing in bangs.py * Removed a dumb print statement * Refactored bangs plugin to core engine. * Removed bangs plugin. * Refactored external bangs unit tests from plugin to core. * Removed custom_results/bangs documentation from plugins.rst * Added newline in settings.yml so the PR stays clean. * Changed searx/plugins/__init__.py back to the old file * Removed newline search.py * Refactored get_external_bang_operator from utils to external_bang.py * Removed unnecessary import form test_plugins.py * Removed _parseExternalBang and _isExternalBang from query.py * Removed get_external_bang_operator since it was not necessary * Simplified external_bang.py * Simplified external_bang.py * Moved external_bangs unit tests to test_webapp.py. Fixed return in search with external_bang * Refactored query parsing to unicode to support python2 * Refactored query parsing to unicode to support python2 * Refactored bangs plugin to core engine. * Refactored search parameter to search_query in external_bang.py
Diffstat (limited to 'searx')
-rw-r--r--searx/data/bangs.json75351
-rw-r--r--searx/external_bang.py43
-rw-r--r--searx/query.py11
-rw-r--r--searx/results.py1
-rw-r--r--searx/search.py18
-rwxr-xr-xsearx/webapp.py7
6 files changed, 75426 insertions, 5 deletions
diff --git a/searx/data/bangs.json b/searx/data/bangs.json
new file mode 100644
index 000000000..3c3bd1f23
--- /dev/null
+++ b/searx/data/bangs.json
@@ -0,0 +1,75351 @@
+{
+ "bang": [
+ {
+ "favicon": "https://500px.com/favicon.ico",
+ "name": "500px",
+ "triggers": [
+ "500",
+ "500px"
+ ],
+ "regions": {
+ "default": "https://500px.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://800notes.com/favicon.ico",
+ "name": "800notes",
+ "triggers": [
+ "800"
+ ],
+ "regions": {
+ "default": "https://800notes.com/Phone.aspx/1-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.amazon.com/favicon.ico",
+ "name": "Amazon",
+ "triggers": [
+ "a",
+ "amazon"
+ ],
+ "regions": {
+ "ca": "https://www.amazon.ca/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords={{{term}}}",
+ "default": "https://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords={{{term}}}",
+ "fr": "https://www.amazon.fr/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords={{{term}}}",
+ "uk": "https://www.amazon.co.uk/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.airbnb.com/favicon.ico",
+ "name": "Airbnb",
+ "triggers": [
+ "airbnb"
+ ],
+ "regions": {
+ "default": "https://www.airbnb.com/s/{{{term}}}/all"
+ }
+ },
+ {
+ "favicon": "https://algorithmia.com/assets/images/favicon.png",
+ "name": "Algorithmia",
+ "triggers": [
+ "algo",
+ "algorithmia"
+ ],
+ "regions": {
+ "default": "https://algorithmia.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://is.alicdn.com/simg/single/icon/favicon.ico",
+ "name": "Alibaba",
+ "triggers": [
+ "baba",
+ "alibaba"
+ ],
+ "regions": {
+ "default": "https://www.alibaba.com/trade/search?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.aliexpress.com/favicon.ico",
+ "name": "AliExpress",
+ "triggers": [
+ "aliexp",
+ "aliexpress",
+ "ali",
+ "ae"
+ ],
+ "regions": {
+ "default": "https://www.aliexpress.com/wholesale?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.aliexpress.com/img/logo/favicon.ico",
+ "name": "AliExpress Mobile",
+ "triggers": [
+ "alim"
+ ],
+ "regions": {
+ "default": "https://m.aliexpress.com/wholesale/{{{term}}}.html?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.allrecipes.com/favicon.ico",
+ "name": "Allrecipes",
+ "triggers": [
+ "ar",
+ "allrecipes",
+ "recipe",
+ "recipes"
+ ],
+ "regions": {
+ "default": "https://www.allrecipes.com/search/results/?qt=k&wt={{{term}}}&origin=Recipe%20Search%20Results"
+ }
+ },
+ {
+ "favicon": "https://alternativeto.net/favicon.ico",
+ "name": "alternativeTo",
+ "triggers": [
+ "alto",
+ "altto",
+ "ato",
+ "alt",
+ "alternativeto",
+ "alternative",
+ "a2"
+ ],
+ "regions": {
+ "default": "https://alternativeto.net/software/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.amc.com/favicon.ico",
+ "name": "AMC Networks",
+ "triggers": [
+ "amc"
+ ],
+ "regions": {
+ "default": "http://www.amc.com/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.angel.co/assets/icons/angellist-e1decb2fb69dc221e2dd4ad5f749797e28b3e9e92957e0f161b8e64d5a8a74c8.ico",
+ "name": "AngelList",
+ "triggers": [
+ "angellist"
+ ],
+ "regions": {
+ "default": "https://angel.co/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.answers.com/favicon.ico",
+ "name": "Answers",
+ "triggers": [
+ "answers"
+ ],
+ "regions": {
+ "default": "https://www.answers.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.blogsmithmedia.com/www.aol.com/assets-h7f98b93826355b88b8b2513a24166879/images/favicon/favicon-16x16.png?h=adfa9c2f0e5396a0b113422f4cf312aa",
+ "name": "Aol",
+ "triggers": [
+ "aol"
+ ],
+ "regions": {
+ "default": "https://search.aol.com/aol/search?s_chn=prt_bon&q={{{term}}}&s_it=comsearch"
+ }
+ },
+ {
+ "favicon": "https://www.apple.com/favicon.ico",
+ "name": "Apple",
+ "triggers": [
+ "apple"
+ ],
+ "regions": {
+ "default": "https://www.apple.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.apple.com/favicon.ico",
+ "name": "Apple Developer Forums",
+ "triggers": [
+ "adf",
+ "appledevforum"
+ ],
+ "regions": {
+ "default": "https://forums.developer.apple.com/search.jspa?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.apple.com/favicon.ico",
+ "name": "Apple Developer",
+ "triggers": [
+ "devapple",
+ "appledev",
+ "cocoa",
+ "adev",
+ "adc"
+ ],
+ "regions": {
+ "default": "https://developer.apple.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.apple.com/favicon.ico",
+ "name": "Apple Discussions",
+ "triggers": [
+ "applediscuss"
+ ],
+ "regions": {
+ "default": "https://discussions.apple.com/search.jspa?peopleEnabled=true&userID=&containerType=&container=&spotlight=true&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.apple.com/favicon.ico",
+ "name": "Apple Support",
+ "triggers": [
+ "applesupport"
+ ],
+ "regions": {
+ "default": "https://support.apple.com/kb/index?page=search&q={{{term}}}&product=&doctype=&currentPage=1&includeArchived=false&locale=en_US&src=support_site.kbase.search.searchresults"
+ }
+ },
+ {
+ "favicon": "https://archive.is/favicon.ico",
+ "name": "Archive.is",
+ "triggers": [
+ "archiveis",
+ "ais"
+ ],
+ "regions": {
+ "default": "https://archive.fo/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/askubuntu/img/favicon.ico",
+ "name": "Ask Ubuntu",
+ "triggers": [
+ "askubnt",
+ "asku",
+ "askubuntu"
+ ],
+ "regions": {
+ "default": "https://askubuntu.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.search.ask.com/favicon.ico",
+ "name": "Ask.com",
+ "triggers": [
+ "ask",
+ "jeeves"
+ ],
+ "regions": {
+ "default": "http://www.search.ask.com/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.autozone.com/favicon.ico",
+ "name": "AutoZone",
+ "triggers": [
+ "azo",
+ "autozone"
+ ],
+ "regions": {
+ "default": "https://www.autozone.com/searchresult?searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://aws.amazon.com/favicon.ico",
+ "name": "AWS Documentation",
+ "triggers": [
+ "aws"
+ ],
+ "regions": {
+ "default": "https://aws.amazon.com/search/?searchQuery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.azfonts.net/images/favicon.ico",
+ "name": "A-ZFonts",
+ "triggers": [
+ "azfonts"
+ ],
+ "regions": {
+ "default": "https://www.azfonts.net/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.azlyrics.com/favicon.ico",
+ "name": "AZLyrics",
+ "triggers": [
+ "azl",
+ "azlyrics"
+ ],
+ "regions": {
+ "default": "https://search.azlyrics.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.baidu.com/favicon.ico",
+ "name": "Baidu",
+ "triggers": [
+ "bd",
+ "baidu"
+ ],
+ "regions": {
+ "default": "https://www.baidu.com/s?wd={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.barnesandnoble.com/favicon.ico",
+ "name": "Barnes & Noble",
+ "triggers": [
+ "bn",
+ "b&n",
+ "barnesandnoble"
+ ],
+ "regions": {
+ "default": "https://www.barnesandnoble.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.crummy.com/favicon.ico",
+ "name": "Beautiful Soup",
+ "triggers": [
+ "bs4",
+ "beautifulsoup"
+ ],
+ "regions": {
+ "default": "https://www.crummy.com/software/BeautifulSoup/bs4/doc/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bedbathandbeyond.com/favicon.ico",
+ "name": "Bed Bath & Beyond",
+ "triggers": [
+ "bbby",
+ "bedbath",
+ "bedbathbeyond"
+ ],
+ "regions": {
+ "default": "https://www.bedbathandbeyond.com/store/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bell.ca/favicon.ico",
+ "name": "Bell Canada",
+ "triggers": [
+ "bell",
+ "bellcanada"
+ ],
+ "regions": {
+ "default": "https://www.bell.ca/Search?prov=ON&lang=en&q={{{term}}}&mktseg=SHP&ver=W&personal=False&business=False&support=False&pg=1&rscnt=10&facets=&supportLob=&isPageClick=False&referrerValue=shop"
+ }
+ },
+ {
+ "favicon": "https://assets.bbystatic.com/header-footer/images/favicon-32.png",
+ "name": "Best Buy",
+ "triggers": [
+ "bby",
+ "bestbuy",
+ "bbuy"
+ ],
+ "regions": {
+ "default": "https://www.bestbuy.com/site/searchpage.jsp?st={{{term}}}&_dyncharset=UTF-8&id=pcat17071&type=page&sc=Global&cp=1&nrp=&sp=&qp=&list=n&af=true&iht=y&usc=All+Categories&ks=960&keys=keys"
+ }
+ },
+ {
+ "favicon": "https://static.bbycastatic.ca/favicon.ico",
+ "name": "Best Buy Canada",
+ "triggers": [
+ "bestbuycanada"
+ ],
+ "regions": {
+ "default": "https://www.bestbuy.ca/en-CA/Search/SearchResults.aspx?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bbb.org/favicon.ico",
+ "name": "Better Business Bureau",
+ "triggers": [
+ "bbb",
+ "betterbusinessbureau"
+ ],
+ "regions": {
+ "default": "https://www.bbb.org/en/us/search?find_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bettycrocker.com/favicon.ico",
+ "name": "Betty Crocker",
+ "triggers": [
+ "bettycrocker",
+ "crocker"
+ ],
+ "regions": {
+ "default": "https://www.bettycrocker.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://biblehub.net/favicon.ico",
+ "name": "Bible Atlas",
+ "triggers": [
+ "bibleatlas",
+ "biblehub",
+ "bhb",
+ "bibhub"
+ ],
+ "regions": {
+ "default": "http://biblehub.net/searchatlas.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.biblestudytools.com/Content/Images/favicon.ico",
+ "name": "Bible Study Tools",
+ "triggers": [
+ "bibletools",
+ "biblestudytools"
+ ],
+ "regions": {
+ "default": "https://www.biblestudytools.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.biblestudytools.com/Content/Images/favicon.ico",
+ "name": "Bible Study Tools Encyclopedia",
+ "triggers": [
+ "biben"
+ ],
+ "regions": {
+ "default": "https://www.biblestudytools.com/search/?s=references&q={{{term}}}&rc=ENC&rc2="
+ }
+ },
+ {
+ "favicon": "https://www.biblestudytools.com/Content/Images/favicon.ico",
+ "name": "Bible Study Tools (New International Version)",
+ "triggers": [
+ "niv"
+ ],
+ "regions": {
+ "default": "https://www.biblestudytools.com/search/?q={{{term}}}&s=Bibles&t=niv"
+ }
+ },
+ {
+ "favicon": "https://www.bible.com/favicon.ico",
+ "name": "Bible.com",
+ "triggers": [
+ "verse"
+ ],
+ "regions": {
+ "default": "https://www.bible.com/search/bible?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bibleforums.org/favicon.ico",
+ "name": "BibleForums.Org",
+ "triggers": [
+ "sbg"
+ ],
+ "regions": {
+ "default": "http://bibleforums.org/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.biblegateway.com/favicon.ico",
+ "name": "BibleGateway",
+ "triggers": [
+ "bible",
+ "bg",
+ "bgw",
+ "biblegateway"
+ ],
+ "regions": {
+ "default": "https://www.biblegateway.com/quicksearch/?search={{{term}}}&searchtype=all"
+ }
+ },
+ {
+ "favicon": "https://www.bibleserver.com/favicon.ico",
+ "name": "BibleServer",
+ "triggers": [
+ "biblsrv",
+ "elb",
+ "bibleserver",
+ "lut"
+ ],
+ "regions": {
+ "default": "https://www.bibleserver.com/search/LUT/{{{term}}}/1"
+ }
+ },
+ {
+ "favicon": "https://www.bigfishgames.com/favicon.ico",
+ "name": "Big Fish Games",
+ "triggers": [
+ "bigfish",
+ "bigfishgames"
+ ],
+ "regions": {
+ "default": "https://www.bigfishgames.com/games/search/?type=pc&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing",
+ "triggers": [
+ "b",
+ "bing"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing GIFs",
+ "triggers": [
+ "binggif",
+ "binggifs"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/images/search?&q={{{term}}}&qft=+filterui:photo-animatedgif&FORM=R5IR25"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing Images",
+ "triggers": [
+ "bi",
+ "bim",
+ "bimages",
+ "bingimages"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/images/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing Maps",
+ "triggers": [
+ "bm",
+ "bingmaps",
+ "bmaps"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/maps/?q={{{term}}}&obox=1"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing News",
+ "triggers": [
+ "bnews",
+ "bingnews"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/news/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing Reverse Image Search",
+ "triggers": [
+ "bir",
+ "bri"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/images/search?q=imgurl:{{{term}}}&view=detailv2&iss=sbi&FORM=IRSBIQ#enterInsights"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing Videos",
+ "triggers": [
+ "bv",
+ "bingvideo",
+ "bingvideos",
+ "bvideo",
+ "bvideos"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/videos/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/favicon.ico",
+ "name": "Bing Weather",
+ "triggers": [
+ "bw",
+ "bingweather",
+ "bweather"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/search?q={{{term}}}&q=weather"
+ }
+ },
+ {
+ "favicon": "https://www.biography.com/.image/MTQ3NTAwNDUzNjQ5NzIwODE0/favicon-32x32.png",
+ "name": "Biography",
+ "triggers": [
+ "bio",
+ "biography"
+ ],
+ "regions": {
+ "default": "https://www.biography.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bitbucket.org/favicon.ico",
+ "name": "Bitbucket",
+ "triggers": [
+ "bb",
+ "bitbucket"
+ ],
+ "regions": {
+ "default": "https://bitbucket.org/repo/all/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bitbucket.org/favicon.ico",
+ "name": "Bitbucket User",
+ "triggers": [
+ "bbus"
+ ],
+ "regions": {
+ "default": "https://bitbucket.org/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://en.bitcoin.it/favicon.ico",
+ "name": "Bitcoin Wiki",
+ "triggers": [
+ "bcwiki",
+ "bitcoinwiki"
+ ],
+ "regions": {
+ "default": "https://en.bitcoin.it/w/index.php?title=Special%3ASearch&search={{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://bitly.com/favicon.ico",
+ "name": "Bitly",
+ "triggers": [
+ "bitly"
+ ],
+ "regions": {
+ "default": "https://bitly.com/?url={{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://btdb.to/favicon.ico",
+ "name": "BitTorrent Database",
+ "triggers": [
+ "btdb",
+ "bittorrentdatabase"
+ ],
+ "regions": {
+ "default": "https://btdb.to/q/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://bittrust.org/assets/img/favicon.ico",
+ "name": "BitTrust",
+ "triggers": [
+ "bittrust"
+ ],
+ "regions": {
+ "default": "http://bittrust.org/search#stq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.blender.org/favicon.ico",
+ "name": "Blender API",
+ "triggers": [
+ "blenderapi"
+ ],
+ "regions": {
+ "default": "https://docs.blender.org/api/current/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.blender.org/favicon.ico",
+ "name": "Blender Current API",
+ "triggers": [
+ "blendapi"
+ ],
+ "regions": {
+ "default": "https://docs.blender.org/api/blender_python_api_current/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.blender.org/favicon.ico",
+ "name": "Blender Documentation",
+ "triggers": [
+ "blender"
+ ],
+ "regions": {
+ "default": "https://docs.blender.org/manual/en/dev/search.html?check_keywords=yes&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bodyenfitshop.nl/favicon.ico",
+ "name": "Body & Fit",
+ "triggers": [
+ "bodyfit"
+ ],
+ "regions": {
+ "default": "https://www.bodyenfitshop.nl/#twn|?tn_q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.blockchain.com/favicon.ico",
+ "name": "Blockchain",
+ "triggers": [
+ "blockchain",
+ "bc",
+ "bitcoin",
+ "bchain",
+ "btcaddr",
+ "btc"
+ ],
+ "regions": {
+ "default": "https://blockchain.info/search?search={{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://assets.bwbx.io/s3/javelin/public/hub/images/favicon-black-12c7d129b0.png",
+ "name": "Bloomberg",
+ "triggers": [
+ "bloomberg",
+ "blmb",
+ "bloom"
+ ],
+ "regions": {
+ "default": "https://www.bloomberg.com/search?query={{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.blueletterbible.org/favicon.ico",
+ "name": "Blue Letter Bible",
+ "triggers": [
+ "blb",
+ "blueletter",
+ "blueletterbible"
+ ],
+ "regions": {
+ "default": "https://www.blueletterbible.org/search/search.cfm?Criteria={{{term}}}&t=KJV#s=s_primary_0_1/"
+ }
+ },
+ {
+ "favicon": "https://www.bogleheads.org/favicon.ico",
+ "name": "Bogleheads Wiki",
+ "triggers": [
+ "bogle"
+ ],
+ "regions": {
+ "default": "https://www.bogleheads.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.booking.com/favicon.ico",
+ "name": "Booking.com",
+ "triggers": [
+ "book",
+ "booking"
+ ],
+ "regions": {
+ "default": "https://www.booking.com/searchresults.html?si=ai&ss={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.boxofficemojo.com/favicon.ico",
+ "name": "Box Office Mojo",
+ "triggers": [
+ "bom",
+ "mojo"
+ ],
+ "regions": {
+ "default": "http://www.boxofficemojo.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.brainyquote.com/favicon.ico",
+ "name": "BrainyQuote",
+ "triggers": [
+ "brainyquote"
+ ],
+ "regions": {
+ "default": "https://www.brainyquote.com/search_results.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.breitbart.com/favicon.ico",
+ "name": "Breitbart",
+ "triggers": [
+ "bbart",
+ "breitbart"
+ ],
+ "regions": {
+ "default": "http://www.breitbart.com/search/?s={{{term}}}#gsc.tab=0&gsc.q={{{term}}}&gsc.page=1"
+ }
+ },
+ {
+ "favicon": "https://byu.edu/themes/home_d8/favicon.ico",
+ "name": "Brigham Young University",
+ "triggers": [
+ "byu",
+ "brighamyounguniversity"
+ ],
+ "regions": {
+ "default": "https://www.byu.edu/search/byu?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.byui.edu/prebuilt/stylenew/images/ico/favicon.ico",
+ "name": "BYU Idaho",
+ "triggers": [
+ "byui",
+ "byuidaho"
+ ],
+ "regions": {
+ "default": "http://search.byui.edu/search?q={{{term}}}&btnG=Search&proxystylesheet=byui_frontend&ulang=en&sort=date%3AD%3AL%3Ad1&oe=UTF-8&ie=UTF-8&ud=1&filter=0&site=default_collection"
+ }
+ },
+ {
+ "favicon": "https://bugzilla.mozilla.org/favicon.ico",
+ "name": "Bugzilla",
+ "triggers": [
+ "mbug",
+ "bmo",
+ "bugzilla"
+ ],
+ "regions": {
+ "default": "https://bugzilla.mozilla.org/show_bug.cgi?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.build.com/favicon.ico",
+ "name": "Build.com",
+ "triggers": [
+ "build"
+ ],
+ "regions": {
+ "default": "https://www.build.com/search?page=search:browse&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://builtwith.com/favicon.ico",
+ "name": "BuiltWith",
+ "triggers": [
+ "built",
+ "builtwith"
+ ],
+ "regions": {
+ "default": "https://builtwith.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bulbapedia.bulbagarden.net/favicon.ico",
+ "name": "Bulbapedia",
+ "triggers": [
+ "bpa",
+ "bulba",
+ "bpedia",
+ "bulbapedia"
+ ],
+ "regions": {
+ "default": "https://bulbapedia.bulbagarden.net/w/index.php?title=Special:Search&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.businessinsider.com/favicon.ico",
+ "name": "Business Insider",
+ "triggers": [
+ "bsi",
+ "businessinsider"
+ ],
+ "regions": {
+ "default": "https://www.businessinsider.com/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.buzzfeed.com/static-assets/img/favicon.5a0c77a8815cfcc67c710199054a55c6.ico",
+ "name": "BuzzFeed",
+ "triggers": [
+ "bf",
+ "buzzfeed"
+ ],
+ "regions": {
+ "default": "https://www.buzzfeed.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.c-span.org/favicon.ico",
+ "name": "C-SPAN",
+ "triggers": [
+ "cspan"
+ ],
+ "regions": {
+ "default": "https://www.c-span.org/search/?For={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.candlestickpatterns.org/wp-content/uploads/2017/01/cropped-192-192x192.png",
+ "name": "Candlestick Patterns",
+ "triggers": [
+ "candlestickpatterns"
+ ],
+ "regions": {
+ "default": "http://www.candlestickpatterns.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://canigivemydog.com/wp-content/uploads/2016/11/android-icon-192x192-2.png",
+ "name": "CanIGiveMyDog",
+ "triggers": [
+ "dog"
+ ],
+ "regions": {
+ "default": "http://canigivemydog.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.canistream.it/favicon.ico",
+ "name": "canistream.it",
+ "triggers": [
+ "canistreamtv"
+ ],
+ "regions": {
+ "default": "http://www.canistream.it/search/tv/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.canistream.it/favicon.ico",
+ "name": "canistream.it",
+ "triggers": [
+ "canistreammovie"
+ ],
+ "regions": {
+ "default": "http://www.canistream.it/search/movie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.canlii.ca/favicon.ico",
+ "name": "CanLII",
+ "triggers": [
+ "canlii"
+ ],
+ "regions": {
+ "default": "http://www.canlii.ca/en/search/search.do?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.usa.canon.com/NewWebThemeStatic/themes/NewWebTheme/images/favicon.ico",
+ "name": "Canon USA",
+ "triggers": [
+ "canon"
+ ],
+ "regions": {
+ "default": "https://www.usa.canon.com/internet/portal/us/home/searchresults?query={{{term}}}&searchTab=products"
+ }
+ },
+ {
+ "favicon": "http://www.canoo.net/favicon.ico",
+ "name": "canoonet",
+ "triggers": [
+ "canoo"
+ ],
+ "regions": {
+ "default": "http://www.canoo.net/services/Controller?input={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cantonese.sheik.co.uk/favicon.ico",
+ "name": "CantoDict",
+ "triggers": [
+ "cantodict"
+ ],
+ "regions": {
+ "default": "http://www.cantonese.sheik.co.uk/dictionary/search/?searchtype=1&text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cappusa.com/pub/media/favicon/stores/1/favicon.ico",
+ "name": "CAPP/USA",
+ "triggers": [
+ "capp"
+ ],
+ "regions": {
+ "default": "http://www.cappusa.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.captaincrawl.com/favicon.ico",
+ "name": "CaptainCrawl",
+ "triggers": [
+ "captaincrawl"
+ ],
+ "regions": {
+ "default": "http://www.captaincrawl.com/index.php?TIP={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://caranddriver.com/images/favicomatic/favicon-128.png",
+ "name": "Car and Driver",
+ "triggers": [
+ "caranddriver"
+ ],
+ "regions": {
+ "default": "http://caranddriver.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cardhoarder.com/favicon.ico",
+ "name": "Cardhoarder",
+ "triggers": [
+ "caho"
+ ],
+ "regions": {
+ "default": "https://www.cardhoarder.com/cards?data[search]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.careerbuilder.com/favicon.ico",
+ "name": "CareerBuilder",
+ "triggers": [
+ "careerbuilder"
+ ],
+ "regions": {
+ "default": "https://www.careerbuilder.com/Jobseeker/Jobs/JobResults.aspx?IPath=QH&ch=&rs=&s_rawwords={{{term}}}&s_jobtypes=ALL&s_freshness=30&s_education=DRNS&s_freeloc=&qsbButton=Find+Jobs+%3E%3E"
+ }
+ },
+ {
+ "favicon": "https://crates.io/favicon.ico",
+ "name": "Cargo",
+ "triggers": [
+ "cargo",
+ "crates"
+ ],
+ "regions": {
+ "default": "https://crates.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.carmagazine.co.uk/favicon.ico",
+ "name": "CarMagazine.co.uk",
+ "triggers": [
+ "car",
+ "carmag"
+ ],
+ "regions": {
+ "default": "http://www.carmagazine.co.uk/GLOBAL/Search-Results/?N=0&Ntx=mode%20matchallpartial&Ntk=site&Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.carminbook.com/wp-content/uploads/2012/12/favicon-carminbook.png",
+ "name": "Carminbook",
+ "triggers": [
+ "cbk"
+ ],
+ "regions": {
+ "default": "http://carminbook.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shop.zuckerzauber.at/WebRoot/Store2/Shops/es121414_Caros_Zuckerzauber/MediaGallery/favicon.ico",
+ "name": "Caros Zuckerzauber Shop",
+ "triggers": [
+ "zuckerzauber"
+ ],
+ "regions": {
+ "default": "http://shop.zuckerzauber.at/epages/es121414.sf/de_AT/?ObjectPath=/Shops/es121414_Caros_Zuckerzauber&ViewAction=DetailSearchProducts&Search=SF-AllStrings&SearchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www-cdn.karousell.com/favicons/favicon_32x32.png",
+ "name": "Carousell",
+ "triggers": [
+ "Carousell",
+ "carousell"
+ ],
+ "regions": {
+ "default": "https://carousell.com/search/products/?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.carrefour.fr/favicon.ico",
+ "name": "Carrefour",
+ "triggers": [
+ "cafr"
+ ],
+ "regions": {
+ "default": "http://www.carrefour.fr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.carrot2.org/favicon.ico",
+ "name": "Carrot2 Clustering Engine",
+ "triggers": [
+ "carrot"
+ ],
+ "regions": {
+ "default": "http://search.carrot2.org/stable/search?source=web&view=folders&skin=fancy-compact&query={{{term}}}&results=100&algorithm=lingo"
+ }
+ },
+ {
+ "favicon": "http://www.cartoonnetwork.com/favicon.ico",
+ "name": "Cartoon Network",
+ "triggers": [
+ "cartoonnetwork"
+ ],
+ "regions": {
+ "default": "http://www.cartoonnetwork.com/search/index.html?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.codewars.com/favicon.ico",
+ "name": "Carweez Search Engine",
+ "triggers": [
+ "cw"
+ ],
+ "regions": {
+ "default": "https://www.codewars.com/kata/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stadt-bremerhaven.de/wp-content/uploads/2014/12/logo-gro%C3%9F-549c81bbv1_site_icon-256x256.png",
+ "name": "Caschys Blog",
+ "triggers": [
+ "caschy"
+ ],
+ "regions": {
+ "default": "https://stadt-bremerhaven.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://casetext.com/favicon.ico",
+ "name": "casetext",
+ "triggers": [
+ "casetext"
+ ],
+ "regions": {
+ "default": "https://casetext.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cashoverflow.in/wp-content/themes/authority-pro/images/favicon.ico",
+ "name": "CashOverflow",
+ "triggers": [
+ "cashoverflow"
+ ],
+ "regions": {
+ "default": "http://www.cashoverflow.in/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//casinonews.today/favicons/favicon.ico",
+ "name": "Casino News Today",
+ "triggers": [
+ "cnt"
+ ],
+ "regions": {
+ "default": "http://casinonews.today/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.catalandictionary.org/favicon.ico",
+ "name": "CatalanDictionary.org",
+ "triggers": [
+ "catalandictionary"
+ ],
+ "regions": {
+ "default": "http://www.catalandictionary.org/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalog.gpo.gov/favicon.ico",
+ "name": "Catalog of Government Publications",
+ "triggers": [
+ "cgp"
+ ],
+ "regions": {
+ "default": "http://catalog.gpo.gov/F?func=find-b&find_code=WRD&request={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalogue.bnf.fr/images/icones/icone_CG.png",
+ "name": "Catalogue BNF",
+ "triggers": [
+ "bnf"
+ ],
+ "regions": {
+ "default": "http://catalogue.bnf.fr/rechercher.do?motRecherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.verbs.cat/templates/almeria/icons/terrassa.ico",
+ "name": "Català",
+ "triggers": [
+ "verbs i conjugació"
+ ],
+ "regions": {
+ "default": "http://www.verbs.cat/ca/conjugacio.html?infinitive=i%20conjugaci%C3%B3%20{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.catholic.com/sites/default/files/favicon.ico",
+ "name": "Catholic Answers",
+ "triggers": [
+ "catholic"
+ ],
+ "regions": {
+ "default": "http://www.catholic.com/search/content/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cisne.sim.ucm.es/favicon.ico",
+ "name": "Catálogo Cisne UCM",
+ "triggers": [
+ "cisne"
+ ],
+ "regions": {
+ "default": "http://cisne.sim.ucm.es/search*spi~S/X?SEARCH={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cisne.sim.ucm.es/favicon.ico",
+ "name": "Catálogo cisne UCM",
+ "triggers": [
+ "csn"
+ ],
+ "regions": {
+ "default": "http://cisne.sim.ucm.es/search*spi~S/X?SEARCH={{{term}}}&sort=D"
+ }
+ },
+ {
+ "favicon": "http://iacobus.usc.es/favicon.ico",
+ "name": "Catálogo Iacobus - Universidade de Santiago de Compostela",
+ "triggers": [
+ "iacobus"
+ ],
+ "regions": {
+ "default": "http://iacobus.usc.es/search*gag/?searchtype=Y&SORT=D&searcharg={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/www.cbservicedetersivi.it/wp-content/uploads/2017/02/cropped-icona.png?fit=192,192",
+ "name": "CB Service",
+ "triggers": [
+ "cbservice",
+ "cbservice_test"
+ ],
+ "regions": {
+ "default": "http://www.cbservicedetersivi.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cbc.ca/a/favicon.ico",
+ "name": "CBC News",
+ "triggers": [
+ "cbc"
+ ],
+ "regions": {
+ "default": "http://www.cbc.ca/gsa/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sportsline.com/icon-normal.png",
+ "name": "CBS Sports",
+ "triggers": [
+ "cbssports"
+ ],
+ "regions": {
+ "default": "http://www.sportsline.com/info/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cbsnews4.cbsistatic.com/fly/bundles/cbsnewscore/favicon.ico?v=9b28c6e13069f01c87600de0bfaad35f0d5d85ab",
+ "name": "CBSNews",
+ "triggers": [
+ "cbsnews"
+ ],
+ "regions": {
+ "default": "https://search.cbsnews.com/?source=cbs&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cbtnuggets.com/favicon.ico",
+ "name": "CBT Nuggets",
+ "triggers": [
+ "cbtnuggets"
+ ],
+ "regions": {
+ "default": "https://www.cbtnuggets.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cclonline.com/favicon/favicon-16x16.png?20170116",
+ "name": "CCL",
+ "triggers": [
+ "ccl"
+ ],
+ "regions": {
+ "default": "http://www.cclonline.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://so.cntv.cn/favicon.ico",
+ "name": "CCTV",
+ "triggers": [
+ "cctv"
+ ],
+ "regions": {
+ "default": "http://so.cntv.cn/language/english/?qtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cda.chronomania.net/favicon.ico",
+ "name": "CDA",
+ "triggers": [
+ "cda"
+ ],
+ "regions": {
+ "default": "http://cda.chronomania.net/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cdandlp.com/images/sites/cdandlp/cdandlp-ico.png",
+ "name": "cdandlp",
+ "triggers": [
+ "cdandlp"
+ ],
+ "regions": {
+ "default": "http://www.cdandlp.com/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cdc.gov/TemplatePackage/3.0/images/favicon.ico",
+ "name": "CDC",
+ "triggers": [
+ "cdc"
+ ],
+ "regions": {
+ "default": "http://www.cdc.gov/search.do?queryText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cdcovers.cc/favicon.ico",
+ "name": "Cdcovers.cc",
+ "triggers": [
+ "cdcovers"
+ ],
+ "regions": {
+ "default": "http://www.cdcovers.cc/search/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cdiscount.com/favicon.ico",
+ "name": "Cdiscount",
+ "triggers": [
+ "cdiscount"
+ ],
+ "regions": {
+ "default": "http://www.cdiscount.com/search/10/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://st.cdjapan.co.jp/assets/img/cdj_favicon.ico",
+ "name": "CDJapan",
+ "triggers": [
+ "cdj"
+ ],
+ "regions": {
+ "default": "http://www.cdjapan.co.jp/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdnjs.com/favicon.ico",
+ "name": "Cdn js",
+ "triggers": [
+ "cdn"
+ ],
+ "regions": {
+ "default": "http://www.cdnjs.com/#/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdnjs.com/favicon.ico",
+ "name": "cdnjs",
+ "triggers": [
+ "cdnjs"
+ ],
+ "regions": {
+ "default": "https://cdnjs.com/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cdnplanet.com/favicon.ico",
+ "name": "CDNPlanet CDN Finder Tool",
+ "triggers": [
+ "cdnfinder"
+ ],
+ "regions": {
+ "default": "http://www.cdnplanet.com/tools/cdnfinder/#host:{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d3ro3kdz1flj2n.cloudfront.net/shared-assets/favicon.ico?d5e76f1c",
+ "name": "CDON",
+ "triggers": [
+ "cdon",
+ "cdonse"
+ ],
+ "regions": {
+ "default": "https://cdon.se/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ro3kdz1flj2n.cloudfront.net/shared-assets/favicon.ico?d5e76f1c",
+ "name": "CDON.com (Denmark/Danmark)",
+ "triggers": [
+ "cdondk"
+ ],
+ "regions": {
+ "default": "https://cdon.dk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ro3kdz1flj2n.cloudfront.net/shared-assets/favicon.ico?d5e76f1c",
+ "name": "CDON.com (Europe)",
+ "triggers": [
+ "cdoneu"
+ ],
+ "regions": {
+ "default": "https://cdon.eu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ro3kdz1flj2n.cloudfront.net/shared-assets/favicon.ico?d5e76f1c",
+ "name": "CDON.com (Finland/Suomi)",
+ "triggers": [
+ "cdonfi"
+ ],
+ "regions": {
+ "default": "https://cdon.fi/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ro3kdz1flj2n.cloudfront.net/shared-assets/favicon.ico?d5e76f1c",
+ "name": "CDON.com (Norway/Norge)",
+ "triggers": [
+ "cdonno"
+ ],
+ "regions": {
+ "default": "https://cdon.no/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cdp.net/assets/branding/favicon-4f8444888253488fe1d2e5fc72d9880a2d176feca92bb86d2de3f15a696c4a78.ico",
+ "name": "CDP (Carbon Disclosure Project)",
+ "triggers": [
+ "cdp"
+ ],
+ "regions": {
+ "default": "https://www.cdp.net/en/responses?utf8=✓&queries[name]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdsportal.u-strasbg.fr/favicon.ico",
+ "name": "CDS Portal",
+ "triggers": [
+ "cds"
+ ],
+ "regions": {
+ "default": "http://cdsportal.u-strasbg.fr/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cduniverse.com/favicon.ico",
+ "name": "CDUniverse",
+ "triggers": [
+ "cdu"
+ ],
+ "regions": {
+ "default": "http://www.cduniverse.com/sresult.asp?HT_Search_Info={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cdw.com/favicon.ico",
+ "name": "CDW",
+ "triggers": [
+ "cdw"
+ ],
+ "regions": {
+ "default": "https://www.cdw.com/shop/search/result.aspx?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cdw.ca/favicon.ico",
+ "name": "CDW.ca",
+ "triggers": [
+ "cdwca"
+ ],
+ "regions": {
+ "default": "https://www.cdw.ca/shop/search/result.aspx?key={{{term}}}}&wclsscat=&b=&p=&ctlgfilter=&searchscope=all&sr=1"
+ }
+ },
+ {
+ "favicon": "http://cean.process-one.net/favicon.ico",
+ "name": "CEAN",
+ "triggers": [
+ "cean"
+ ],
+ "regions": {
+ "default": "http://cean.process-one.net/packages/index.yaws?action=filter&seek={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cekresi.com/images/favicon.ico",
+ "name": "Cekresi",
+ "triggers": [
+ "resi"
+ ],
+ "regions": {
+ "default": "http://cekresi.com/?noresi={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.celebritynewslive.com/assets/favicon.png",
+ "name": "Celebrity News Live!",
+ "triggers": [
+ "celebritynewslive"
+ ],
+ "regions": {
+ "default": "http://www.celebritynewslive.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cellartracker.com/favicon2.ico",
+ "name": "CellarTracker",
+ "triggers": [
+ "cellartracker"
+ ],
+ "regions": {
+ "default": "http://www.cellartracker.com/list.asp?fInStock=0&Table=List&iUserOverride=0&szSearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ceneje.si/favicon.ico",
+ "name": "Ceneje.si",
+ "triggers": [
+ "ceneje"
+ ],
+ "regions": {
+ "default": "https://www.ceneje.si/Iskanje/Izdelki?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ceneo.pl/Content/icons/favicon.ico?v=2",
+ "name": "Ceneo",
+ "triggers": [
+ "ceneo"
+ ],
+ "regions": {
+ "default": "http://www.ceneo.pl/;szukaj-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.censys.io/static/img/icon.png",
+ "name": "Censys",
+ "triggers": [
+ "censys"
+ ],
+ "regions": {
+ "default": "https://www.censys.io/ipv4?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.centredaily.com/static/theme/centredaily/base/ico/favicon.png",
+ "name": "Centre Daily Times",
+ "triggers": [
+ "centredailytimes"
+ ],
+ "regions": {
+ "default": "http://www.centredaily.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "Centre national de ressources textuelles et lexicales",
+ "triggers": [
+ "cnrtl",
+ "cntrl",
+ "cnrtld",
+ "tlfi"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cercavino.com/media/favicon-32x32.png",
+ "name": "CercaVino",
+ "triggers": [
+ "cercavino"
+ ],
+ "regions": {
+ "default": "http://cercavino.com/cerca?vino={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thesaurus.cerl.org/favicon.ico",
+ "name": "CERL Thesaurus",
+ "triggers": [
+ "cerl"
+ ],
+ "regions": {
+ "default": "http://thesaurus.cerl.org/cgi-bin/search.pl?type=l&type=i&type=p&type=c&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maps.cern.ch/mapsearch/mapsearch/Content/mapsearch/img/CERNLogobleu30.ico",
+ "name": "Cern map",
+ "triggers": [
+ "cernmap"
+ ],
+ "regions": {
+ "default": "https://maps.cern.ch/mapsearch/mapsearch.htm?n=[%27{{{term}}}%27]"
+ }
+ },
+ {
+ "favicon": "https://phonebook.cern.ch/favicon.ico",
+ "name": "CERN Phonebook",
+ "triggers": [
+ "cern"
+ ],
+ "regions": {
+ "default": "https://phonebook.cern.ch/phonebook/#search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cevizoyun.com/favicon.ico",
+ "name": "Ceviz Oyun",
+ "triggers": [
+ "oyun"
+ ],
+ "regions": {
+ "default": "http://www.cevizoyun.com/ara.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uk.webuy.com/favicon.ico",
+ "name": "CeX",
+ "triggers": [
+ "cex"
+ ],
+ "regions": {
+ "default": "https://uk.webuy.com/search/index.php?stext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.cgtrader.com/assets/favicons/favicon-f13a8151be474b2d10706dae022c0ed3a6ddaf5da7aec461f810050eb43f3e4e.ico",
+ "name": "cgtrader",
+ "triggers": [
+ "cgt"
+ ],
+ "regions": {
+ "default": "https://www.cgtrader.com/3d-models?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chacha.com/favicon.ico",
+ "name": "ChaCha",
+ "triggers": [
+ "chacha"
+ ],
+ "regions": {
+ "default": "http://www.chacha.com/askChaCha/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chainreactioncycles.com/favicon.ico",
+ "name": "Chain Reaction Cycles",
+ "triggers": [
+ "crc"
+ ],
+ "regions": {
+ "default": "http://www.chainreactioncycles.com/s?q={{{term}}}&sort=pricelow"
+ }
+ },
+ {
+ "favicon": "http://ready.chair6.net/favicon.ico",
+ "name": "chair6.net",
+ "triggers": [
+ "ipv6"
+ ],
+ "regions": {
+ "default": "http://ready.chair6.net/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://chairish-static-assets.freetls.fastly.net/platform-release-2018-07-02.3/www.chairish.com/favicon.ico",
+ "name": "Chairish",
+ "triggers": [
+ "chairish"
+ ],
+ "regions": {
+ "default": "https://www.chairish.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://chalmers.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "Chalmers Library",
+ "triggers": [
+ "chlib"
+ ],
+ "regions": {
+ "default": "http://chalmers.summon.serialssolutions.com/en/search?ho=t&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://champion.gg/favicon.ico",
+ "name": "Champion.gg",
+ "triggers": [
+ "championgg",
+ "chgg",
+ "cgg"
+ ],
+ "regions": {
+ "default": "http://champion.gg/champion/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//chan.sankakucomplex.com/favicon.png",
+ "name": "chan.SankakuComplex",
+ "triggers": [
+ "scc",
+ "chan"
+ ],
+ "regions": {
+ "default": "https://chan.sankakucomplex.com/?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://blog.napagoda.com/favicon.ico",
+ "name": "Chandana Napagoda's Blog",
+ "triggers": [
+ "https://cnapagoda.blogspot.com"
+ ],
+ "regions": {
+ "default": "https://cnapagoda.blogspot.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.channel4.com/favicon.ico",
+ "name": "Channel 4",
+ "triggers": [
+ "channel4",
+ "c4"
+ ],
+ "regions": {
+ "default": "http://www.channel4.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.channel5.com/wp-content/themes/channel5/images/favicon.gif?v1",
+ "name": "Channel 5",
+ "triggers": [
+ "channel5"
+ ],
+ "regions": {
+ "default": "http://www.channel5.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn1.crystalcommerce.com/themes/clients/channelfireball/assets/img/favicon.ico?1362125744",
+ "name": "Channel Fireball",
+ "triggers": [
+ "cfb"
+ ],
+ "regions": {
+ "default": "http://store.channelfireball.com/products/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.channel21.de/media/favicon/default/favicon_1.ico",
+ "name": "Channel21",
+ "triggers": [
+ "c21"
+ ],
+ "regions": {
+ "default": "https://www.channel21.de/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://postavy.akihabara.cz/design/icons/aki.ico",
+ "name": "Characters Akihabara",
+ "triggers": [
+ "charbara"
+ ],
+ "regions": {
+ "default": "http://postavy.akihabara.cz/vyhledavani/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://charcod.es/favicon.ico",
+ "name": "charcode.es",
+ "triggers": [
+ "char"
+ ],
+ "regions": {
+ "default": "http://charcod.es/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.charitynavigator.org/favicon.ico",
+ "name": "Charity Navigator",
+ "triggers": [
+ "charitynavigator",
+ "charity",
+ "cn"
+ ],
+ "regions": {
+ "default": "https://www.charitynavigator.org/index.cfm?bay=search.results&keyword_list={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.charlotteslaw.nl/wp-content/themes/metro/images/favicon.png",
+ "name": "Charlotte's Law & Fine Prints",
+ "triggers": [
+ "charlotteslaw",
+ "clfp"
+ ],
+ "regions": {
+ "default": "https://www.charlotteslaw.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/1533/3199/t/3/assets/favicon.png?4271125283036086155",
+ "name": "Chatters Salons",
+ "triggers": [
+ "chatters"
+ ],
+ "regions": {
+ "default": "https://chatters.ca/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cheapassgamer.com/customicon.ico",
+ "name": "Cheap Ass Gamer",
+ "triggers": [
+ "cheapassgamer"
+ ],
+ "regions": {
+ "default": "https://www.cheapassgamer.com/query.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cheaperthandirt.com/images//cheaperthandirt/en_us/favicon.ico",
+ "name": "Cheaper Than Dirt",
+ "triggers": [
+ "ctd"
+ ],
+ "regions": {
+ "default": "http://www.cheaperthandirt.com/SolrSearchResults.aspx?site=All+Products&num=15&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cheapshark.com/img/icons/round_114.png",
+ "name": "CheapShark",
+ "triggers": [
+ "cs"
+ ],
+ "regions": {
+ "default": "http://www.cheapshark.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.cheatengine.org/favicon.ico",
+ "name": "Cheat Engine Forums",
+ "triggers": [
+ "ce"
+ ],
+ "regions": {
+ "default": "http://forum.cheatengine.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cheatography.com/explore/search/favicon.png",
+ "name": "Cheatography",
+ "triggers": [
+ "cheatography"
+ ],
+ "regions": {
+ "default": "https://www.cheatography.com/explore/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://check-host.net/checkhost-favicon.png",
+ "name": "Check-host.net",
+ "triggers": [
+ "checkhost"
+ ],
+ "regions": {
+ "default": "https://check-host.net/ip-info?host={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.check24.de/favicon.ico",
+ "name": "Check24 Preisvergleich",
+ "triggers": [
+ "check24"
+ ],
+ "regions": {
+ "default": "https://preisvergleich.check24.de/suche.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cheese.com/media/img/favicon.svg",
+ "name": "Cheese",
+ "triggers": [
+ "cheese"
+ ],
+ "regions": {
+ "default": "http://www.cheese.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.cheezburger.com/favicon.ico",
+ "name": "Cheezburger",
+ "triggers": [
+ "cheezburger"
+ ],
+ "regions": {
+ "default": "http://search.cheezburger.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.chef.io/_static/favicon.ico",
+ "name": "Chef Docs",
+ "triggers": [
+ "chefdoc",
+ "chefio"
+ ],
+ "regions": {
+ "default": "https://docs.chef.io/search.html#stq={{{term}}}&stp=1"
+ }
+ },
+ {
+ "favicon": "https://supermarket.chef.io/assets/favicon-5f4080fbaa493463c163433fc3c7f57b891e43a00694557ac29c057cc7f62803.ico",
+ "name": "Chef Supermarket",
+ "triggers": [
+ "coobook",
+ "super"
+ ],
+ "regions": {
+ "default": "https://supermarket.chef.io/cookbooks?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.chefkoch-cdn.de/favicon.ico",
+ "name": "Chefkoch",
+ "triggers": [
+ "chefkoch",
+ "chef"
+ ],
+ "regions": {
+ "default": "https://www.chefkoch.de/rs/s0/{{{term}}}/Rezepte.html"
+ }
+ },
+ {
+ "favicon": "https://img.chefkoch-cdn.de/favicon.ico",
+ "name": "Chefkoch.de",
+ "triggers": [
+ "ck"
+ ],
+ "regions": {
+ "default": "https://www.chefkoch.de/rs/scr/s0/{{{term}}}/Rezepte.html"
+ }
+ },
+ {
+ "favicon": "https://img.chefkoch-cdn.de/favicon.ico",
+ "name": "Chefkoch.de Vegan",
+ "triggers": [
+ "chefkochvegan"
+ ],
+ "regions": {
+ "default": "https://www.chefkoch.de/rs/s0t57/{{{term}}}/Vegan-Rezepte.html"
+ }
+ },
+ {
+ "favicon": "http://www.chegg.com/favicon.ico",
+ "name": "Chegg",
+ "triggers": [
+ "chegg"
+ ],
+ "regions": {
+ "default": "http://www.chegg.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chemie.de/favicon.ico",
+ "name": "Chemie.de",
+ "triggers": [
+ "chemie.de"
+ ],
+ "regions": {
+ "default": "http://www.chemie.de/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/chemistry/img/favicon.ico?v=4143f7ac7c4d",
+ "name": "Chemistry StackExchange",
+ "triggers": [
+ "chemse"
+ ],
+ "regions": {
+ "default": "http://chemistry.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rsc-cdn.org/global/favicons/favicon.ico",
+ "name": "ChemSpider",
+ "triggers": [
+ "chemspider"
+ ],
+ "regions": {
+ "default": "https://www.chemspider.com/Search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://a.mtstatic.com/@public/production/site_4334/1478193457-favicon.ico",
+ "name": "Chemwiki",
+ "triggers": [
+ "chemwiki"
+ ],
+ "regions": {
+ "default": "http://chemwiki.ucdavis.edu/Special:Search?search={{{term}}}&qid=&fpid=1285&fpth="
+ }
+ },
+ {
+ "favicon": "http://chequeado.com/wp-content/uploads/2015/02/favicon.png",
+ "name": "Chequeado",
+ "triggers": [
+ "ch"
+ ],
+ "regions": {
+ "default": "http://chequeado.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chessgames.com/favicon.ico",
+ "name": "Chess Games",
+ "triggers": [
+ "chessgames"
+ ],
+ "regions": {
+ "default": "http://www.chessgames.com/perl/ezsearch.pl?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chewy.com/favicon.ico",
+ "name": "chewy.com",
+ "triggers": [
+ "chewy"
+ ],
+ "regions": {
+ "default": "http://www.chewy.com/s?dept=all&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chicagomanualofstyle.org/.resources/cmos/images/favicon.ico",
+ "name": "Chicago Manual of Style",
+ "triggers": [
+ "cms"
+ ],
+ "regions": {
+ "default": "http://www.chicagomanualofstyle.org/search.epl?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://chipublib.bibliocommons.com/images/IL-CPL/favicon.ico",
+ "name": "Chicago Public Library",
+ "triggers": [
+ "cpl"
+ ],
+ "regions": {
+ "default": "https://chipublib.bibliocommons.com/search?&t=title&search_category=title&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chichester.gov.uk/article/23353/chichesterdotnet/favicons/16x16.png",
+ "name": "Chichester District Council",
+ "triggers": [
+ "chichester"
+ ],
+ "regions": {
+ "default": "http://www.chichester.gov.uk/article/23353/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.call-cc.org/favicon.ico",
+ "name": "Chicken Scheme",
+ "triggers": [
+ "chicken"
+ ],
+ "regions": {
+ "default": "https://wiki.call-cc.org/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://api.call-cc.org/favicon.ico",
+ "name": "Chicken Scheme Chickadee",
+ "triggers": [
+ "csc"
+ ],
+ "regions": {
+ "default": "http://api.call-cc.org/cdoc?q={{{term}}}&query-regex=Regexp"
+ }
+ },
+ {
+ "favicon": "http://wiki.call-cc.org/favicon.ico",
+ "name": "Chicken Scheme Wiki",
+ "triggers": [
+ "csw"
+ ],
+ "regions": {
+ "default": "http://wiki.call-cc.org/search?text={{{term}}}&ident="
+ }
+ },
+ {
+ "favicon": "http://www.mademan.com/favicon.ico",
+ "name": "Chickipedia",
+ "triggers": [
+ "cp"
+ ],
+ "regions": {
+ "default": "http://www.mademan.com/chickipedia/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.chilango.com/favicon.ico",
+ "name": "Chilango",
+ "triggers": [
+ "chilango"
+ ],
+ "regions": {
+ "default": "http://www.chilango.com/buscar?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.chillingeffects.org/favicon.ico",
+ "name": "Chilling Effects",
+ "triggers": [
+ "chillingeffects"
+ ],
+ "regions": {
+ "default": "https://www.chillingeffects.org/notices/search?&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.chimerarevo.com/wp-content/themes/edge-1.1.3/favicon.png",
+ "name": "Chimera Revo",
+ "triggers": [
+ "chimerarevo"
+ ],
+ "regions": {
+ "default": "http://www.chimerarevo.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ctext.org/favicon.ico",
+ "name": "Chinese Text Project Dictionary",
+ "triggers": [
+ "ctextd"
+ ],
+ "regions": {
+ "default": "http://ctext.org/dictionary.pl?if=en&char={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdict.net/favicon.ico",
+ "name": "Chinese-English Dictionary/Calculator",
+ "triggers": [
+ "cdict"
+ ],
+ "regions": {
+ "default": "https://cdict.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://suche.chip.de/fea/1.0.1/favicon/favicon.ico",
+ "name": "CHIP Online",
+ "triggers": [
+ "chip"
+ ],
+ "regions": {
+ "default": "http://suche.chip.de/?q={{{term}}}&it=1&submit.x=0&submit.y=0"
+ }
+ },
+ {
+ "favicon": "https://chocolatey.org/favicon.ico",
+ "name": "Chocolatey",
+ "triggers": [
+ "choco",
+ "cinst",
+ "chocolatey"
+ ],
+ "regions": {
+ "default": "https://chocolatey.org/packages?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.choice.com.au/AssetsMVC/imgs/favicon/favicon.ico",
+ "name": "Choice",
+ "triggers": [
+ "choice"
+ ],
+ "regions": {
+ "default": "https://www.choice.com.au/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chooseyourevent.co.uk/favicon.ico",
+ "name": "Chooseyourevent.co.uk",
+ "triggers": [
+ "cye"
+ ],
+ "regions": {
+ "default": "http://www.chooseyourevent.co.uk/keywordsearch.asp?searchterms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www1.cpdl.org/favicon.ico",
+ "name": "Choral Public Domain Library",
+ "triggers": [
+ "cpdl"
+ ],
+ "regions": {
+ "default": "http://www1.cpdl.org/wiki/index.php/Special:Search?search={{{term}}}&fulltext=Keyword+search"
+ }
+ },
+ {
+ "favicon": "https://chordify.net/img/icons/android-icon-192x192.png",
+ "name": "Chordify",
+ "triggers": [
+ "chordify"
+ ],
+ "regions": {
+ "default": "https://chordify.net/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://choualbox.com/Themes/fevrier2017/img/appicone-144144.png?v=1480",
+ "name": "Choualbox",
+ "triggers": [
+ "cbx"
+ ],
+ "regions": {
+ "default": "http://choualbox.com/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://choualbox.com/Themes/fevrier2017/img/appicone-144144.png?v=1480",
+ "name": "Choualbox",
+ "triggers": [
+ "choual",
+ "choualbox"
+ ],
+ "regions": {
+ "default": "https://choualbox.com/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.chowstatic.com/s/touch-icon-180x180-3250f549455fa59a6eab85c68dca414b.png",
+ "name": "Chowhound",
+ "triggers": [
+ "chow"
+ ],
+ "regions": {
+ "default": "http://www.chow.com/search?type=Topic&from_date=1+year+ago&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.christcenteredgamer.com/templates/gamers/favicon.ico",
+ "name": "Christ Centered Gamer Forums",
+ "triggers": [
+ "ccgrforum"
+ ],
+ "regions": {
+ "default": "https://www.christcenteredgamer.com/phpBB3/search.php?keywords={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "https://www.christcenteredgamer.com/templates/gamers/favicon.ico",
+ "name": "Christ Centered Gamer Reviews",
+ "triggers": [
+ "ccgrreviews"
+ ],
+ "regions": {
+ "default": "https://www.christcenteredgamer.com/index.php/component/search/?searchword={{{term}}}&ordering=newest&searchphrase=all&areas[0]=blogs"
+ }
+ },
+ {
+ "favicon": "http://www.ccel.org/favicon.ico",
+ "name": "Christian Classics Ethereal Library",
+ "triggers": [
+ "ccel"
+ ],
+ "regions": {
+ "default": "http://www.ccel.org/search/fulltext/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://g.christianbook.com/ns/img/favicon/favicon.png",
+ "name": "Christianbook.com",
+ "triggers": [
+ "cbd"
+ ],
+ "regions": {
+ "default": "https://www.christianbook.com/Christian/Books/easy_find?Ntt={{{term}}}&N=0&Ntk=keywords&action=Search&Ne=0"
+ }
+ },
+ {
+ "favicon": "https://bugs.chromium.org/static/images/monorail.ico",
+ "name": "Chromium bugs",
+ "triggers": [
+ "crbug"
+ ],
+ "regions": {
+ "default": "https://bugs.chromium.org/p/chromium/issues/list?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn2.chrono24.com/images/default/favicon/favicon-16x16.png",
+ "name": "chrono24",
+ "triggers": [
+ "c24",
+ "C24"
+ ],
+ "regions": {
+ "default": "http://www.chrono24.com/search/index.htm?watchTypes=&query={{{term}}}&dosearch=true"
+ }
+ },
+ {
+ "favicon": "https://www.chronopost.fr/sites/all/themes/chronopost/favicon.ico",
+ "name": "Chronopost France",
+ "triggers": [
+ "chronopost"
+ ],
+ "regions": {
+ "default": "http://www.chronopost.fr/fr/chrono_suivi_search?lang=fr&listeNumerosLT={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slot1-images.wikia.nocookie.net/__cb1530526546/common/skins/common/images/favicon.ico",
+ "name": "Chuck Wiki",
+ "triggers": [
+ "chuck"
+ ],
+ "regions": {
+ "default": "http://chuck-nbc.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://churchhistorycatalog.lds.org/favicon.ico",
+ "name": "Church History Library",
+ "triggers": [
+ "chl"
+ ],
+ "regions": {
+ "default": "http://churchhistorycatalog.lds.org/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=chl&indx=1&dum=true&srt=rank&vid=CHL_PUBLIC&frbg=&tb=t&vl%28freeText0%29={{{term}}}&scp.scps=scope%3A%28PEAD%29%2Cscope%3A%28PARCHIVES%29%2Cscope%3A%28PLIBRARY%29%2Cscope%3A%28ALEPH-PCPX%29%2Cscope%3A%28ALEPH-JHX%29%2Cscope%3A%28ALEPH-CAX%29&vl%2830857204UI1%29=all_items&vl%281UIStartWith0%29=contains&vl%2830857210UI0%29=any&vl%2830857210UI0%29=title&vl%2830857210UI0%29=any"
+ }
+ },
+ {
+ "favicon": "http://www.churchofsatan.com/favicon.ico",
+ "name": "Church of Satan Official Site",
+ "triggers": [
+ "churchofsatan"
+ ],
+ "regions": {
+ "default": "http://www.churchofsatan.com/search-results.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cia.gov/favicon.ico",
+ "name": "CIA World Factbook",
+ "triggers": [
+ "cia"
+ ],
+ "regions": {
+ "default": "https://www.cia.gov/search?q={{{term}}}&site=WORLD_FACTBOOK&btnG=Search&x=0&y=0&output=xml_no_dtd&client=CIA&myAction=%2Fsearch&proxystylesheet=CIA&submitMethod=get&sort=date%3AD%3AL%3Ad1&oe=UTF-8&ie=UTF-8&ud=1&exclude_apps=1"
+ }
+ },
+ {
+ "favicon": "http://www.ciao.de/favicon.ico",
+ "name": "Ciao.de",
+ "triggers": [
+ "ciao"
+ ],
+ "regions": {
+ "default": "http://www.ciao.de/sr/q-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ciberduvidas.iscte-iul.pt/assets/img/iscte.ico",
+ "name": "Ciberdúvidas da Língua Portuguesa",
+ "triggers": [
+ "ciberduvidas"
+ ],
+ "regions": {
+ "default": "https://ciberduvidas.iscte-iul.pt/pesquisa?termo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cifraclub.com.br/favicon.ico?bpc=2",
+ "name": "Cifra Club",
+ "triggers": [
+ "cifraclub"
+ ],
+ "regions": {
+ "default": "http://www.cifraclub.com.br/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ciied.xyz/favicon.ico",
+ "name": "CIIED",
+ "triggers": [
+ "ciied"
+ ],
+ "regions": {
+ "default": "http://ciied.xyz/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.citeulike.org/favicon.ico",
+ "name": "CikeULike",
+ "triggers": [
+ "citeul"
+ ],
+ "regions": {
+ "default": "http://www.citeulike.org/search/all?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "CineBlog01",
+ "triggers": [
+ "cb01"
+ ],
+ "regions": {
+ "default": "http://www.cineblog01.net/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://cineblog01hd.net/favicon.ico",
+ "name": "CineBlog01HD",
+ "triggers": [
+ "cb01hd"
+ ],
+ "regions": {
+ "default": "http://cineblog01hd.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.squarespace.com/static/5230e379e4b0a0df42c0c418/t/55034ae0e4b0902d18156d71/favicon.ico",
+ "name": "Cinema In Focus",
+ "triggers": [
+ "cif"
+ ],
+ "regions": {
+ "default": "http://www.cinemainfocus.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cinemaclock.com/favicon.ico?v=Michelle",
+ "name": "cinemaclock",
+ "triggers": [
+ "cck"
+ ],
+ "regions": {
+ "default": "http://cinemaclock.com/search?r=bri&m=Vancouver&key={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.cinemagay.it/wp-content/themes/cinemagay/assets/images/icons/favicon.png",
+ "name": "CinemaGay",
+ "triggers": [
+ "cinemagay"
+ ],
+ "regions": {
+ "default": "http://www.cinemagay.it/ricerca.asp?tipo=0&campo={{{term}}}&Submit=Cerca"
+ }
+ },
+ {
+ "favicon": "http://cinemassacre.com/favicon.ico",
+ "name": "Cinemassacre",
+ "triggers": [
+ "cine"
+ ],
+ "regions": {
+ "default": "http://cinemassacre.com/?s={{{term}}}&search.x=0&search.y=0"
+ }
+ },
+ {
+ "favicon": "https://mediafiles.cineplex.com/Cineplex2013/touch/apple-touch-icon.png",
+ "name": "Cineplex",
+ "triggers": [
+ "cnplx"
+ ],
+ "regions": {
+ "default": "http://www.cineplex.com/search-2015?search-query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cineycortosgay.com/favicon.ico",
+ "name": "CineyCortosGay.com",
+ "triggers": [
+ "cineycortosgay"
+ ],
+ "regions": {
+ "default": "http://www.cineycortosgay.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.cisco.com/favicon.ico",
+ "name": "cisco.com",
+ "triggers": [
+ "cisco"
+ ],
+ "regions": {
+ "default": "https://search.cisco.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://citeseer.ist.psu.edu/favicon.ico",
+ "name": "CiteSeer",
+ "triggers": [
+ "citeseer"
+ ],
+ "regions": {
+ "default": "http://citeseer.ist.psu.edu/search?q={{{term}}}&submit=Search&sort=rlv&t=doc"
+ }
+ },
+ {
+ "favicon": "http://citizendium.org/images/favicon.ico",
+ "name": "Citizendium",
+ "triggers": [
+ "citi"
+ ],
+ "regions": {
+ "default": "http://citizendium.org/wiki?search={{{term}}}&title=Special%3ASearch&go=Go+To+Page"
+ }
+ },
+ {
+ "favicon": "http://citroenc3owners.com/favicon.ico",
+ "name": "citroenC3owners.com",
+ "triggers": [
+ "citroenc3owners"
+ ],
+ "regions": {
+ "default": "http://citroenc3owners.com/search.php?keywords={{{term}}}&terms=all&author=&fid[]=5&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://vancouver.ca/images/cov/ui/favicon.ico",
+ "name": "City of Vancouver",
+ "triggers": [
+ "vancouver"
+ ],
+ "regions": {
+ "default": "http://vancouver.ca/search.aspx?q={{{term}}}&searchEngine=GSA"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/civilization/images/6/64/Favicon.ico/revision/latest?cb=20140905212120",
+ "name": "Civilization Wikia",
+ "triggers": [
+ "civilization",
+ "civ"
+ ],
+ "regions": {
+ "default": "http://civilization.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.cjshearthandhome.com/index.php?route=product/search&search=becggfcggbkk",
+ "name": "CJ's Hearth & Home",
+ "triggers": [
+ "cjshh"
+ ],
+ "regions": {
+ "default": "https://www.cjshearthandhome.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//img2.ck12.org/media/build-20180621160328/images/favicon.ico",
+ "name": "cK-12.org",
+ "triggers": [
+ "ck12"
+ ],
+ "regions": {
+ "default": "https://www.ck12.org/flexbook/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://traducciones-videojuegos.clandlan.net/favicon.ico",
+ "name": "Clan Dlan - Traducciones",
+ "triggers": [
+ "dlantrad"
+ ],
+ "regions": {
+ "default": "http://traducciones-videojuegos.clandlan.net/index.php?page=academia%2Fsearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.clarks.co.uk/_ui/desktop/theme-blue/images/favicon.ico",
+ "name": "Clarks",
+ "triggers": [
+ "clarks"
+ ],
+ "regions": {
+ "default": "https://www.clarks.co.uk/search/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://buscador.clarin.com/favicon-16x16.png",
+ "name": "Clarín",
+ "triggers": [
+ "clarin"
+ ],
+ "regions": {
+ "default": "http://buscador.clarin.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.clasohlson.com/web/images/favicon.ico",
+ "name": "Clas Ohlson",
+ "triggers": [
+ "clas"
+ ],
+ "regions": {
+ "default": "http://www.clasohlson.com/se/view/content/search?N=0&Ntk=All&Ntt={{{term}}}&Nty=1&&Ntx=mode+matchpartial&Dx=mode+matchpartial&showTabs=true"
+ }
+ },
+ {
+ "favicon": "https://images.clasohlson.com/web/images/favicon.ico",
+ "name": "Clas Ohlson Norge",
+ "triggers": [
+ "clasno"
+ ],
+ "regions": {
+ "default": "http://www.clasohlson.com/no/view/content/search?N=0&Ntk=All&Ntt={{{term}}}&Nty=1&D=gdbeabfb&Ntx=mode+matchpartial&Dx=mode+matchpartial&showTabs=true"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/clashofclans/images/6/64/Favicon.ico/revision/latest?cb=20171009045624",
+ "name": "Clash of Clans",
+ "triggers": [
+ "clashofclans"
+ ],
+ "regions": {
+ "default": "http://clashofclans.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1#"
+ }
+ },
+ {
+ "favicon": "https://www.class-central.com/favicon.ico",
+ "name": "Class Central",
+ "triggers": [
+ "cctrl"
+ ],
+ "regions": {
+ "default": "https://www.class-central.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.class-central.com/favicon.ico",
+ "name": "Class-Central",
+ "triggers": [
+ "moocs"
+ ],
+ "regions": {
+ "default": "https://www.class-central.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://web2.wipo.int/favicon.ico",
+ "name": "Classification Internationale des Brevets (2016)",
+ "triggers": [
+ "cib"
+ ],
+ "regions": {
+ "default": "http://web2.wipo.int/classifications/ipc/ipcpub/#lang=fr&menulang=FR&refresh=page&fipcpc=yes&indexes=yes&notion=scheme&version=20160101&symbol={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://irp-cdn.multiscreensite.com/ed061800/site_favicon_16_1527230298679.ico",
+ "name": "Clean Up the World",
+ "triggers": [
+ "cleanuptheworld"
+ ],
+ "regions": {
+ "default": "http://www.cleanuptheworld.org/en/search.html?kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cleanfreak.com/favicon.ico",
+ "name": "CleanFreak",
+ "triggers": [
+ "cleanfreak"
+ ],
+ "regions": {
+ "default": "https://www.cleanfreak.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.clearly.ca/favicon.ico",
+ "name": "Clearly.ca",
+ "triggers": [
+ "clearly"
+ ],
+ "regions": {
+ "default": "https://www.clearly.ca/eyewear/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.clearwebstats.com/favicon.ico",
+ "name": "ClearWebStats",
+ "triggers": [
+ "clearweb"
+ ],
+ "regions": {
+ "default": "http://www.clearwebstats.com/process.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.clicrbs.com.br/favicon.ico",
+ "name": "ClicRBS",
+ "triggers": [
+ "clicrbs"
+ ],
+ "regions": {
+ "default": "http://www.clicrbs.com.br/busca/rs/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://music.cliggo.com/img/favicon.ico",
+ "name": "Cliggo",
+ "triggers": [
+ "cliggo"
+ ],
+ "regions": {
+ "default": "https://www.music.cliggo.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cliki.net/favicon.ico",
+ "name": "Cliki",
+ "triggers": [
+ "cliki"
+ ],
+ "regions": {
+ "default": "http://cliki.net/site/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://climatecounts.org/favicon.ico",
+ "name": "Climate Counts",
+ "triggers": [
+ "climatecounts"
+ ],
+ "regions": {
+ "default": "http://climatecounts.org/searchresults.php?p=term&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.climatempo.com.br/favicon.png",
+ "name": "Climatempo",
+ "triggers": [
+ "climatempo"
+ ],
+ "regions": {
+ "default": "http://www.climatempo.com.br/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://clinicaltrials.gov/ct2/html/images/favicon.ico",
+ "name": "ClinicalTrials.gov",
+ "triggers": [
+ "ctgov"
+ ],
+ "regions": {
+ "default": "https://clinicaltrials.gov/ct2/results?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://clio.columbia.edu/favicon.ico",
+ "name": "CLIO: Columbia University Library Catalog",
+ "triggers": [
+ "clio"
+ ],
+ "regions": {
+ "default": "https://clio.columbia.edu/catalog?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.clipconverter.cc/images/favicon.ico",
+ "name": "ClipConverter.cc",
+ "triggers": [
+ "convert"
+ ],
+ "regions": {
+ "default": "http://www.clipconverter.cc/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.clipstijl.nl/favicon.ico",
+ "name": "Clipstijl",
+ "triggers": [
+ "clipstijl"
+ ],
+ "regions": {
+ "default": "http://www.clipstijl.nl/zoeken.php?zoek={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.clker.com/favicon.ico",
+ "name": "Clker",
+ "triggers": [
+ "clker"
+ ],
+ "regions": {
+ "default": "http://www.clker.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://clockworks-clockworksynergy.netdna-ssl.com/wp-content/uploads/black-logo-only-150-150.png",
+ "name": "Clockwork Synergy",
+ "triggers": [
+ "clockworksynergy"
+ ],
+ "regions": {
+ "default": "http://www.clockworksynergy.com/?s={{{term}}} &post_type=product"
+ }
+ },
+ {
+ "favicon": "https://clojars.org/favicon.ico?v=47K2kprJd7",
+ "name": "Clojars",
+ "triggers": [
+ "clojars"
+ ],
+ "regions": {
+ "default": "https://clojars.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://clojuredocs.org/favicon.ico",
+ "name": "Clojure Docs",
+ "triggers": [
+ "clojuredocs",
+ "clojure"
+ ],
+ "regions": {
+ "default": "http://clojuredocs.org/search?x=0&y=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://clojuredocs.org/favicon.ico",
+ "name": "ClojureDocs",
+ "triggers": [
+ "clj"
+ ],
+ "regions": {
+ "default": "https://clojuredocs.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cloogle.org/favicon.ico",
+ "name": "Cloogle",
+ "triggers": [
+ "cloogle"
+ ],
+ "regions": {
+ "default": "http://cloogle.org/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cloudron.io/img/favicon.png",
+ "name": "Cloudron",
+ "triggers": [
+ "cloudron"
+ ],
+ "regions": {
+ "default": "https://cloudron.io/appstore.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cs-60f6.kxcdn.com/assets/favicons/48by48-cc843400f0323d523efc163fc70ef255.ico",
+ "name": "Cloudsdale",
+ "triggers": [
+ "cloudsdale"
+ ],
+ "regions": {
+ "default": "https://www.cloudsdale.org/explore/clouds/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.clubic.com/favicon.ico",
+ "name": "Clubic",
+ "triggers": [
+ "clubic"
+ ],
+ "regions": {
+ "default": "http://www.clubic.com/r/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://clusty.com/favicon.ico",
+ "name": "Clusty",
+ "triggers": [
+ "clusty"
+ ],
+ "regions": {
+ "default": "http://clusty.com/search?input-form=clusty-simple&v%3Asources=webplus&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cmacapps.com/wp-content/uploads/fbrfg/favicon.ico?v=zXrxX9bLX5",
+ "name": "cmacapps",
+ "triggers": [
+ "cmac"
+ ],
+ "regions": {
+ "default": "https://cmacapps.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cmake.org/wp-content/uploads/2014/06/favicon.png",
+ "name": "CMake 3.0 Documentation",
+ "triggers": [
+ "cmake30"
+ ],
+ "regions": {
+ "default": "https://www.cmake.org/cmake/help/v3.0/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cmake.org/wp-content/uploads/2014/06/favicon.png",
+ "name": "CMake documentation",
+ "triggers": [
+ "cmake"
+ ],
+ "regions": {
+ "default": "https://cmake.org/cmake/help/latest/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://library.cmi.ac.in/opac-tmpl/bootstrap/images/favicon.ico",
+ "name": "CMI Library",
+ "triggers": [
+ "cmi"
+ ],
+ "regions": {
+ "default": "http://library.cmi.ac.in/cgi-bin/koha/opac-search.pl?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cmslxr.fnal.gov/favicon.ico",
+ "name": "CMSSW Software Cross-Reference",
+ "triggers": [
+ "cmssw"
+ ],
+ "regions": {
+ "default": "http://cmslxr.fnal.gov/search?_filestring=&_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.cnbc.com/favicon.ico",
+ "name": "CNBC",
+ "triggers": [
+ "cnbc"
+ ],
+ "regions": {
+ "default": "http://search.cnbc.com/main.do?target=all&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cnet4.cbsistatic.com/fly/bundles/cnetcss/images/core/logo.png",
+ "name": "CNET",
+ "triggers": [
+ "cnet"
+ ],
+ "regions": {
+ "default": "http://www.cnet.com/1770-5_1-0.html?query={{{term}}}&tag=srch&target=nw"
+ }
+ },
+ {
+ "favicon": "https://cnet4.cbsistatic.com/fly/bundles/cnetcss/images/core/logo.png",
+ "name": "CNET",
+ "triggers": [
+ "c"
+ ],
+ "regions": {
+ "default": "http://www.cnet.com/1770-5_1-0.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://a4.fdlstatic.com/460/bundles/downloadcore/images/favicon-16.png",
+ "name": "Cnet Downloads",
+ "triggers": [
+ "downloadcnet"
+ ],
+ "regions": {
+ "default": "http://download.cnet.com/1770-20_4-0.html?query={{{term}}}&platformSelect=&tag=srch&searchtype=downloads&filterName=platform%3DWindows%2CMobile%2CMac%2CWebware&filter=platform%3DWindows%2CMobile%2CMac%2CWebware"
+ }
+ },
+ {
+ "favicon": "https://cnet4.cbsistatic.com/fly/bundles/cnetcss/images/core/logo.png",
+ "name": "CNET en español",
+ "triggers": [
+ "cnete"
+ ],
+ "regions": {
+ "default": "http://www.cnet.com/es/busqueda/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cnet4.cbsistatic.com/fly/bundles/cnetcss/images/core/logo.png",
+ "name": "CNET UK",
+ "triggers": [
+ "cnetuk"
+ ],
+ "regions": {
+ "default": "http://www.cnet.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cnn.com/favicon.ico",
+ "name": "CNN",
+ "triggers": [
+ "cnn"
+ ],
+ "regions": {
+ "default": "https://www.cnn.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s2.wp.com/wp-content/themes/vip/cnnespanol/static/images/favicon/favicon-16x16.png",
+ "name": "CNN en español",
+ "triggers": [
+ "cnne"
+ ],
+ "regions": {
+ "default": "https://cnnespanol.cnn.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "CNRTL",
+ "triggers": [
+ "cnrtla"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/antonymie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "cnrtl concordance",
+ "triggers": [
+ "cnrtlc"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/concordance/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "cnrtl morphologie",
+ "triggers": [
+ "cnrtlm"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/morphologie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "cnrtl proxemie",
+ "triggers": [
+ "cnrtlp"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/proxemie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "cnrtl synonymie",
+ "triggers": [
+ "cnrtls"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/synonymie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cnrtl.fr/favicon.ico",
+ "name": "cnrtl étymologie",
+ "triggers": [
+ "cnrtle"
+ ],
+ "regions": {
+ "default": "http://www.cnrtl.fr/etymologie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://coalgirls.wakku.to/favicon.ico",
+ "name": "Coalgirls",
+ "triggers": [
+ "coalgirls"
+ ],
+ "regions": {
+ "default": "http://coalgirls.wakku.to/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.coastercrazy.com/favicon.ico",
+ "name": "CoasterCrazy",
+ "triggers": [
+ "coastercrazy"
+ ],
+ "regions": {
+ "default": "http://www.coastercrazy.com/forums/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cocklestorm.com/skin/frontend/ultimo/cocklestorm/favicon.ico",
+ "name": "Cocklestorm Fencing Ltd",
+ "triggers": [
+ "cocklestorm"
+ ],
+ "regions": {
+ "default": "http://www.cocklestorm.com/catalogsearch/result/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cocoapods.org/favicons/favicon.ico",
+ "name": "Cocoapods",
+ "triggers": [
+ "cocoapods",
+ "pod"
+ ],
+ "regions": {
+ "default": "http://cocoapods.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cod.esportspedia.com/wikis/cod/config/favicon.ico",
+ "name": "COD Esportspedia",
+ "triggers": [
+ "espcod"
+ ],
+ "regions": {
+ "default": "http://cod.esportspedia.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.codeproject.com/favicon/favicon-16x16.png",
+ "name": "Code Project",
+ "triggers": [
+ "cproj"
+ ],
+ "regions": {
+ "default": "http://www.codeproject.com/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.icd-code.de/favicon.ico",
+ "name": "Code Suche",
+ "triggers": [
+ "icd"
+ ],
+ "regions": {
+ "default": "http://www.icd-code.de/suche/icd/recherche.html?sp=0&sp=S{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://a.mtstatic.com/@public/production/site_7073/1450367378-favicon.ico",
+ "name": "Code42",
+ "triggers": [
+ "code42"
+ ],
+ "regions": {
+ "default": "https://support.code42.com/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tuil.webs.com/favicon.ico",
+ "name": "Code: Fireburst Specialized Search",
+ "triggers": [
+ "fssc"
+ ],
+ "regions": {
+ "default": "http://tuil.webs.com/fireburst/specializedsearch/code-results-html.css.php.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.codebottle.io/favicon.ico",
+ "name": "Codebottle",
+ "triggers": [
+ "cbottle",
+ "codebottle"
+ ],
+ "regions": {
+ "default": "https://codebottle.io/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://codecanyon.net/favicon.ico",
+ "name": "CodeCanyon",
+ "triggers": [
+ "codecanyon"
+ ],
+ "regions": {
+ "default": "http://codecanyon.net/search?utf8=%E2%9C%93&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//st.codeforces.com/s/49532/favicon.png",
+ "name": "Codeforces",
+ "triggers": [
+ "codeforces"
+ ],
+ "regions": {
+ "default": "http://codeforces.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.codehive.io/favicon.ico",
+ "name": "CodeHive",
+ "triggers": [
+ "codehive"
+ ],
+ "regions": {
+ "default": "https://www.codehive.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.codeigniter.com/assets/images/ci-icon.png",
+ "name": "CodeIgniter",
+ "triggers": [
+ "ci"
+ ],
+ "regions": {
+ "default": "https://www.codeigniter.com/user_guide/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico",
+ "name": "Codepen",
+ "triggers": [
+ "cpen"
+ ],
+ "regions": {
+ "default": "https://codepen.io/search?q={{{term}}}&limit=all&depth=everything&show_forks=false"
+ }
+ },
+ {
+ "favicon": "https://static.codepen.io/assets/favicon/favicon-8ea04875e70c4b0bb41da869e81236e54394d63638a1ef12fa558a4a835f1164.ico",
+ "name": "Codepen",
+ "triggers": [
+ "codepen"
+ ],
+ "regions": {
+ "default": "https://codepen.io/search/pens?q={{{term}}}&limit=all&type=type-pens"
+ }
+ },
+ {
+ "favicon": "https://www.codeplex.com/favicon.ico",
+ "name": "Codeplex",
+ "triggers": [
+ "codeplex"
+ ],
+ "regions": {
+ "default": "https://www.codeplex.com/site/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://codepoints.net/static/images/favicon.ico!8381e00671f20c9893669d9facf84298",
+ "name": "Codepoints",
+ "triggers": [
+ "codepoints"
+ ],
+ "regions": {
+ "default": "http://codepoints.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/codereview/img/favicon.ico?v=00b9e479193f",
+ "name": "codereview.stackexchange.com",
+ "triggers": [
+ "cr"
+ ],
+ "regions": {
+ "default": "http://codereview.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.codeweavers.com/pub/crossover/website/images/cw_logo_16.png",
+ "name": "Codeweavers",
+ "triggers": [
+ "codeweavers"
+ ],
+ "regions": {
+ "default": "https://www.codeweavers.com/compatibility/search/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.codeweavers.com/pub/crossover/website/images/cw_logo_16.png",
+ "name": "CodeWeavers",
+ "triggers": [
+ "crossover"
+ ],
+ "regions": {
+ "default": "https://www.codeweavers.com/compatibility/search/?name={{{term}}}&search=app"
+ }
+ },
+ {
+ "favicon": "http://codezag.com/favicon.ico",
+ "name": "Codezag",
+ "triggers": [
+ "codezag"
+ ],
+ "regions": {
+ "default": "http://codezag.com/?s={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://codropspz-tympanus.netdna-ssl.com/codrops/wp-content/themes/codropstheme03/favicons/favicon-32x32.png",
+ "name": "Codrops",
+ "triggers": [
+ "codrops"
+ ],
+ "regions": {
+ "default": "http://tympanus.net/codrops/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cogimix.com/bundles/cogimix/favicon/favicon-16x16.png?v106",
+ "name": "Cogimix",
+ "triggers": [
+ "mix"
+ ],
+ "regions": {
+ "default": "https://www.cogimix.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bookmanager.com/i/tbm/favicon.png?1475595144",
+ "name": "Coho Books",
+ "triggers": [
+ "coho"
+ ],
+ "regions": {
+ "default": "http://bookmanager.com/760081x/index.php?q=h.tviewer&using_sb=status&qsb=keyword&so=oh&searchtype=keyword&qs={{{term}}}&x=0&y=0&qs_file="
+ }
+ },
+ {
+ "favicon": "https://coinmarketcap.com/favicon.ico",
+ "name": "Coin Market Cap",
+ "triggers": [
+ "cmc",
+ "cmcap"
+ ],
+ "regions": {
+ "default": "https://coinmarketcap.com/currencies/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://coinmarketcap.com/favicon.ico",
+ "name": "CoinMarketCap",
+ "triggers": [
+ "cap",
+ "ccm",
+ "coinmarketcap"
+ ],
+ "regions": {
+ "default": "https://coinmarketcap.com/currencies/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cokeandpopcorn.me/favicon.ico",
+ "name": "coke and popcorn",
+ "triggers": [
+ "cokeandpopcorn"
+ ],
+ "regions": {
+ "default": "http://www.cokeandpopcorn.me/{{{term}}}tv-section.php"
+ }
+ },
+ {
+ "favicon": "https://cfdocs.org/favicon.ico",
+ "name": "Cold Fusion Docs",
+ "triggers": [
+ "cfd"
+ ],
+ "regions": {
+ "default": "https://cfdocs.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://community.adobe.com/themes/adobe-global/images/favicon.ico",
+ "name": "ColdFusion Docs",
+ "triggers": [
+ "cf"
+ ],
+ "regions": {
+ "default": "http://community.adobe.com/help/search.html?searchterm={{{term}}}&go=go&q=bmnbhilgacbjml&l=coldfusion_product_adobelr&x=0&y=0&area=0&lr=en_US"
+ }
+ },
+ {
+ "favicon": "http://community.adobe.com/themes/adobe-global/images/favicon.ico",
+ "name": "ColdFusion Docs",
+ "triggers": [
+ "coldfusion"
+ ],
+ "regions": {
+ "default": "http://community.adobe.com/help/search.html?searchterm={{{term}}}&go=go&q=cefijgdicg&l=coldfusion_product_adobelr&x=0&y=0&area=0&lr=en_US"
+ }
+ },
+ {
+ "favicon": "http://cnba.uba.ar/sites/default/files/garland_logo_0_0.gif",
+ "name": "Colegio Nacional de Buenos Aires",
+ "triggers": [
+ "cnba"
+ ],
+ "regions": {
+ "default": "http://cnba.uba.ar/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.colissimo.fr/bundles/digitaslapostebase/images/favicon.ico",
+ "name": "Colissimo",
+ "triggers": [
+ "colissimo"
+ ],
+ "regions": {
+ "default": "http://www.colissimo.fr/portail_colissimo/suivre.do?colispart={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2p3bygnnzw9w3.cloudfront.net/req/201806152/favicons/sr/favicon-32.png",
+ "name": "College Football Reference",
+ "triggers": [
+ "cfbr"
+ ],
+ "regions": {
+ "default": "http://www.sports-reference.com/cfb/search/search.fcgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collegeboard.org/sites/default/files/favicon_0.ico",
+ "name": "CollegeBoard",
+ "triggers": [
+ "collegeboard"
+ ],
+ "regions": {
+ "default": "http://search.collegeboard.com/servlet/sitesearch?mss=cb&kl=XX&i=CBI&searchType=site&q={{{term}}}&submit.x=0&submit.y=0"
+ }
+ },
+ {
+ "favicon": "http://www.collegiatetimes.com/content/tncms/site/icon.ico",
+ "name": "Collegiate Times",
+ "triggers": [
+ "ctimes"
+ ],
+ "regions": {
+ "default": "https://www.collegiatetimes.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins Dictionaries (English for Learners)",
+ "triggers": [
+ "cdl"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/english-cobuild-learners/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins Dictionary",
+ "triggers": [
+ "cdeen"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/spellcheck/english-german?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins Dictionary",
+ "triggers": [
+ "cd"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/english/{{{term}}}?showCookiePolicy=true"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins Dictionary",
+ "triggers": [
+ "collins"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins English Thesaurus",
+ "triggers": [
+ "cth"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/english-thesaurus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins French Dictionary (to English)",
+ "triggers": [
+ "cfren"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/french-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins French Dictionary (to French)",
+ "triggers": [
+ "cenfr"
+ ],
+ "regions": {
+ "default": "http://www.collinsdictionary.com/dictionary/english-french/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collinsdictionary.com/favicon.ico",
+ "name": "Collins Thesaurus",
+ "triggers": [
+ "cdt"
+ ],
+ "regions": {
+ "default": "https://www.collinsdictionary.com/dictionary/english-thesaurus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.colorhexa.com/favicon.ico",
+ "name": "ColorHexa",
+ "triggers": [
+ "color",
+ "hex"
+ ],
+ "regions": {
+ "default": "http://www.colorhexa.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.colormango.com/skin/ico.png",
+ "name": "ColorMango",
+ "triggers": [
+ "colormango"
+ ],
+ "regions": {
+ "default": "http://www.colormango.com/search/index.asp?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalog.clcohio.org/favicon.ico",
+ "name": "Columbus Metropolitan Library",
+ "triggers": [
+ "cml"
+ ],
+ "regions": {
+ "default": "http://catalog.clcohio.org/polaris/search/searchresults.aspx?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://combineoverwiki.net/favicon.ico",
+ "name": "Combine OverWiki",
+ "triggers": [
+ "cow"
+ ],
+ "regions": {
+ "default": "http://combineoverwiki.net/index.php?search={{{term}}}&button=&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://combodeck.net/Content/Branding/favicon.ico",
+ "name": "ComboDeck",
+ "triggers": [
+ "combodeck"
+ ],
+ "regions": {
+ "default": "http://combodeck.net/Query/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.comdirect.de/favicon_196px.png?v=1530180053115>",
+ "name": "comdirect",
+ "triggers": [
+ "cdirect"
+ ],
+ "regions": {
+ "default": "https://www.comdirect.de/inf/search/general.html?SEARCH_VALUE={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.comicbookdb.com/favicon.gif",
+ "name": "Comic Book Database",
+ "triggers": [
+ "cbdb"
+ ],
+ "regions": {
+ "default": "http://comicbookdb.com/search.php?form_search={{{term}}}&form_searchtype=FullSite"
+ }
+ },
+ {
+ "favicon": "http://comicbookroundup.com/images/cbroundup-favicon.png",
+ "name": "Comic Book Roundup",
+ "triggers": [
+ "cbr"
+ ],
+ "regions": {
+ "default": "http://comicbookroundup.com/search_results.php?f_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.comic-rocket.com/media/favicon.ico",
+ "name": "Comic Rocket",
+ "triggers": [
+ "comicrocket"
+ ],
+ "regions": {
+ "default": "https://www.comic-rocket.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.comicvine.com/bundles/phoenixsite/images/core/loose/favicon-cv.ico",
+ "name": "Comic Vine",
+ "triggers": [
+ "comicvine"
+ ],
+ "regions": {
+ "default": "http://www.comicvine.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://marvel.com/i/images/favicon/favicon.ico",
+ "name": "Comics in marvel.com",
+ "triggers": [
+ "marvelc"
+ ],
+ "regions": {
+ "default": "https://marvel.com/search/?q={{{term}}}&category=comics"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/Comics/web/i/assets/cmx/imgs/favicon.ico?v=3",
+ "name": "Comixology",
+ "triggers": [
+ "comix"
+ ],
+ "regions": {
+ "default": "https://www.comixology.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/Comics/web/i/assets/cmx/imgs/favicon.ico?v=3",
+ "name": "ComiXology UK",
+ "triggers": [
+ "comixuk"
+ ],
+ "regions": {
+ "default": "https://www.comixology.co.uk/search?search={{{term}}}&submit=Submit"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/Comics/web/i/assets/cmx/imgs/favicon.ico?v=3",
+ "name": "Comixology.eu",
+ "triggers": [
+ "comixeu"
+ ],
+ "regions": {
+ "default": "https://www.comixology.eu/search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.commandlinefu.com/images/favicon.ico",
+ "name": "Command Line Fu",
+ "triggers": [
+ "clf"
+ ],
+ "regions": {
+ "default": "https://www.commandlinefu.com/commands/matching/{{{term}}}/bys=/sort-by-votes"
+ }
+ },
+ {
+ "favicon": "http://www.commeaucinema.com/favicon.ico",
+ "name": "Comme Au Cinema",
+ "triggers": [
+ "cac"
+ ],
+ "regions": {
+ "default": "http://www.commeaucinema.com/search.php?recherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.commitstrip.com/wp-content/themes/krds_blog/favicon.png?v=5",
+ "name": "Commit Strip",
+ "triggers": [
+ "commitstrip"
+ ],
+ "regions": {
+ "default": "https://www.commitstrip.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2e111jq13me73.cloudfront.net/sites/all/themes/commonsense/images/favicons/favicon-192x192.png",
+ "name": "Common Sense Media",
+ "triggers": [
+ "commonsensemedia",
+ "csm"
+ ],
+ "regions": {
+ "default": "https://www.commonsensemedia.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cve.mitre.org/favicon.ico",
+ "name": "Common Vulnerabilities and Exposures (CVE)",
+ "triggers": [
+ "cve"
+ ],
+ "regions": {
+ "default": "https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cwe.mitre.org/favicon.ico",
+ "name": "Common Weakness Enumeration",
+ "triggers": [
+ "cwe"
+ ],
+ "regions": {
+ "default": "https://cwe.mitre.org/data/definitions/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.lispworks.com/favicon.ico",
+ "name": "CommonLisp HyperSpec",
+ "triggers": [
+ "clhs"
+ ],
+ "regions": {
+ "default": "http://www.lispworks.com/cgi-bin/search.cgi?q={{{term}}}&cmd=Search%21&t=-D--HB-"
+ }
+ },
+ {
+ "favicon": "http://coptr.digipres.org/favicon.ico",
+ "name": "Community Owned digital Preservation Tool Registry (COPTR)",
+ "triggers": [
+ "coptr"
+ ],
+ "regions": {
+ "default": "http://coptr.digipres.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://company.info/gui/img/favicon.ico",
+ "name": "Company.info",
+ "triggers": [
+ "cio"
+ ],
+ "regions": {
+ "default": "https://company.info/organisations/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/comparegames/favicon.ico",
+ "name": "Compare Games",
+ "triggers": [
+ "comparegames"
+ ],
+ "regions": {
+ "default": "http://www.comparegames.com.br/comprar/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://compare.eu/favicon.ico",
+ "name": "compare.eu",
+ "triggers": [
+ "cmpeu"
+ ],
+ "regions": {
+ "default": "http://compare.eu/?fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://compass-style.org/images/compass_icon.png",
+ "name": "Compass",
+ "triggers": [
+ "compass"
+ ],
+ "regions": {
+ "default": "http://compass-style.org/reference/compass/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://siteanalytics.compete.com/favicon.ico",
+ "name": "Compete",
+ "triggers": [
+ "compete"
+ ],
+ "regions": {
+ "default": "http://siteanalytics.compete.com/{{{term}}}/?metric=uv"
+ }
+ },
+ {
+ "favicon": "http://compfight.com/favicon.ico",
+ "name": "Compfight",
+ "triggers": [
+ "compfight"
+ ],
+ "regions": {
+ "default": "http://compfight.com/search/{{{term}}} /"
+ }
+ },
+ {
+ "favicon": "http://lookup.computerlanguage.com/favicon.ico",
+ "name": "Computer Desktop Encyclopedia",
+ "triggers": [
+ "cde"
+ ],
+ "regions": {
+ "default": "http://lookup.computerlanguage.com/host_app/search?cid=C999999&term={{{term}}}&lookup.x=0&lookup.y=0"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/cs/img/favicon.ico?v=b7c683f5c525",
+ "name": "Computer Science - Stack Exchange",
+ "triggers": [
+ "csse"
+ ],
+ "regions": {
+ "default": "http://cs.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.csv.de/favicon.ico",
+ "name": "Computer Service & Vertrieb",
+ "triggers": [
+ "csv"
+ ],
+ "regions": {
+ "default": "https://www.csv.de/artsearchresult.php?STICHWORT={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.computerbase.de/favicon.ico",
+ "name": "ComputerBase",
+ "triggers": [
+ "cbase"
+ ],
+ "regions": {
+ "default": "http://www.computerbase.de/suche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://computercraft.info/favicon.ico",
+ "name": "ComputerCraft Wiki",
+ "triggers": [
+ "ccwiki"
+ ],
+ "regions": {
+ "default": "http://computercraft.info/wiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.computrabajo.com.ar/c/img/favicon.ico",
+ "name": "CompuTrabajo",
+ "triggers": [
+ "computrabajo"
+ ],
+ "regions": {
+ "default": "http://www.computrabajo.com.ar/ofertas-de-trabajo/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.congress.gov/favicon.ico",
+ "name": "Congress",
+ "triggers": [
+ "congress"
+ ],
+ "regions": {
+ "default": "https://www.congress.gov/search?q={%22source%22%3A%22legislation%22%2C%22search%22%3A%22{{{term}}}%22}"
+ }
+ },
+ {
+ "favicon": "http://boxstr.com/files/5955844_qdmxt/favicon.ico",
+ "name": "Conjuga-me",
+ "triggers": [
+ "conjuga"
+ ],
+ "regions": {
+ "default": "http://www.conjuga-me.net/verbo-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://conjugator.reverso.net/favicon.ico",
+ "name": "conjugator.reverso.net",
+ "triggers": [
+ "conjen",
+ "verbomatic",
+ "verb"
+ ],
+ "regions": {
+ "default": "http://conjugator.reverso.net/conjugation-english-verb-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://conjugueur.reverso.net/favicon.ico",
+ "name": "conjugueur.reverso.net",
+ "triggers": [
+ "conjfr"
+ ],
+ "regions": {
+ "default": "http://conjugueur.reverso.net/conjugaison-francais-verbe-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.connectedly.com/favicon.ico",
+ "name": "Connectedly",
+ "triggers": [
+ "conn"
+ ],
+ "regions": {
+ "default": "http://www.connectedly.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.conrad.de/etc/designs/conrad/favicon.ico",
+ "name": "Conrad",
+ "triggers": [
+ "conrad"
+ ],
+ "regions": {
+ "default": "https://www.conrad.de/ce/de/Search.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.conrad.at/etc/designs/conrad/favicon.ico",
+ "name": "Conrad Austria",
+ "triggers": [
+ "conradat"
+ ],
+ "regions": {
+ "default": "https://www.conrad.at/de/Search.html?searchType=REGULAR&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://recherche.conseil-constitutionnel.fr/favicon.ico",
+ "name": "Conseil Constitutionnel",
+ "triggers": [
+ "cconst"
+ ],
+ "regions": {
+ "default": "http://recherche.conseil-constitutionnel.fr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/dbe3add772e86e30b10b5b89084daa8e?s=32",
+ "name": "Consequence of Sound",
+ "triggers": [
+ "cos"
+ ],
+ "regions": {
+ "default": "http://consequenceofsound.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.conservapedia.com/home/cptransi/public_html/favicon.ico",
+ "name": "Conservapedia",
+ "triggers": [
+ "conservapedia"
+ ],
+ "regions": {
+ "default": "http://www.conservapedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webopac.csbno.net/sites/csbno/assets/Uploads/logo-no-scritta.png",
+ "name": "Consorzio Sistema Bibliotecario Nord Ovest",
+ "triggers": [
+ "csbno"
+ ],
+ "regions": {
+ "default": "http://webopac.csbno.net/opac/search/lst?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.consultarcep.com.br/favicon.ico",
+ "name": "Consultar CEP",
+ "triggers": [
+ "cep"
+ ],
+ "regions": {
+ "default": "http://www.consultarcep.com.br/resultados.html?cx=partner-pub-6657933402951336%3A8478085485&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa=%C2%A0"
+ }
+ },
+ {
+ "favicon": "https://www.consumerlab.com/icon-normal.png",
+ "name": "ConsumerLab.com",
+ "triggers": [
+ "consumerlab"
+ ],
+ "regions": {
+ "default": "https://www.consumerlab.com/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/7917281459a034adb09ddd671a16f0af?s=32",
+ "name": "contamet.wordpress.com",
+ "triggers": [
+ "contamet"
+ ],
+ "regions": {
+ "default": "https://contamet.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.continente.pt/Style%20Library/Themes/Framework/Images/favicon.ico",
+ "name": "Continente",
+ "triggers": [
+ "continente"
+ ],
+ "regions": {
+ "default": "http://www.continente.pt/stores/continente/pt-pt/public/Pages/searchResults.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cookscountry.com/assets/cco/images/favicon.png",
+ "name": "Cook's Country",
+ "triggers": [
+ "cooksc"
+ ],
+ "regions": {
+ "default": "http://www.cookscountry.com/search/?type=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cooksillustrated.com/assets/cio/images/favicon.png",
+ "name": "Cook's Illustrated",
+ "triggers": [
+ "cooksi"
+ ],
+ "regions": {
+ "default": "http://www.cooksillustrated.com/search/results.asp?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.freefind.com/favicon.ico",
+ "name": "Cook's Thesaurus",
+ "triggers": [
+ "foodsubs"
+ ],
+ "regions": {
+ "default": "https://search.freefind.com/find.html?id=81296093&pageid=r&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cookpad.com/favicon.ico",
+ "name": "Cookpad",
+ "triggers": [
+ "cookpad"
+ ],
+ "regions": {
+ "default": "http://cookpad.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cooks.com/favicon.ico",
+ "name": "Cooks.com",
+ "triggers": [
+ "cook"
+ ],
+ "regions": {
+ "default": "http://www.cooks.com/?/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cooks.com/favicon.ico",
+ "name": "Cooks.com",
+ "triggers": [
+ "cooks"
+ ],
+ "regions": {
+ "default": "http://www.cooks.com/rec/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://coolrom.com/favicon.ico",
+ "name": "Cool ROM",
+ "triggers": [
+ "coolrom",
+ "crm"
+ ],
+ "regions": {
+ "default": "http://coolrom.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.coolstuffinc.com/favicon.ico",
+ "name": "Cool Stuff Inc",
+ "triggers": [
+ "csi",
+ "coolstuffinc"
+ ],
+ "regions": {
+ "default": "http://www.coolstuffinc.com/main_search.php?pa=searchOnName&page=1&resultsPerPage=25&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.coolapk.com/favicon.ico",
+ "name": "Coolapk",
+ "triggers": [
+ "Coolapk"
+ ],
+ "regions": {
+ "default": "https://www.coolapk.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.coolblue.nl/images/favicons/favicon.version1.ico",
+ "name": "Coolblue",
+ "triggers": [
+ "coolblue",
+ "coolbluenl"
+ ],
+ "regions": {
+ "default": "https://www.coolblue.nl/zoeken?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.coolblue.nl/images/favicons/favicon.version1.ico",
+ "name": "Coolblue België",
+ "triggers": [
+ "coolbluebe"
+ ],
+ "regions": {
+ "default": "https://www.coolblue.be/zoeken?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cooljugator.com/lib/images/favicons/favicon-16x16.png",
+ "name": "CoolJugator Lithuanian",
+ "triggers": [
+ "cool"
+ ],
+ "regions": {
+ "default": "http://cooljugator.com/lt/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.coop.ch/etc/designs/coopch/clientlibs/images/favicons/favicon-16x16.png",
+ "name": "Coop (DE)",
+ "triggers": [
+ "coop_de"
+ ],
+ "regions": {
+ "default": "https://www.coop.ch/pb/site/search/search/2057/Lde/index.html?qs={{{term}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=de&_sid=4aea1684-910e-4741-9099-86fff3d8a570"
+ }
+ },
+ {
+ "favicon": "https://www.coop.ch/etc/designs/coopch/clientlibs/images/favicons/favicon-16x16.png",
+ "name": "Coop (FR)",
+ "triggers": [
+ "coop_fr"
+ ],
+ "regions": {
+ "default": "https://www.coop.ch/pb/site/search/search/2057/Lfr/index.html?qs={{{term}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=fr&_sid=2fae98df-7f08-49a8-86b5-38148b71ebdb"
+ }
+ },
+ {
+ "favicon": "https://www.coop.ch/etc/designs/coopch/clientlibs/images/favicons/favicon-16x16.png",
+ "name": "Coop (IT)",
+ "triggers": [
+ "coop_it"
+ ],
+ "regions": {
+ "default": "https://www.coop.ch/pb/site/search/search/2057/Lit/index.html?qs={{{term}}}&fr=coop2012&SuchButton.x=0&SuchButton.y=0&search=search&backend=backend_coop2012&la=it&_sid=537d493c-9c35-41dc-8881-d878b57e702f"
+ }
+ },
+ {
+ "favicon": "https://www.coop.se/assets/icons/favicons/favicon.ico",
+ "name": "Coop Sweden",
+ "triggers": [
+ "coop_se"
+ ],
+ "regions": {
+ "default": "https://www.coop.se/Sok/Receptsok/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://copac.ac.uk/favicon.ico",
+ "name": "COPAC",
+ "triggers": [
+ "copac"
+ ],
+ "regions": {
+ "default": "http://copac.ac.uk/search?&title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cocatalog.loc.gov/favicon.ico",
+ "name": "Copyright Catalog (name)",
+ "triggers": [
+ "cocatalogn"
+ ],
+ "regions": {
+ "default": "http://cocatalog.loc.gov/cgi-bin/Pwebrecon.cgi?Search_Arg={{{term}}}&Search_Code=NALL&CNT=25&HIST=1"
+ }
+ },
+ {
+ "favicon": "http://cocatalog.loc.gov/favicon.ico",
+ "name": "Copyright Catalog (title)",
+ "triggers": [
+ "cocatalog"
+ ],
+ "regions": {
+ "default": "http://cocatalog.loc.gov/cgi-bin/Pwebrecon.cgi?Search_Arg={{{term}}}&Search_Code=TALL&CNT=25&HIST=1"
+ }
+ },
+ {
+ "favicon": "https://coreblog.it/favicon.ico",
+ "name": "Coreblog",
+ "triggers": [
+ "coreblog"
+ ],
+ "regions": {
+ "default": "https://coreblog.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://files.allaboutbirds.net/wp-content/themes/html5blank-stable/img/icons/favicon.png",
+ "name": "Cornell Lab of Ornithology",
+ "triggers": [
+ "birds"
+ ],
+ "regions": {
+ "default": "https://www.allaboutbirds.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://newcatalog.library.cornell.edu/assets/favicon-06c793e6579109231348cccbde6661d5ad84dae143daa862a695bd25e1ce14c9.ico",
+ "name": "Cornell University Library",
+ "triggers": [
+ "cul"
+ ],
+ "regions": {
+ "default": "https://newcatalog.library.cornell.edu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rtve.es/favicon.ico",
+ "name": "Corporación de Radio y Televisión Española",
+ "triggers": [
+ "rtve"
+ ],
+ "regions": {
+ "default": "http://www.rtve.es/buscador/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.trackingmore.com/images/favicon.ico",
+ "name": "Correios",
+ "triggers": [
+ "correios"
+ ],
+ "regions": {
+ "default": "https://www.trackingmore.com/brazil-correios-tracking.html?number={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//css2.corriereobjects.it/includes2013/LIBS/css/assets/favicon.ico",
+ "name": "Corriere della Sera",
+ "triggers": [
+ "corriere"
+ ],
+ "regions": {
+ "default": "http://sitesearch.corriere.it/forward.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//crt00.epimg.net/favicon.png",
+ "name": "Cortas",
+ "triggers": [
+ "acortar",
+ "shorten"
+ ],
+ "regions": {
+ "default": "http://cortas.elpais.com/encode.pl?u=http://{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cosdna.com/favicon.ico",
+ "name": "CosDNA (english)",
+ "triggers": [
+ "cosdna"
+ ],
+ "regions": {
+ "default": "http://www.cosdna.com/eng/product.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cosmoty.de/wp-content/themes/cosmoty.de/img/favicon.ico",
+ "name": "COSMOTY.de",
+ "triggers": [
+ "cosmoty"
+ ],
+ "regions": {
+ "default": "http://www.cosmoty.de/suche/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://cottrillcompass.com/favicon.ico",
+ "name": "Cottrill Compass blog",
+ "triggers": [
+ "cottrillcompassblog"
+ ],
+ "regions": {
+ "default": "http://cottrillcompass.com/blog/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://coub.com/favicon.ico",
+ "name": "Coub",
+ "triggers": [
+ "coub"
+ ],
+ "regions": {
+ "default": "https://coub.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//ht-assets.couchsurfing.com/assets/favicon-3c494547ebeda33dea8d2259a8f2d626103de3e0dc1b1da58fa067b5128eafed.ico",
+ "name": "Couchsurfing",
+ "triggers": [
+ "couch"
+ ],
+ "regions": {
+ "default": "https://www.couchsurfing.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//ht-assets.couchsurfing.com/assets/favicon-3c494547ebeda33dea8d2259a8f2d626103de3e0dc1b1da58fa067b5128eafed.ico",
+ "name": "Couchsurfing.org",
+ "triggers": [
+ "csurf"
+ ],
+ "regions": {
+ "default": "https://www.couchsurfing.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.couchtuner.ch/favicon.ico",
+ "name": "Couchtuner",
+ "triggers": [
+ "tune"
+ ],
+ "regions": {
+ "default": "http://www.couchtuner.ch/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://couleur-science.eu/favicon.png",
+ "name": "Couleur Science",
+ "triggers": [
+ "couleur"
+ ],
+ "regions": {
+ "default": "http://couleur-science.eu/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cd.justinjc.com/favicon.ico",
+ "name": "Countdown",
+ "triggers": [
+ "countdown"
+ ],
+ "regions": {
+ "default": "http://cd.justinjc.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.countrycode.org/static/images/favicon.ico",
+ "name": "CountryCode.org",
+ "triggers": [
+ "country"
+ ],
+ "regions": {
+ "default": "https://www.countrycode.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.couponcabin.com/prd/img/favicon.2673b25fc20a.ico",
+ "name": "CouponCabin",
+ "triggers": [
+ "couponcabin"
+ ],
+ "regions": {
+ "default": "http://www.couponcabin.com/ps/{{{term}}}/1/"
+ }
+ },
+ {
+ "favicon": "http://www.couponmeup.com/favicon.ico",
+ "name": "CouponMeUp",
+ "triggers": [
+ "couponmeup"
+ ],
+ "regions": {
+ "default": "http://www.couponmeup.com/cgi-bin/display.pl?search=1&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.couponsurfer.com/favicon.ico",
+ "name": "CouponSurfer",
+ "triggers": [
+ "couponsurfer"
+ ],
+ "regions": {
+ "default": "http://www.couponsurfer.com/coupon_search.cfm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.courrierinternational.com/misc/favicon.ico",
+ "name": "Courrier International",
+ "triggers": [
+ "courrierint"
+ ],
+ "regions": {
+ "default": "http://www.courrierinternational.com/search/result/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3njjcbhbojbot.cloudfront.net/web/images/favicons/icon-blue-32x32.png",
+ "name": "Coursera",
+ "triggers": [
+ "coursera"
+ ],
+ "regions": {
+ "default": "https://www.coursera.org/courses?languages=en&query= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.coveo.com/public/img/favicon.png",
+ "name": "Coveo",
+ "triggers": [
+ "coveo"
+ ],
+ "regions": {
+ "default": "http://www.coveo.com/en/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.covot.net/img/covot.ico",
+ "name": "Covot Dictionary",
+ "triggers": [
+ "covot"
+ ],
+ "regions": {
+ "default": "http://www.covot.net/dictionary?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cowboylyrics.com/favicon.ico",
+ "name": "Cowboy Lyrics",
+ "triggers": [
+ "cowboylyrics"
+ ],
+ "regions": {
+ "default": "http://www.cowboylyrics.com/cgi-bin/cseek.cgi?q={{{term}}}&Submit=Go"
+ }
+ },
+ {
+ "favicon": "http://search.cpan.org/static/icons/favicon.ico",
+ "name": "CPAN",
+ "triggers": [
+ "searchcpan",
+ "oldcpan"
+ ],
+ "regions": {
+ "default": "http://search.cpan.org/search?query={{{term}}}&mode=all"
+ }
+ },
+ {
+ "favicon": "http://grep.cpan.me/static/favicon.png",
+ "name": "CPAN -> GREP",
+ "triggers": [
+ "gcpan"
+ ],
+ "regions": {
+ "default": "http://grep.cpan.me/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://deps.cpantesters.org/favicon.ico",
+ "name": "CPAN Dependencies Checker",
+ "triggers": [
+ "cpandeps"
+ ],
+ "regions": {
+ "default": "http://deps.cpantesters.org/?module={{{term}}}&perl=any+version&os=any+OS"
+ }
+ },
+ {
+ "favicon": "http://www.cpap.com/favicon-16x16.png",
+ "name": "CPAP.com",
+ "triggers": [
+ "cpap"
+ ],
+ "regions": {
+ "default": "http://www.cpap.com/productSearch.php?q=1&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cplusplus.com/favicon.ico",
+ "name": "cplusplus.com",
+ "triggers": [
+ "stl",
+ "cxx"
+ ],
+ "regions": {
+ "default": "http://www.cplusplus.com/search.do?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cplusplus.com/favicon.ico",
+ "name": "Cplusplus.com",
+ "triggers": [
+ "cplusplus"
+ ],
+ "regions": {
+ "default": "http://www.cplusplus.com/query/search.cgi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.cppreference.com/favicon.ico",
+ "name": "Cppreference",
+ "triggers": [
+ "cppr"
+ ],
+ "regions": {
+ "default": "http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://cppreference.com/favicon.ico",
+ "name": "cppreference",
+ "triggers": [
+ "cppreference"
+ ],
+ "regions": {
+ "default": "http://cppreference.com/w/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cnet4.cbsistatic.com/fly/bundles/cnetcss/images/core/logo.png",
+ "name": "cppreference.com",
+ "triggers": [
+ "c++ref"
+ ],
+ "regions": {
+ "default": "http://www.cnet.com/1770-5_1-0.html?query=ref%20{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.cppreference.com/favicon.ico",
+ "name": "cppreference.com",
+ "triggers": [
+ "cppref"
+ ],
+ "regions": {
+ "default": "http://en.cppreference.com/mwiki/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.cppreference.com/favicon.ico",
+ "name": "cppreference.com",
+ "triggers": [
+ "cpp"
+ ],
+ "regions": {
+ "default": "http://en.cppreference.com/mwiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.passmark.com/favicon.ico",
+ "name": "Cpu Benchmarks",
+ "triggers": [
+ "cpb"
+ ],
+ "regions": {
+ "default": "https://www.passmark.com/search/zoomsearch.php?zoom_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cpu-world.com/favicon.ico",
+ "name": "cpu-world.com",
+ "triggers": [
+ "cpuworld"
+ ],
+ "regions": {
+ "default": "http://www.cpu-world.com/cgi-bin/SearchSite.pl?SEARCH={{{term}}}&PROCESS=Search"
+ }
+ },
+ {
+ "favicon": "http://www.cracked.com/favicon.ico",
+ "name": "Cracked",
+ "triggers": [
+ "cracked"
+ ],
+ "regions": {
+ "default": "http://www.cracked.com/search/search.php?sa=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://craftkeys.com/favicon.ico",
+ "name": "CraftKeys",
+ "triggers": [
+ "ckeys"
+ ],
+ "regions": {
+ "default": "http://craftkeys.com/site-info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.craftsy.com/bundle/4d117695/img/favicons/favicon-16x16.png",
+ "name": "Craftsy",
+ "triggers": [
+ "craftsy"
+ ],
+ "regions": {
+ "default": "http://www.craftsy.com/classes/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.craigslist.org/favicon.ico",
+ "name": "Craigslist",
+ "triggers": [
+ "cl"
+ ],
+ "regions": {
+ "default": "https://www.craigslist.org/search/sss?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pittsburgh.craigslist.org/favicon.ico",
+ "name": "craigslist",
+ "triggers": [
+ "cgl"
+ ],
+ "regions": {
+ "default": "https://pittsburgh.craigslist.org/search/sss?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://craigslist.org/favicon.ico",
+ "name": "Craigslist",
+ "triggers": [
+ "craigslist"
+ ],
+ "regions": {
+ "default": "https://craigslist.org/search/sss?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.namecheap.com/assets/img/nc-icon/favicon.ico",
+ "name": "Craigslist - Raleigh",
+ "triggers": [
+ "NC",
+ "nc"
+ ],
+ "regions": {
+ "default": "https://www.namecheap.com/domains/registration/results.aspx?domain={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//www.cram.com/favicon.ico",
+ "name": "Cram",
+ "triggers": [
+ "cram"
+ ],
+ "regions": {
+ "default": "http://www.cram.com/search?query={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://finzi.psych.upenn.edu/cgi-bin/R/favicon.ico",
+ "name": "cran.r-project.org",
+ "triggers": [
+ "cran"
+ ],
+ "regions": {
+ "default": "http://finzi.psych.upenn.edu/cgi-bin/namazu.cgi?query={{{term}}}&max=100&result=normal&sort=score&idxname=functions&idxname=vignettes&idxname=views"
+ }
+ },
+ {
+ "favicon": "https://crate.io/wp-content/uploads/2017/11/favicon.png",
+ "name": "crate.io",
+ "triggers": [
+ "crate"
+ ],
+ "regions": {
+ "default": "https://crate.io/docs/stable/search.html?check_keywords=yes&area=default&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://crawl.chaosforge.org/favicon.ico",
+ "name": "Crawl Wiki",
+ "triggers": [
+ "dcss"
+ ],
+ "regions": {
+ "default": "http://crawl.chaosforge.org/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://crawl.chaosforge.org/favicon.ico",
+ "name": "CrawlWiki",
+ "triggers": [
+ "crawl"
+ ],
+ "regions": {
+ "default": "http://crawl.chaosforge.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.creationkit.com/favicon.ico",
+ "name": "Creation Kit",
+ "triggers": [
+ "ckt"
+ ],
+ "regions": {
+ "default": "https://www.creationkit.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://commons.wikimedia.org/static/favicon/commons.ico",
+ "name": "creative commons",
+ "triggers": [
+ "ccsearch"
+ ],
+ "regions": {
+ "default": "https://commons.wikimedia.org/w/index.php?title=Special:Search&redirs=0&search={{{term}}}&fulltext=Search&ns0=1&ns6=1&ns14=1&title=Special:Search&advanced=1&fulltext=Advanced%20search"
+ }
+ },
+ {
+ "favicon": "https://forums.creativecow.net/favicon.ico",
+ "name": "Creative Cow Forums",
+ "triggers": [
+ "creativecow"
+ ],
+ "regions": {
+ "default": "https://forums.creativecow.net/search.php?content=F&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://library.creativecow.net/favicon.ico",
+ "name": "Creative Cow Library",
+ "triggers": [
+ "creativecowlib"
+ ],
+ "regions": {
+ "default": "https://library.creativecow.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.creativecommons.org/cc-wp/favicon.ico",
+ "name": "CreativeCommons.org",
+ "triggers": [
+ "cc"
+ ],
+ "regions": {
+ "default": "http://search.creativecommons.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://a.espncdn.com/espncricinfo/favicon.ico",
+ "name": "Cricinfo",
+ "triggers": [
+ "cricinfo"
+ ],
+ "regions": {
+ "default": "http://search.espncricinfo.com/ci/content/site/search.html?search={{{term}}}&gblsearch="
+ }
+ },
+ {
+ "favicon": "http://cricnorms.com/favicon.ico",
+ "name": "Cricnorms",
+ "triggers": [
+ "cricket"
+ ],
+ "regions": {
+ "default": "http://cricnorms.com/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://www.crisco.unicaen.fr/des/synonymes/_img/favicon_CRISCO1.ico",
+ "name": "CRISCO - dictionnaire synonymes",
+ "triggers": [
+ "synonyme",
+ "crisco",
+ "synf"
+ ],
+ "regions": {
+ "default": "http://www.crisco.unicaen.fr/des/synonymes/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slot1-images.wikia.nocookie.net/__cb1530526546/common/skins/common/images/favicon.ico",
+ "name": "Critical Role Wikia",
+ "triggers": [
+ "critrole"
+ ],
+ "regions": {
+ "default": "http://criticalrole.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.criticker.com/favicon.ico",
+ "name": "Criticker",
+ "triggers": [
+ "criticker"
+ ],
+ "regions": {
+ "default": "https://www.criticker.com/?search={{{term}}}&type=films"
+ }
+ },
+ {
+ "favicon": "https://criticl.me/favicon.ico",
+ "name": "Criticl",
+ "triggers": [
+ "criticl.me"
+ ],
+ "regions": {
+ "default": "https://criticl.me/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://critiki.com/favicon.ico?v=JyyvmNWyPp",
+ "name": "Critiki",
+ "triggers": [
+ "critiki"
+ ],
+ "regions": {
+ "default": "https://critiki.com/search/?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://critiquebrainz.org/static/images/favicon.png",
+ "name": "CritiqueBrainz",
+ "triggers": [
+ "critique"
+ ],
+ "regions": {
+ "default": "https://critiquebrainz.org/search/?query={{{term}}}&type=artist"
+ }
+ },
+ {
+ "favicon": "https://crontab.guru/favicon.ico",
+ "name": "Crontab.guru",
+ "triggers": [
+ "cron"
+ ],
+ "regions": {
+ "default": "https://crontab.guru/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stats/img/favicon.ico?v=573163e34adf",
+ "name": "Cross Validated (Stats StackExchange)",
+ "triggers": [
+ "crossvalidated"
+ ],
+ "regions": {
+ "default": "http://stats.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://crossclj.info/favicon.ico",
+ "name": "CrossClj",
+ "triggers": [
+ "crossclj"
+ ],
+ "regions": {
+ "default": "http://crossclj.info/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.crossref.org/favicon/favicon-16x16.png",
+ "name": "crossref",
+ "triggers": [
+ "crossref",
+ "xref"
+ ],
+ "regions": {
+ "default": "https://search.crossref.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crowdin.com/favicon.ico",
+ "name": "Crowdin",
+ "triggers": [
+ "crowdin"
+ ],
+ "regions": {
+ "default": "https://crowdin.com/projects?q={{{term}}}#advanced-search"
+ }
+ },
+ {
+ "favicon": "https://www.crowdsupply.com/_teal/images/favicon.ico",
+ "name": "CrowdSupply",
+ "triggers": [
+ "crowdsupply"
+ ],
+ "regions": {
+ "default": "https://www.crowdsupply.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//nebula.phx3.secureserver.net/3de3f259d8346b888fa3a2c1a562e674?AccessKeyId=D8931B437198561A3E40&disposition=0&alloworigin=1",
+ "name": "CrowsBows",
+ "triggers": [
+ "crowsbows"
+ ],
+ "regions": {
+ "default": "http://www.crowsbows.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://crt.sh/favicon.ico",
+ "name": "crt.sh",
+ "triggers": [
+ "crt"
+ ],
+ "regions": {
+ "default": "https://crt.sh/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://crunchbang.org/img/favicon128.png",
+ "name": "Crunchbang Forums",
+ "triggers": [
+ "cbf"
+ ],
+ "regions": {
+ "default": "http://crunchbang.org/forums/search.php?action=search&keywords={{{term}}}&author=&search_in=0&sort_by=0&sort_dir=DESC&show_as=topics&search=Submit"
+ }
+ },
+ {
+ "favicon": "https://www.crunchbase.com/favicon.ico",
+ "name": "CrunchBase",
+ "triggers": [
+ "crunchbase",
+ "cb"
+ ],
+ "regions": {
+ "default": "https://www.crunchbase.com/textsearch?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.crunchyroll.com/favicon.ico?v=1",
+ "name": "CrunchyRoll",
+ "triggers": [
+ "crunchyroll"
+ ],
+ "regions": {
+ "default": "http://www.crunchyroll.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.crushwineco.com/media/favicon/default/favicon.ico",
+ "name": "crushwineco.com",
+ "triggers": [
+ "crush"
+ ],
+ "regions": {
+ "default": "https://www.crushwineco.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crux.nu/favicon.ico",
+ "name": "CRUX",
+ "triggers": [
+ "crux"
+ ],
+ "regions": {
+ "default": "https://crux.nu/portdb/?a=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/crypt-of-the-necrodancer/images/6/64/Favicon.ico/revision/latest?cb=20140113060252",
+ "name": "Crypt of the NecroDancer Wikia",
+ "triggers": [
+ "necrod"
+ ],
+ "regions": {
+ "default": "http://crypt-of-the-necrodancer.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns1=1&ns2=1&ns3=1&ns4=1&ns5=1&ns6=1&ns7=1&ns8=1&ns9=1&ns10=1&ns11=1&ns12=1&ns13=1&ns14=1&ns15=1&ns110=1&ns111=1&ns828=1&ns829=1&ns1201=1#advanced"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/crypto/img/favicon.ico?v=e5444c0e7c0b",
+ "name": "Crypto Stack Exchange",
+ "triggers": [
+ "crypto"
+ ],
+ "regions": {
+ "default": "http://crypto.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cache-bitify.netdna-ssl.com/wp-content/themes/AuctionTheme/images/favicon.ico",
+ "name": "CryptoThrift",
+ "triggers": [
+ "cryptothrift"
+ ],
+ "regions": {
+ "default": "https://cryptothrift.com/advanced-search/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crystal-ann.com/favicon.ico",
+ "name": "Crystal Ann (Crystal related news)",
+ "triggers": [
+ "crann"
+ ],
+ "regions": {
+ "default": "https://crystal-ann.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crystal-lang.org/favicon.ico",
+ "name": "Crystal Language",
+ "triggers": [
+ "crdoc"
+ ],
+ "regions": {
+ "default": "https://crystal-lang.org/docs/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crystalshards.xyz/img/favicon.png",
+ "name": "Crystal Language Libraries",
+ "triggers": [
+ "crsh"
+ ],
+ "regions": {
+ "default": "https://crystalshards.xyz/?filter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://crystalshards.org/img/favicon-128.png",
+ "name": "Crystal Shards",
+ "triggers": [
+ "shards"
+ ],
+ "regions": {
+ "default": "https://crystalshards.org/?filter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://csgo-stats.net/static/img/favicon.png",
+ "name": "CSGO-STATS.NET",
+ "triggers": [
+ "csgostats"
+ ],
+ "regions": {
+ "default": "https://csgo-stats.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.csmonitor.com/extension/csm_base/design/standard/images/icon_csm_32.png",
+ "name": "CSMonitor",
+ "triggers": [
+ "csmonitor"
+ ],
+ "regions": {
+ "default": "https://www.csmonitor.com/content/search?SearchText={{{term}}}&SearchButton=Search"
+ }
+ },
+ {
+ "favicon": "http://www.csounds.com/favicon.ico",
+ "name": "csounds",
+ "triggers": [
+ "csound"
+ ],
+ "regions": {
+ "default": "http://www.csounds.com/manual/html/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "CSS",
+ "triggers": [
+ "css"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en/CSS/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://css-tricks.com/favicon.ico",
+ "name": "CSS Tricks",
+ "triggers": [
+ "ccst",
+ "csstricks"
+ ],
+ "regions": {
+ "default": "https://css-tricks.com/search-results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jigsaw.w3.org/favicon.ico",
+ "name": "CSS Validation Service",
+ "triggers": [
+ "validatecss"
+ ],
+ "regions": {
+ "default": "https://jigsaw.w3.org/css-validator/validator?uri={{{term}}}&profile=css3&usermedium=all&warning=1&vextwarning=&lang=en"
+ }
+ },
+ {
+ "favicon": "https://css-tricks.com/favicon.ico",
+ "name": "CSS-Tricks",
+ "triggers": [
+ "csst"
+ ],
+ "regions": {
+ "default": "https://css-tricks.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ctan.org/assets/favicon/favicon-afd4a866cd0c27587b7b06cd4199a57f.ico",
+ "name": "CTAN.org",
+ "triggers": [
+ "ctan"
+ ],
+ "regions": {
+ "default": "https://ctan.org/search/?phrase={{{term}}}&x=1&PORTAL=on&PKG=on&AUTHORS=on&TOPICS=on&max=16"
+ }
+ },
+ {
+ "favicon": "http://www.ctv.ca/favicon.ico",
+ "name": "CTV",
+ "triggers": [
+ "ctv"
+ ],
+ "regions": {
+ "default": "http://www.ctv.ca/searchResult.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.ctvnews.ca/bellmedia/common/img/64_ctvnewsfav.ico",
+ "name": "CTV News",
+ "triggers": [
+ "ctvnews"
+ ],
+ "regions": {
+ "default": "http://www.ctvnews.ca/search-results/search-ctv-news-7.137?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cubanet.org/wp-content/uploads/2018/05/image.jpg",
+ "name": "Cubanet",
+ "triggers": [
+ "cubanet"
+ ],
+ "regions": {
+ "default": "http://www.cubanet.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cubano1erplano.com/favicon.ico",
+ "name": "Cubano 1er plano",
+ "triggers": [
+ "1er"
+ ],
+ "regions": {
+ "default": "http://www.cubano1erplano.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s1.wp.com/i/favicon.ico",
+ "name": "Cube Hero",
+ "triggers": [
+ "cubehero"
+ ],
+ "regions": {
+ "default": "https://cubehero.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cubeworldwiki.net/favicon.ico",
+ "name": "Cube World Wiki",
+ "triggers": [
+ "cube"
+ ],
+ "regions": {
+ "default": "http://cubeworldwiki.net/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.cultofmac.com/favicon.ico",
+ "name": "Cult of Mac",
+ "triggers": [
+ "cultofmac"
+ ],
+ "regions": {
+ "default": "https://www.cultofmac.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cultpens.com/themes/cultpens/images/favicon.ico?1",
+ "name": "Cult Pens",
+ "triggers": [
+ "cultpens"
+ ],
+ "regions": {
+ "default": "https://www.cultpens.com/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hub.culturegraph.org/resources/img/favicon.ico",
+ "name": "CultureGraph",
+ "triggers": [
+ "cg"
+ ],
+ "regions": {
+ "default": "http://hub.culturegraph.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cultureunplugged.com/favicon.ico",
+ "name": "CultureUnplugged.com",
+ "triggers": [
+ "cultureunplugged"
+ ],
+ "regions": {
+ "default": "http://www.cultureunplugged.com/festival/gsearch.php?cx=006605354541519765965:qm01kqkdyrq&cof=FORID:10;NB:1&ie=UTF-8&q={{{term}}}&sa.x=0&sa.y=0"
+ }
+ },
+ {
+ "favicon": "https://www.culy.nl/wp-content/uploads/2016/11/cropped-culy-192x192.png",
+ "name": "Culy",
+ "triggers": [
+ "culy"
+ ],
+ "regions": {
+ "default": "http://www.culy.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.cuprinol.co.uk/favicon.ico",
+ "name": "Cuprinol UK",
+ "triggers": [
+ "cuprinoluk"
+ ],
+ "regions": {
+ "default": "http://www.cuprinol.co.uk/servlet/SiteAdvancedSearchHandler?searchtype=all&searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://curia.europa.eu/favicon.ico",
+ "name": "Curia",
+ "triggers": [
+ "cjeu"
+ ],
+ "regions": {
+ "default": "http://curia.europa.eu/juris/liste.jsf?language=en&num={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://curia.europa.eu/favicon.ico",
+ "name": "Curia (Case number)",
+ "triggers": [
+ "curiac"
+ ],
+ "regions": {
+ "default": "http://curia.europa.eu/juris/liste.jsf?pro=&lgrec=en&nat=&oqp=&dates=&lg=&language=en&jur=C%2CT%2CF&cit=none%252CC%252CCJ%252CR%252C2008E%252C%252C%252C%252C%252C%252C%252C%252C%252C%252Ctrue%252Cfalse%252Cfalse&num={{{term}}}&td=ALL&pcs=O&avg=&page=1&mat=or&jge=&for=&cid=114819"
+ }
+ },
+ {
+ "favicon": "http://curia.europa.eu/favicon.ico",
+ "name": "Curia (Name of the parties)",
+ "triggers": [
+ "curian"
+ ],
+ "regions": {
+ "default": "http://curia.europa.eu/juris/liste.jsf?pro=&nat=&oqp=&dates=&lg=&language=en&jur=C%2CT%2CF&cit=none%252CC%252CCJ%252CR%252C2008E%252C%252C%252C%252C%252C%252C%252C%252C%252C%252Ctrue%252Cfalse%252Cfalse&td=ALL&pcs=O&avg=&page=1&mat=or&parties={{{term}}}&jge=&for=&cid=114819"
+ }
+ },
+ {
+ "favicon": "http://www.curiua.com/favicon.ico",
+ "name": "Curiua.com",
+ "triggers": [
+ "curiua"
+ ],
+ "regions": {
+ "default": "http://www.curiua.com/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.currclick.com/themes/currclick/favicon.ico",
+ "name": "CurrClick",
+ "triggers": [
+ "currclick"
+ ],
+ "regions": {
+ "default": "http://www.currclick.com/browse.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.rubydocs.org/favicon.ico",
+ "name": "Current rubydocs",
+ "triggers": [
+ "rb",
+ "rubydocs"
+ ],
+ "regions": {
+ "default": "http://docs.rubydocs.org/ruby-2-3-1/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://currentlydown.com/favicon.png",
+ "name": "Currently Down",
+ "triggers": [
+ "cdown"
+ ],
+ "regions": {
+ "default": "http://currentlydown.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.forgecdn.net/avatars/130/458/636460205549127215.png",
+ "name": "Curse",
+ "triggers": [
+ "curse"
+ ],
+ "regions": {
+ "default": "https://www.curseforge.com/wow/addons/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.forgecdn.net/avatars/130/458/636460205549127215.png",
+ "name": "Curse Forge",
+ "triggers": [
+ "curseforge"
+ ],
+ "regions": {
+ "default": "https://www.curseforge.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.forgecdn.net/avatars/0/93/635227964539626926.png",
+ "name": "Curseforge",
+ "triggers": [
+ "mcmods"
+ ],
+ "regions": {
+ "default": "https://minecraft.curseforge.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://statics.cuantocabron.com/images/memes/favicon.gif?10052013",
+ "name": "Cuánto Cabrón",
+ "triggers": [
+ "cuantocabron"
+ ],
+ "regions": {
+ "default": "http://www.cuantocabron.com/busqueda/0/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cvmarket.lt/inc/img/favicon.cvm.ico?v=1.1",
+ "name": "CV Market",
+ "triggers": [
+ "cvm"
+ ],
+ "regions": {
+ "default": "http://www.cvmarket.lt/joboffers.php?op=search&search%5Bkeyword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cvedetails.com/favicon.ico",
+ "name": "CVE Details",
+ "triggers": [
+ "cved"
+ ],
+ "regions": {
+ "default": "https://cvedetails.com/cve-details.php?t=1&cve_id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cvs.com/favicon.ico",
+ "name": "CVS",
+ "triggers": [
+ "cvs"
+ ],
+ "regions": {
+ "default": "https://www.cvs.com/search/_/N-0?searchTerm={{{term}}}&pt=global"
+ }
+ },
+ {
+ "favicon": "http://sonichu.com/favicon.ico",
+ "name": "CWCki",
+ "triggers": [
+ "cwcki"
+ ],
+ "regions": {
+ "default": "http://sonichu.com/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.cybercook.com.br/assets/mr-pancake/images/favicon/favicon-16x16.png",
+ "name": "CyberCook",
+ "triggers": [
+ "ccook"
+ ],
+ "regions": {
+ "default": "http://www.cybercook.com.br/receitas/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cyberport.de/etc/designs/webshop30/clientlibs/images/favicons/favicon-16x16.png",
+ "name": "Cyberport",
+ "triggers": [
+ "cyberport"
+ ],
+ "regions": {
+ "default": "https://www.cyberport.de/?EVENT=itemsearch&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.cybrhome.com/static/all/shared/images/favicons/favicon.ico",
+ "name": "CybrHome",
+ "triggers": [
+ "cybrhome"
+ ],
+ "regions": {
+ "default": "https://www.cybrhome.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cycletec.ch/image/favicon/favicon.ico",
+ "name": "CycleTec GmbH",
+ "triggers": [
+ "cycletec"
+ ],
+ "regions": {
+ "default": "https://www.cycletec.ch/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cycling74.com/favicon.ico",
+ "name": "Cycling '74",
+ "triggers": [
+ "c74"
+ ],
+ "regions": {
+ "default": "https://cycling74.com/search-results/#gsc.tab=0&gsc.q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cygwin.com/favicon.ico",
+ "name": "Cygwin",
+ "triggers": [
+ "cygwin",
+ "cpg"
+ ],
+ "regions": {
+ "default": "https://cygwin.com/cgi-bin2/package-grep.cgi?grep={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cygwin.com/favicon.ico",
+ "name": "Cygwin Package Search",
+ "triggers": [
+ "cyg64"
+ ],
+ "regions": {
+ "default": "https://cygwin.com/cgi-bin2/package-grep.cgi?grep={{{term}}}&arch=x86_64"
+ }
+ },
+ {
+ "favicon": "http://www.cymath.com/img/favicon.ico",
+ "name": "Cymath",
+ "triggers": [
+ "cymath"
+ ],
+ "regions": {
+ "default": "http://www.cymath.com/answer.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1qg7m4jco4wvi.cloudfront.net/static/favicon.png",
+ "name": "Cymon",
+ "triggers": [
+ "cymon"
+ ],
+ "regions": {
+ "default": "https://cymon.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.czc.cz/favicon-16x16.png",
+ "name": "CZC.cz",
+ "triggers": [
+ "czc"
+ ],
+ "regions": {
+ "default": "http://www.czc.cz/search?q-fulltext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.postaonline.cz/favicon.ico",
+ "name": "Czech post",
+ "triggers": [
+ "cpost"
+ ],
+ "regions": {
+ "default": "https://www.postaonline.cz/trackandtrace/-/zasilka/cislo?parcelNumbers={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cs.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Czech Wikipedia",
+ "triggers": [
+ "wcz"
+ ],
+ "regions": {
+ "default": "https://cs.wikipedia.org/w/index.php?search={{{term}}}&title=Speci%C3%A1ln%C3%AD%3AHled%C3%A1n%C3%AD&go=J%C3%ADt+na"
+ }
+ },
+ {
+ "favicon": "http://content.cuspide.com/1113/favicon",
+ "name": "Cúspide",
+ "triggers": [
+ "cuspide"
+ ],
+ "regions": {
+ "default": "http://www.cuspide.com/resultados.aspx?c={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0871/2118/files/circle_25d9bfca-2603-4564-8b16-075079efb73e.png?v=1490916362",
+ "name": "D.O.H.P.",
+ "triggers": [
+ "dohp"
+ ],
+ "regions": {
+ "default": "https://dohp.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d66.nl/content/themes/link/assets/img/favicon.ico",
+ "name": "D66",
+ "triggers": [
+ "d66"
+ ],
+ "regions": {
+ "default": "https://d66.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dafont.com/img/favicon.ico",
+ "name": "DaFont",
+ "triggers": [
+ "dafont"
+ ],
+ "regions": {
+ "default": "http://www.dafont.com/search.php?psize=m&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dn.se/favicon.ico",
+ "name": "Dagens Nyheter",
+ "triggers": [
+ "dn"
+ ],
+ "regions": {
+ "default": "https://www.dn.se/extern-sok/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dagobah.net/favicon.ico",
+ "name": "Dagobah Flash Gallery",
+ "triggers": [
+ "dagobah"
+ ],
+ "regions": {
+ "default": "http://dagobah.net/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dailymed.nlm.nih.gov/dailymed/images/favicons/favicon-32x32.png",
+ "name": "DailyMed",
+ "triggers": [
+ "dailymed"
+ ],
+ "regions": {
+ "default": "https://dailymed.nlm.nih.gov/dailymed/search.cfm?startswith={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://static1-ssl.dmcdn.net/images/neon/favicons/android-icon-192x192.png.v55f7db2bb72c483b2",
+ "name": "Dailymotion",
+ "triggers": [
+ "dm",
+ "dailymotion"
+ ],
+ "regions": {
+ "default": "http://www.dailymotion.com/relevance/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.daleya.com/favicon.ico",
+ "name": "Daleya",
+ "triggers": [
+ "daleya"
+ ],
+ "regions": {
+ "default": "http://www.daleya.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.danas.rs/wp-content/uploads/2018/01/favicon.png",
+ "name": "Danas.rs",
+ "triggers": [
+ "danas"
+ ],
+ "regions": {
+ "default": "http://www.danas.rs/danasrs.23.html?type=search&period=Y&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//img.danawa.com/new/danawa_main/v1/img/danawa_favicon.ico",
+ "name": "Danawa",
+ "triggers": [
+ "danawa"
+ ],
+ "regions": {
+ "default": "http://search.danawa.com/dsearch.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//img.danawa.com/new/danawa_main/v1/img/danawa_favicon.ico",
+ "name": "Danawa",
+ "triggers": [
+ "dnw"
+ ],
+ "regions": {
+ "default": "http://search.danawa.com/dsearch.php?k1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://danbooru.donmai.us/favicon.ico",
+ "name": "Danbooru",
+ "triggers": [
+ "danbooru"
+ ],
+ "regions": {
+ "default": "https://danbooru.donmai.us/posts?tags={{{term}}}&page="
+ }
+ },
+ {
+ "favicon": "https://datacvr.virk.dk/data/profiles/virkdata2/themes/custom/virkdata/favicon.ico",
+ "name": "Danish Central Business Register",
+ "triggers": [
+ "cvr"
+ ],
+ "regions": {
+ "default": "https://datacvr.virk.dk/data/visninger?soeg={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.daniweb.com/favicon.ico",
+ "name": "DaniWeb",
+ "triggers": [
+ "daniweb"
+ ],
+ "regions": {
+ "default": "https://www.daniweb.com/search/index?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dr.dk/favicon.ico",
+ "name": "Danmark Radio",
+ "triggers": [
+ "drdk"
+ ],
+ "regions": {
+ "default": "https://www.dr.dk/search/Result?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.danmurphys.com.au/dm/search/favicon.ico",
+ "name": "danmurphys",
+ "triggers": [
+ "danmurphys"
+ ],
+ "regions": {
+ "default": "https://www.danmurphys.com.au/dm/search/dm_search_results_gallery.jsp?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dsn.dk/favicon.ico",
+ "name": "Dansk Sprognævn",
+ "triggers": [
+ "dsn"
+ ],
+ "regions": {
+ "default": "https://dsn.dk/?retskriv={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dsn.dk/favicon.ico",
+ "name": "Dansk Sprognævn",
+ "triggers": [
+ "retskriv"
+ ],
+ "regions": {
+ "default": "https://dsn.dk/?retskriv={{{term}}}&ae=0"
+ }
+ },
+ {
+ "favicon": "http://danstonchat.com/themes/danstonchat2016/images/favicon.png",
+ "name": "DansTonChat",
+ "triggers": [
+ "dtc"
+ ],
+ "regions": {
+ "default": "http://danstonchat.com/search.html?search= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dariawiki.org/favicon.ico",
+ "name": "Daria Wiki",
+ "triggers": [
+ "daria"
+ ],
+ "regions": {
+ "default": "http://www.dariawiki.org/wiki/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "//d2lzb5v10mb0lj.cloudfront.net/dhc/common/favicon.ico",
+ "name": "Dark Horse Comics",
+ "triggers": [
+ "darkhorse"
+ ],
+ "regions": {
+ "default": "http://www.darkhorse.com/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://darksouls2.wikidot.com/local--favicon/favicon.gif",
+ "name": "Dark Souls 2 Wiki",
+ "triggers": [
+ "ds2w"
+ ],
+ "regions": {
+ "default": "http://darksouls2.wikidot.com/search:site/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://darksouls3.wikidot.com/local--favicon/favicon.gif",
+ "name": "Dark Souls 3 Wiki",
+ "triggers": [
+ "ds3w"
+ ],
+ "regions": {
+ "default": "http://darksouls3.wikidot.com/search:site/a/p/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://darksouls.wikidot.com/local--favicon/favicon.gif",
+ "name": "Dark Souls Wiki",
+ "triggers": [
+ "dsw"
+ ],
+ "regions": {
+ "default": "http://darksouls.wikidot.com/search:site/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dark-world.ru/favicon.gif",
+ "name": "Dark-World.ru",
+ "triggers": [
+ "dwru"
+ ],
+ "regions": {
+ "default": "http://dark-world.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://int.darkbyte.ru/favicon.ico",
+ "name": "Darkbyte",
+ "triggers": [
+ "dbyte"
+ ],
+ "regions": {
+ "default": "http://int.darkbyte.ru/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.darklyrics.com/favicon.ico",
+ "name": "DarkLyrics.com",
+ "triggers": [
+ "darklyrics"
+ ],
+ "regions": {
+ "default": "http://www.darklyrics.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dartlang.org/assets/shared/dart/icon/64.png",
+ "name": "dartlang",
+ "triggers": [
+ "dart"
+ ],
+ "regions": {
+ "default": "https://www.dartlang.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pub.dartlang.org/static/favicon.ico",
+ "name": "Dartlang Packages",
+ "triggers": [
+ "dpub"
+ ],
+ "regions": {
+ "default": "https://pub.dartlang.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.library.dartmouth.edu/themes/custom/bootstrap_dcl/favicon.ico",
+ "name": "Dartmouth College Libraries",
+ "triggers": [
+ "dartlib"
+ ],
+ "regions": {
+ "default": "http://libcat.dartmouth.edu/search/X?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.darty.com/favicon.ico",
+ "name": "Darty",
+ "triggers": [
+ "darty"
+ ],
+ "regions": {
+ "default": "http://www.darty.com/nav/recherche?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dastelefonbuch.de/assets/android-icon-e6ea95827b47a6ecec9233cafdf9ddd7.png",
+ "name": "Das Telefonbuch",
+ "triggers": [
+ "telefonbuch"
+ ],
+ "regions": {
+ "default": "http://www.dastelefonbuch.de/?pid=OpenSearch&cmd=search&kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//oe-static.de/img/favicon.ico",
+ "name": "Das Örtliche",
+ "triggers": [
+ "doe"
+ ],
+ "regions": {
+ "default": "http://www.dasoertliche.de/Controller?form_name=search_inv&page=5&context=4&action=43&ph={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dashradio.com/wp-content/themes/dash-2.1.3/favicon.png",
+ "name": "Dash Radio",
+ "triggers": [
+ "dashradio"
+ ],
+ "regions": {
+ "default": "http://dashradio.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dasnic.com/img/favicon.ico",
+ "name": "Dasnic",
+ "triggers": [
+ "dasnic"
+ ],
+ "regions": {
+ "default": "http://dasnic.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.3ds.com/favicon.ico",
+ "name": "Dassault Systèmes",
+ "triggers": [
+ "3ds"
+ ],
+ "regions": {
+ "default": "http://www.3ds.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://data.bnf.fr/data/dd48dfa9b4152def9cec575049ba6d57/favicon.png",
+ "name": "Data Bnf",
+ "triggers": [
+ "dbnf"
+ ],
+ "regions": {
+ "default": "http://data.bnf.fr/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalog.data.gov/fanstatic/datagovtheme/images/favicon.ico",
+ "name": "Data.Gov",
+ "triggers": [
+ "datagov"
+ ],
+ "regions": {
+ "default": "http://catalog.data.gov/dataset?q={{{term}}}&sort=score+desc%2C+name+asc"
+ }
+ },
+ {
+ "favicon": "https://www.databazeknih.cz/icon.png",
+ "name": "Databaze knih",
+ "triggers": [
+ "dbk"
+ ],
+ "regions": {
+ "default": "http://www.databazeknih.cz/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.databaze-her.cz/templates/resources/images/icons/site/favicon.ico",
+ "name": "Databáze her",
+ "triggers": [
+ "databaze-her"
+ ],
+ "regions": {
+ "default": "http://www.databaze-her.cz/hledani/?fraze={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.datacite.org/favicon.ico",
+ "name": "DataCite",
+ "triggers": [
+ "datacite"
+ ],
+ "regions": {
+ "default": "https://search.datacite.org/works?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.datasheetarchive.com/favicon.ico",
+ "name": "Datasheet Archive",
+ "triggers": [
+ "datasheetarchive"
+ ],
+ "regions": {
+ "default": "http://www.datasheetarchive.com/{{{term}}}-datasheet.html"
+ }
+ },
+ {
+ "favicon": "http://datasheet4u.com/favicon.ico",
+ "name": "Datasheet4u",
+ "triggers": [
+ "d4u"
+ ],
+ "regions": {
+ "default": "http://datasheet4u.com/share_search.php?sWord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.datasheetlib.com/favicon.ico",
+ "name": "Datasheetlib",
+ "triggers": [
+ "datalib"
+ ],
+ "regions": {
+ "default": "http://www.datasheetlib.com/search/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://assets.datazar.com/interface/images/logos/crown150x150.png",
+ "name": "Datazar",
+ "triggers": [
+ "datazar"
+ ],
+ "regions": {
+ "default": "https://www.datazar.com/search/data/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dateinasia.com/favicon.ico",
+ "name": "Date In Asia",
+ "triggers": [
+ "dateinasia"
+ ],
+ "regions": {
+ "default": "http://dateinasia.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.datev.de/favicon.ico",
+ "name": "DATEV",
+ "triggers": [
+ "datev"
+ ],
+ "regions": {
+ "default": "https://www.datev.de/web/de/suche/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//hw-static.datpiff.com/images/apple-touch-icon-blue.png",
+ "name": "Datpiff",
+ "triggers": [
+ "datpiff"
+ ],
+ "regions": {
+ "default": "http://datpiff.com/mixtapes-search?criteria={{{term}}}&sort=rating"
+ }
+ },
+ {
+ "favicon": "http://search.daum.net/favicon.ico",
+ "name": "Daum",
+ "triggers": [
+ "daum"
+ ],
+ "regions": {
+ "default": "http://search.daum.net/search?w=tot&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://engdic.daum.net/favicon.ico",
+ "name": "Daum Dictionary",
+ "triggers": [
+ "daumdic"
+ ],
+ "regions": {
+ "default": "http://engdic.daum.net/dicen/search.do?chset=utf8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://map.daum.net/favicon.ico",
+ "name": "Daum Map",
+ "triggers": [
+ "dmap"
+ ],
+ "regions": {
+ "default": "http://map.daum.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dacardworld.com/favicon.ico",
+ "name": "Dave & Adam's",
+ "triggers": [
+ "dacardworld"
+ ],
+ "regions": {
+ "default": "http://www.dacardworld.com/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://davesgarden.com/favicon.ico",
+ "name": "Dave's Garden",
+ "triggers": [
+ "davesgarden"
+ ],
+ "regions": {
+ "default": "http://davesgarden.com/sitewidesearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/davidnesher.com.ar/wp-content/uploads/2015/08/favicon.png?fit=32,32",
+ "name": "David Nesher Blog",
+ "triggers": [
+ "davidnesher"
+ ],
+ "regions": {
+ "default": "http://davidnesher.com.ar/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://davidsw.com/favicon.ico",
+ "name": "DavidSW",
+ "triggers": [
+ "davidsw"
+ ],
+ "regions": {
+ "default": "http://davidsw.com/?s={{{term}}}&post_type=product"
+ }
+ },
+ {
+ "favicon": "https://daviswiki.org/static/theme/img/favicons/favicon-16x16.png",
+ "name": "DavisWiki",
+ "triggers": [
+ "dwiki",
+ "daviswiki"
+ ],
+ "regions": {
+ "default": "https://daviswiki.org/_rsearch/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://de.dawanda.com/assets/images/favicon-16x16.png",
+ "name": "DaWanda",
+ "triggers": [
+ "dawanda"
+ ],
+ "regions": {
+ "default": "http://de.dawanda.com/search/search?as=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/dba/img/favicon.ico?v=60c86c1ab344",
+ "name": "DBA StackExchange",
+ "triggers": [
+ "dbasx"
+ ],
+ "regions": {
+ "default": "http://dba.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dblp.uni-trier.de/favicon.ico",
+ "name": "DBLP",
+ "triggers": [
+ "dblp.pub"
+ ],
+ "regions": {
+ "default": "http://dblp.uni-trier.de/search/publ?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://dblp.uni-trier.de/favicon.ico",
+ "name": "DBLP Computer Science Bibliography",
+ "triggers": [
+ "dblp"
+ ],
+ "regions": {
+ "default": "http://dblp.uni-trier.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.dbpedia.org/sites/default/files/favicon-32x32.png",
+ "name": "DBPedia",
+ "triggers": [
+ "dbpedia"
+ ],
+ "regions": {
+ "default": "http://wiki.dbpedia.org/Search?phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dccomics.com/sites/all/themes/dc_comics_bp/favicon.ico",
+ "name": "DC Comics",
+ "triggers": [
+ "dccomics"
+ ],
+ "regions": {
+ "default": "http://www.dccomics.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/marvel_dc/images/6/64/Favicon.ico/revision/latest?cb=20141105183519",
+ "name": "DC Wiki",
+ "triggers": [
+ "dcwiki"
+ ],
+ "regions": {
+ "default": "http://dc.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.dcinside.com/favicon.ico",
+ "name": "dcinside",
+ "triggers": [
+ "dcinside"
+ ],
+ "regions": {
+ "default": "http://search.dcinside.com/combine/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wstatic.dcinside.com/gallery/skin/main/logo_icon.ico",
+ "name": "DCinside wiki",
+ "triggers": [
+ "dcw"
+ ],
+ "regions": {
+ "default": "http://wiki.dcinside.com/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.dcrainmaker.com/images/2017/03/dcrainmaker-dc-logo-square.png",
+ "name": "dcrainmaker.com",
+ "triggers": [
+ "dcr"
+ ],
+ "regions": {
+ "default": "http://www.dcrainmaker.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.dd-wrt.com/favicon.ico",
+ "name": "DD-WRT Wiki",
+ "triggers": [
+ "ddwrt"
+ ],
+ "regions": {
+ "default": "https://www.dd-wrt.com/wiki/index.php/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ddl-music.org/favicon.ico",
+ "name": "DDL-Music",
+ "triggers": [
+ "ddlm"
+ ],
+ "regions": {
+ "default": "http://ddl-music.org/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.debijbel.nl/zoeken/assets/images/favicon.ico",
+ "name": "De Bijbel",
+ "triggers": [
+ "bijbel"
+ ],
+ "regions": {
+ "default": "https://www.debijbel.nl/zoeken/?q={{{term}}}&v=NBV&t=bible"
+ }
+ },
+ {
+ "favicon": "https://static5.eniro.com/dgs/img/favicon.ico",
+ "name": "De gule sider",
+ "triggers": [
+ "dgs"
+ ],
+ "regions": {
+ "default": "http://www.degulesider.dk/person/resultat/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.delijn.be/favicon.png",
+ "name": "De Lijn",
+ "triggers": [
+ "delijn"
+ ],
+ "regions": {
+ "default": "https://www.delijn.be/nl/zoekresultaten/index.html?searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dsofront.akamaized.net/extra/assets/img/faviconLive.ico",
+ "name": "De Standaard",
+ "triggers": [
+ "standaard"
+ ],
+ "regions": {
+ "default": "https://www.standaard.be/zoeken?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dsofront.akamaized.net/extra/assets/img/faviconLive.ico",
+ "name": "De Standaard",
+ "triggers": [
+ "ds"
+ ],
+ "regions": {
+ "default": "https://www.standaard.be/zoeken?keyword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.findfind.it/sites/all/themes/custom/theme_ffit/favicon.ico",
+ "name": "de.serchilo.net",
+ "triggers": [
+ "serch"
+ ],
+ "regions": {
+ "default": "http://de.serchilo.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wikihow.com/favicon.ico",
+ "name": "de.wikihow.com",
+ "triggers": [
+ "dewikihow"
+ ],
+ "regions": {
+ "default": "https://de.wikihow.com/Special:GoogSearch?ie=UTF-8&q={{{term}}}&sa=Suche"
+ }
+ },
+ {
+ "favicon": "http://de.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "de.wikipedia.org",
+ "triggers": [
+ "dewiki"
+ ],
+ "regions": {
+ "default": "http://de.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://de.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "de.wikipedia.org",
+ "triggers": [
+ "dew"
+ ],
+ "regions": {
+ "default": "https://de.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pmcdeadline2.files.wordpress.com/2018/06/cropped-deadline-logo.png?w=192",
+ "name": "Deadline Hollywood",
+ "triggers": [
+ "deadline"
+ ],
+ "regions": {
+ "default": "https://deadline.com/results/#?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--hYvXo8Vk--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/rnxqtvv6advgidzfs6am.png",
+ "name": "Deadspin",
+ "triggers": [
+ "deadspin"
+ ],
+ "regions": {
+ "default": "https://deadspin.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://library.deakin.edu.au/favicon.ico",
+ "name": "Deakin University Library",
+ "triggers": [
+ "deakin"
+ ],
+ "regions": {
+ "default": "http://library.deakin.edu.au/search/?searchtype=X&SORT=D&searcharg={{{term}}}&searchscope=1"
+ }
+ },
+ {
+ "favicon": "https://dealnews.a.ssl.fastly.net/images/dealnews/signal.png",
+ "name": "Deal News",
+ "triggers": [
+ "dealnews"
+ ],
+ "regions": {
+ "default": "http://dealnews.com/search.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dealabs.com/favicon.ico",
+ "name": "Dealabs",
+ "triggers": [
+ "dealabs"
+ ],
+ "regions": {
+ "default": "https://www.dealabs.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dealagora.com/icons/favicon-96x96.png",
+ "name": "DealAgora",
+ "triggers": [
+ "dealagora"
+ ],
+ "regions": {
+ "default": "https://www.dealagora.com/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.nytimes.com/favicon.ico",
+ "name": "DealBook",
+ "triggers": [
+ "deal"
+ ],
+ "regions": {
+ "default": "https://dealbook.nytimes.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dx.com/favicon.ico",
+ "name": "DealExtreme",
+ "triggers": [
+ "dx"
+ ],
+ "regions": {
+ "default": "https://www.dx.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dx.com/favicon.ico",
+ "name": "DealExtreme",
+ "triggers": [
+ "dealextreme"
+ ],
+ "regions": {
+ "default": "https://dx.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dealspricer.com/images/common/favicon.ico?1496d780-7bbf-11e8-b275-b7c33828ee1d",
+ "name": "DealsPricer",
+ "triggers": [
+ "dealspricer"
+ ],
+ "regions": {
+ "default": "http://www.dealspricer.com/search?q={{{term}}}&utm_source=ddgbang&utm_medium=organic"
+ }
+ },
+ {
+ "favicon": "https://www.dealtaker.com/favicon.ico",
+ "name": "DealTaker",
+ "triggers": [
+ "coupons"
+ ],
+ "regions": {
+ "default": "http://www.dealtaker.com/site/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dearcomputer.nl/favicon.ico",
+ "name": "Dear Computer Google Image Ripper SFW",
+ "triggers": [
+ "gir"
+ ],
+ "regions": {
+ "default": "http://dearcomputer.nl/gir/?q={{{term}}}&s=8&imgtype=any"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/deathbattle/images/6/64/Favicon.ico/revision/latest?cb=20171213164419",
+ "name": "DEATH BATTLE Wiki",
+ "triggers": [
+ "dbwiki"
+ ],
+ "regions": {
+ "default": "http://deathbattle.wikia.com/wiki/Special:Search?fulltext=Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.debate.org/favicon.ico",
+ "name": "debate.org",
+ "triggers": [
+ "debate"
+ ],
+ "regions": {
+ "default": "http://www.debate.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.debenhams.com/favicon.ico",
+ "name": "Debenhams",
+ "triggers": [
+ "debenhams"
+ ],
+ "regions": {
+ "default": "http://www.debenhams.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.debian.org/favicon.ico",
+ "name": "Debian",
+ "triggers": [
+ "debian"
+ ],
+ "regions": {
+ "default": "https://search.debian.org/cgi-bin/omega?DB=en&P={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.debian.org/favicon.ico",
+ "name": "Debian",
+ "triggers": [
+ "debfiles"
+ ],
+ "regions": {
+ "default": "https://packages.debian.org/search?searchon=contents&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.debian.org/favicon.ico",
+ "name": "Debian Bug Tracking System",
+ "triggers": [
+ "dbts",
+ "dbugs",
+ "debbug"
+ ],
+ "regions": {
+ "default": "https://bugs.debian.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.debian.org/favicon.ico",
+ "name": "Debian Bug Tracking System",
+ "triggers": [
+ "bts"
+ ],
+ "regions": {
+ "default": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://codesearch.debian.net/favicon.ico",
+ "name": "Debian Code Search",
+ "triggers": [
+ "dsource"
+ ],
+ "regions": {
+ "default": "https://codesearch.debian.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://qa.debian.org/favicon.ico",
+ "name": "Debian Developer's pkgs overview",
+ "triggers": [
+ "ddev"
+ ],
+ "regions": {
+ "default": "https://qa.debian.org/developer.php?login={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.debian.org/favicon.ico",
+ "name": "Debian file search",
+ "triggers": [
+ "dfiles"
+ ],
+ "regions": {
+ "default": "https://packages.debian.org/search?section=all&arch=any&searchon=contents&keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://forums.debian.net/favicon.ico",
+ "name": "Debian Forums",
+ "triggers": [
+ "debianforums"
+ ],
+ "regions": {
+ "default": "http://forums.debian.net/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lists.debian.org/favicon.ico",
+ "name": "Debian mailing list archives",
+ "triggers": [
+ "debmla"
+ ],
+ "regions": {
+ "default": "https://lists.debian.org/debian-{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://lists.debian.org/favicon.ico",
+ "name": "Debian Mailing Lists",
+ "triggers": [
+ "debml"
+ ],
+ "regions": {
+ "default": "https://lists.debian.org/cgi-bin/search?query={{{term}}}&DEFAULTOP=and&author=&sort=relevance&HITSPERPAGE=10&language=en"
+ }
+ },
+ {
+ "favicon": "https://dyn.manpages.debian.org/favicon.ico",
+ "name": "Debian Manpages",
+ "triggers": [
+ "debman",
+ "dman"
+ ],
+ "regions": {
+ "default": "https://dyn.manpages.debian.org/jump?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://buildd.debian.org/favicon.ico",
+ "name": "Debian Package Auto-Building",
+ "triggers": [
+ "debbuildd"
+ ],
+ "regions": {
+ "default": "https://buildd.debian.org/status/package.php?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.debian.org/favicon.ico",
+ "name": "Debian Packages",
+ "triggers": [
+ "dpkg",
+ "deb",
+ "debpackages",
+ "dpackages",
+ "debianpack"
+ ],
+ "regions": {
+ "default": "https://packages.debian.org/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.debian.org/doc/favicon.ico",
+ "name": "Debian Policy Manual",
+ "triggers": [
+ "dpolicy"
+ ],
+ "regions": {
+ "default": "https://www.debian.org/doc/debian-policy {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://qa.debian.org/favicon.ico",
+ "name": "Debian Popularity Contest Statistics",
+ "triggers": [
+ "debpc"
+ ],
+ "regions": {
+ "default": "https://qa.debian.org/popcon.php?package={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://anonscm.debian.org/favicon.ico",
+ "name": "Debian Python Modules Team git repo",
+ "triggers": [
+ "dpmt"
+ ],
+ "regions": {
+ "default": "https://anonscm.debian.org/git/python-modules/packages/{{{term}}}.git"
+ }
+ },
+ {
+ "favicon": "https://security-tracker.debian.org/favicon.ico",
+ "name": "Debian Security Tracker",
+ "triggers": [
+ "dst"
+ ],
+ "regions": {
+ "default": "https://security-tracker.debian.org/tracker/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.debian.org/htdocs/favicon.ico",
+ "name": "debian.org",
+ "triggers": [
+ "debwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.debian.org/FrontPage?action=fullsearch&context=180&value={{{term}}}&titlesearch=Titles"
+ }
+ },
+ {
+ "favicon": "http://debtags.debian.net/favicon.ico",
+ "name": "DebTags",
+ "triggers": [
+ "dtag"
+ ],
+ "regions": {
+ "default": "http://debtags.debian.net/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.decathlon.co.uk/favicon.gif",
+ "name": "Decathlon",
+ "triggers": [
+ "decathlon"
+ ],
+ "regions": {
+ "default": "http://www.decathlon.co.uk/Buy/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.decathlon.es/favicon.gif",
+ "name": "Decathlon España",
+ "triggers": [
+ "decathlones"
+ ],
+ "regions": {
+ "default": "https://www.decathlon.es/Comprar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.decathlon.fr/favicon.gif",
+ "name": "Decathlon France",
+ "triggers": [
+ "decathlonfr"
+ ],
+ "regions": {
+ "default": "http://www.decathlon.fr/Acheter/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.decathlon.it/favicon.gif",
+ "name": "Decathlon Italia",
+ "triggers": [
+ "decathlonit"
+ ],
+ "regions": {
+ "default": "http://www.decathlon.it/Comprare/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Deciphered Melody",
+ "triggers": [
+ "decmel"
+ ],
+ "regions": {
+ "default": "http://suisei.kokidokom.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.decitre.fr/skin/frontend/decitre/default/favicon.ico",
+ "name": "Decitre",
+ "triggers": [
+ "decitre"
+ ],
+ "regions": {
+ "default": "http://www.decitre.fr/rechercher/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://decode.org/favicon.ico",
+ "name": "Decode",
+ "triggers": [
+ "rot13"
+ ],
+ "regions": {
+ "default": "http://decode.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.decodethis.com/favicon-16x16.png",
+ "name": "Decode This!",
+ "triggers": [
+ "vin"
+ ],
+ "regions": {
+ "default": "http://www.decodethis.com/VINdecoder/65/vin/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.decorordesign.com/wp-content/uploads/2016/01/cropped-Decorationy-300x300.png",
+ "name": "Decoration Ideas",
+ "triggers": [
+ "decorationy"
+ ],
+ "regions": {
+ "default": "http://www.decorationy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dedalus.usp.br/favicon.ico",
+ "name": "Dedalus - Catálogo Geral",
+ "triggers": [
+ "ded"
+ ],
+ "regions": {
+ "default": "http://dedalus.usp.br/F/2GT4AME1FV9M25Q886NF9PCLB2BK39NF8XMFRXNHCQIL1JX5IG-19193?func=find-b&request={{{term}}}&find_code=WRD&adjacent=N&local_base=USP01&x=39&y=11&filter_code_1=WLN&filter_request_1=&filter_code_2=WYR&filter_request_2=&filter_code_3=WYR&filter_request_3=&filter_code_4=WMA&filter_request_4=&filter_code_5=WBA&filter_request_5="
+ }
+ },
+ {
+ "favicon": "http://www.deejay.de/smarty/templates/img/favicon.ico",
+ "name": "Deejay.de",
+ "triggers": [
+ "djay"
+ ],
+ "regions": {
+ "default": "http://www.deejay.de/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.deepdotweb.com/wp-content/uploads/2014/05/favicon.ico",
+ "name": "DeepDotWeb",
+ "triggers": [
+ "ddw"
+ ],
+ "regions": {
+ "default": "https://www.deepdotweb.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://deeperweb.com/web-images/dw-favicon-16.png",
+ "name": "Deeper Web",
+ "triggers": [
+ "dw"
+ ],
+ "regions": {
+ "default": "http://deeperweb.com/results.php?cx=!004415538554621685521:vgwa9iznfuo&cof=FORID:11;NB:1&ie=UTF-8&q={{{term}}} &as_qdr="
+ }
+ },
+ {
+ "favicon": "http://e-cdn-files.deezer.com/cache/images/common/favicon/favicon-196x196.222c146b8a8155fed8f1150971dbfbd1.png",
+ "name": "Deezer",
+ "triggers": [
+ "deezer"
+ ],
+ "regions": {
+ "default": "http://www.deezer.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.deguest.asia/favicon.ico",
+ "name": "DEGUEST Angel Investment",
+ "triggers": [
+ "dgst"
+ ],
+ "regions": {
+ "default": "http://www.deguest.asia/en/component/search/?searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.deichmann.com/favicon.ico",
+ "name": "Deichmann (Deutschland)",
+ "triggers": [
+ "dei"
+ ],
+ "regions": {
+ "default": "https://www.deichmann.com/DE/de/shop/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dejure.org/favicon.ico",
+ "name": "Dejure",
+ "triggers": [
+ "dejure"
+ ],
+ "regions": {
+ "default": "https://dejure.org/cgi-bin/suche?Suchenach={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dejure.org/favicon.ico",
+ "name": "Dejure.org",
+ "triggers": [
+ "durhg"
+ ],
+ "regions": {
+ "default": "http://dejure.org/cgi-bin/suche?Suchenach={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://local.delcotimes.com/assets/touch-icon-192x192.png",
+ "name": "Delaware County Daily Times",
+ "triggers": [
+ "delcotimes",
+ "dailytimes"
+ ],
+ "regions": {
+ "default": "http://www.delcotimes.com/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dlc.lib.de.us/client/assets/4.5.1/ctx/favicon.ico",
+ "name": "Delaware Library Search",
+ "triggers": [
+ "delib"
+ ],
+ "regions": {
+ "default": "http://dlc.lib.de.us/client/default/search/results?qu={{{term}}}&te="
+ }
+ },
+ {
+ "favicon": "https://delcat.worldcat.org/favicon.ico",
+ "name": "DELCAT Discovery",
+ "triggers": [
+ "delcat"
+ ],
+ "regions": {
+ "default": "https://delcat.worldcat.org/search?qt=wc_org_delcat&q={{{term}}}&scope=0&oldscope=0&wcsbtn2w=Search&fq=&dblist=1461%2C1542%2C638"
+ }
+ },
+ {
+ "favicon": "https://cdn.delectable.com/images/favicon-2c864262.png",
+ "name": "Delectable",
+ "triggers": [
+ "delectable"
+ ],
+ "regions": {
+ "default": "https://delectable.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.delfi.lt/favicon.ico",
+ "name": "Delfi",
+ "triggers": [
+ "delfi",
+ "delflt"
+ ],
+ "regions": {
+ "default": "http://www.delfi.lt/paieska/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://otsing.delfi.ee/favicon.ico",
+ "name": "Delfi.ee",
+ "triggers": [
+ "delfiee"
+ ],
+ "regions": {
+ "default": "http://otsing.delfi.ee/find?c=dns&q={{{term}}} &x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://del.icio.us/img/fav-icon.png",
+ "name": "delicious",
+ "triggers": [
+ "delicious"
+ ],
+ "regions": {
+ "default": "https://del.icio.us/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://delicious-fruit.com/favicon.ico",
+ "name": "Delicious Fruit",
+ "triggers": [
+ "delfruit"
+ ],
+ "regions": {
+ "default": "http://delicious-fruit.com/ratings/full.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.dell.com/favicon.ico",
+ "name": "Dell",
+ "triggers": [
+ "dell"
+ ],
+ "regions": {
+ "default": "http://search.dell.com/results.aspx?s=gen&c=us&l=en&cs=&k={{{term}}}&cat=all"
+ }
+ },
+ {
+ "favicon": "http://search.euro.dell.com/favicon.ico",
+ "name": "Dell UK",
+ "triggers": [
+ "delluk"
+ ],
+ "regions": {
+ "default": "http://search.euro.dell.com/results.aspx?s=gen&c=uk&l=en&cs=&k={{{term}}}&cat=all&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.delphibasics.co.uk/favicon.ico",
+ "name": "Delphi Basics",
+ "triggers": [
+ "delphi"
+ ],
+ "regions": {
+ "default": "http://www.delphibasics.co.uk/RTL.asp?Name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.commander1024.de/favicon.ico",
+ "name": "Dem Commander1024 sein Blog",
+ "triggers": [
+ "c1024"
+ ],
+ "regions": {
+ "default": "http://www.commander1024.de/wordpress/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.demeure-et-jardin.com/pub/design/favicon.jpg",
+ "name": "Demeure et Jardin",
+ "triggers": [
+ "demeureetjardin"
+ ],
+ "regions": {
+ "default": "http://www.demeure-et-jardin.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.democracynow.org/favicon.ico",
+ "name": "Democracy Now!",
+ "triggers": [
+ "democracynow"
+ ],
+ "regions": {
+ "default": "https://www.democracynow.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.demonoid.pw/favicon.png",
+ "name": "Demonoid",
+ "triggers": [
+ "demonoid"
+ ],
+ "regions": {
+ "default": "https://www.demonoid.pw/files/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dbastatic.dk/Content/dba.ico?2.0.0.0-9210388",
+ "name": "Den Blå Avis",
+ "triggers": [
+ "dba"
+ ],
+ "regions": {
+ "default": "http://www.dba.dk/soeg/?soeg={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ordnet.dk/favicon.ico",
+ "name": "Den Danske Ordbog",
+ "triggers": [
+ "dkord",
+ "ordnet"
+ ],
+ "regions": {
+ "default": "http://ordnet.dk/ddo/ordbog?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ordnet.dk/favicon.ico",
+ "name": "Den Danske Ordbog",
+ "triggers": [
+ "ddo"
+ ],
+ "regions": {
+ "default": "http://ordnet.dk/ddo/ordbog?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.denstoredanske.dk/favicon.ico",
+ "name": "Den Store Danske",
+ "triggers": [
+ "dsd"
+ ],
+ "regions": {
+ "default": "http://www.denstoredanske.dk/Special:Opslag?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freitag.de/%20%20theme%20%20freitag.theme/build/assets/img/favicon.ico",
+ "name": "Der Freitag",
+ "triggers": [
+ "freitag"
+ ],
+ "regions": {
+ "default": "https://www.freitag.de/@@search?SearchableText={{{term}}}&SubmitSearch=Suche"
+ }
+ },
+ {
+ "favicon": "http://referenceworks.brillonline.com/static/img/Reference-favicon.ico;jsessionid=6ABA0A0E60261A2ADF2235991E052445",
+ "name": "Der Neue Pauly",
+ "triggers": [
+ "dnp"
+ ],
+ "regions": {
+ "default": "http://referenceworks.brillonline.com/search?s.q={{{term}}}&s.f.s2_parent=s.f.book.der-neue-pauly"
+ }
+ },
+ {
+ "favicon": "http://www.der-postillon.com/favicon.ico",
+ "name": "Der Postillon",
+ "triggers": [
+ "postillon"
+ ],
+ "regions": {
+ "default": "http://www.der-postillon.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://deredactie.be/etc/designs/vrtnieuws/clientlib-site/dist/assets/images/favicon/favicon-192.png",
+ "name": "deredactie.be",
+ "triggers": [
+ "deredactie"
+ ],
+ "regions": {
+ "default": "https://deredactie.be/cm/vrtnieuws/1.516538?text={{{term}}}&action=submit"
+ }
+ },
+ {
+ "favicon": "//derpicdn.net/favicon.svg",
+ "name": "Derpibooru",
+ "triggers": [
+ "derpibooru"
+ ],
+ "regions": {
+ "default": "https://derpibooru.org/search?utf8=%E2%9C%93&sbq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//derpicdn.net/favicon.svg",
+ "name": "Derpibooru",
+ "triggers": [
+ "dpb"
+ ],
+ "regions": {
+ "default": "https://derpibooru.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//derpicdn.net/favicon.svg",
+ "name": "Derpibooru.org",
+ "triggers": [
+ "derpibooruorg"
+ ],
+ "regions": {
+ "default": "https://derpibooru.org/search?utf8=✓&sbq= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "//at.staticfiles.at/img/appicons/dst-228-04fbd25706.png",
+ "name": "derStandard.at",
+ "triggers": [
+ "derstandard"
+ ],
+ "regions": {
+ "default": "https://derstandard.at/suche/?query={{{term}}}&ressortId=0&status=AktivArchiv&period=All"
+ }
+ },
+ {
+ "favicon": "http://descriptionari.com/favicon.ico",
+ "name": "Descriptionari",
+ "triggers": [
+ "desc"
+ ],
+ "regions": {
+ "default": "http://descriptionari.com/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://blog.desdelinux.net/wp-content/uploads/2018/04/cropped-desdelinux-192x192.png",
+ "name": "DesdeLinux",
+ "triggers": [
+ "dl"
+ ],
+ "regions": {
+ "default": "http://blog.desdelinux.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dexigner.com/favicon.ico",
+ "name": "Design Directory",
+ "triggers": [
+ "designdirectory"
+ ],
+ "regions": {
+ "default": "http://www.dexigner.com/directory/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2si0b2wb4t75n.cloudfront.net/assets/favicon-a02887cb11cc394c76beef623eeb2e4c.png",
+ "name": "Designer News",
+ "triggers": [
+ "designernews"
+ ],
+ "regions": {
+ "default": "https://www.designernews.co/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2si0b2wb4t75n.cloudfront.net/assets/favicon-a02887cb11cc394c76beef623eeb2e4c.png",
+ "name": "Designer News",
+ "triggers": [
+ "dnews"
+ ],
+ "regions": {
+ "default": "https://www.designernews.co/search#stq={{{term}}}&stp=1"
+ }
+ },
+ {
+ "favicon": "http://www.desiringgod.org/assets/2/badges/dg_icon_152x152-86eef022b0098acffb7bede4e3b6d4c41078103557c7ba2608c51fd4a6f84edc.png",
+ "name": "Desiring God",
+ "triggers": [
+ "dg"
+ ],
+ "regions": {
+ "default": "http://www.desiringgod.org/search/results?utf8=%E2%9C%93&search_source=navbar&q={{{term}}}#gsc.tab=0&gsc.q=acfdabcg&gsc.page=1"
+ }
+ },
+ {
+ "favicon": "https://deskthority.net/favicon.ico",
+ "name": "Deskthority Wiki",
+ "triggers": [
+ "dt"
+ ],
+ "regions": {
+ "default": "https://deskthority.net/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://deskthority.net/favicon.ico",
+ "name": "Deskthority Wiki",
+ "triggers": [
+ "dthority"
+ ],
+ "regions": {
+ "default": "http://deskthority.net/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://destinonegocio.com/wp-content/themes/destinonegocio/favicons/favicon.ico",
+ "name": "DestinoNegocio",
+ "triggers": [
+ "destinonegocio"
+ ],
+ "regions": {
+ "default": "http://destinonegocio.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bulk2.destructoid.com/img/2015/ico/destructoid/favicon.png",
+ "name": "Destructoid",
+ "triggers": [
+ "destructoid"
+ ],
+ "regions": {
+ "default": "https://www.destructoid.com/search.phtml?cx=009275597616460404995%3A_iu6yjvsnom&cof=FORID%3A11&q={{{term}}}&sa=Search&siteurl=http%3A%2F%2Fwww.destructoid.com%2F"
+ }
+ },
+ {
+ "favicon": "https://www.img-bahn.de/s3/prod/v/img/favicon.ico",
+ "name": "Deutsche Bahn Reiseauskunft",
+ "triggers": [
+ "bahn"
+ ],
+ "regions": {
+ "default": "https://reiseauskunft.bahn.de/bin/query.exe/dn?S=&Z={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.deutsche-biographie.de/favicon.ico",
+ "name": "Deutsche Biographie (NDB/ADB)",
+ "triggers": [
+ "ndb"
+ ],
+ "regions": {
+ "default": "https://www.deutsche-biographie.de/search?name={{{term}}}&kat=ndbadb&beruf=&orte=&geburtsjahr=&todesjahr=&gnd=&st=erw&facets=&cf=10&number=0&ot=&sl=[]&sort="
+ }
+ },
+ {
+ "favicon": "https://www.deutsche-digitale-bibliothek.de/appStatic/PhInYR1sfTrWQLdFdUrjTTyJBsIuPAmLecnbkynhXrS.ico",
+ "name": "Deutsche Digitale Bibliothek",
+ "triggers": [
+ "ddb"
+ ],
+ "regions": {
+ "default": "https://www.deutsche-digitale-bibliothek.de/searchresults?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://portal.dnb.de/favicon.ico",
+ "name": "Deutsche National Bibliothek",
+ "triggers": [
+ "dnb"
+ ],
+ "regions": {
+ "default": "https://portal.dnb.de/opac.htm?query={{{term}}}&method=simpleSearch"
+ }
+ },
+ {
+ "favicon": "http://drw-www.adw.uni-heidelberg.de/favicon.ico",
+ "name": "Deutsches Rechtswörterbuch",
+ "triggers": [
+ "drw"
+ ],
+ "regions": {
+ "default": "http://drw-www.adw.uni-heidelberg.de/drw-cgi/zeige?term={{{term}}}&index=lemmata"
+ }
+ },
+ {
+ "favicon": "http://woerterbuchnetz.de/favicon.ico",
+ "name": "Deutsches Wörterbuch von Jacob Grimm und Wilhelm Grimm",
+ "triggers": [
+ "dwb"
+ ],
+ "regions": {
+ "default": "http://woerterbuchnetz.de/DWB/?lemma={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dev.opera.com/favicon.ico",
+ "name": "Dev.Opera",
+ "triggers": [
+ "devo"
+ ],
+ "regions": {
+ "default": "https://dev.opera.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dev.splunk.com/favicon.ico",
+ "name": "dev.splunk.com",
+ "triggers": [
+ "dev.splunk"
+ ],
+ "regions": {
+ "default": "http://dev.splunk.com/search/dev?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.devdocs.io/favicon.ico",
+ "name": "DevDocs",
+ "triggers": [
+ "dd",
+ "dev",
+ "devdocs"
+ ],
+ "regions": {
+ "default": "https://devdocs.io/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.developpez.com/template/favicon.ico",
+ "name": "developpez.com",
+ "triggers": [
+ "dvlp"
+ ],
+ "regions": {
+ "default": "http://www.developpez.com/recherche/?q={{{term}}}&sa.x=-1376&sa.y=-2&cx=006424388311999799839%3A-31tnf0iuqy&cof=FORID%3A9&ie=ISO-8859-1&siteurl=www.developpez.com%2F%3Fq%3Dmicrosoft&ref=&ss=1463j290467j10"
+ }
+ },
+ {
+ "favicon": "http://www.developpez.com/template/favicon.ico",
+ "name": "Developpez.com",
+ "triggers": [
+ "dvp"
+ ],
+ "regions": {
+ "default": "http://www.developpez.com/recherche/?cx=006424388311999799839%3A-31tnf0iuqy&cof=FORID%3A9&ie=ISO-8859-1&q={{{term}}}&sa=Rechercher"
+ }
+ },
+ {
+ "favicon": "http://www.developpez.com/template/favicon.ico",
+ "name": "Developpez.com",
+ "triggers": [
+ "developpez"
+ ],
+ "regions": {
+ "default": "http://www.developpez.com/recherche/?q={{{term}}}&sa.x=0&sa.y=0&sa=Go&cx=006424388311999799839:-31tnf0iuqy&cof=FORID:9&ie=ISO-8859-1&siteurl=www.developpez.com/"
+ }
+ },
+ {
+ "favicon": "https://i.deviantart.net/icons/da_favicon.ico",
+ "name": "DeviantArt",
+ "triggers": [
+ "da",
+ "deviantart"
+ ],
+ "regions": {
+ "default": "https://www.deviantart.com/browse/all/?section=&global=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.deviantart.net/icons/da_favicon.ico",
+ "name": "DeviantArt User",
+ "triggers": [
+ "dauser"
+ ],
+ "regions": {
+ "default": "https://{{{term}}}.deviantart.com/"
+ }
+ },
+ {
+ "favicon": "http://images.devilfinder.com/favicon.ico",
+ "name": "Devil Finder Images",
+ "triggers": [
+ "idf"
+ ],
+ "regions": {
+ "default": "http://images.devilfinder.com/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "//www.devontechnologies.com/fileadmin/templates/main_layout/images/favicon.ico",
+ "name": "DEVONtechnologies Forum",
+ "triggers": [
+ "devonforum"
+ ],
+ "regions": {
+ "default": "http://forum.devontechnologies.com/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://devot-ee.com/favicon.ico",
+ "name": "Devot:ee",
+ "triggers": [
+ "devotee"
+ ],
+ "regions": {
+ "default": "http://devot-ee.com/search/results?keywords={{{term}}}&addon_version_support=ee2"
+ }
+ },
+ {
+ "favicon": "http://www.dexigner.com/favicon.ico",
+ "name": "Dexigner",
+ "triggers": [
+ "dexigner"
+ ],
+ "regions": {
+ "default": "http://www.dexigner.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dexonline.ro/favicon.ico",
+ "name": "Dexonline",
+ "triggers": [
+ "dexonline"
+ ],
+ "regions": {
+ "default": "http://dexonline.ro/definitie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.dhresource.com/favicon.ico",
+ "name": "DHgate",
+ "triggers": [
+ "dhg"
+ ],
+ "regions": {
+ "default": "https://www.dhgate.com/wholesale/search.do?act=search&sus=&searchkey={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.dhresource.com/favicon.ico",
+ "name": "DHGate",
+ "triggers": [
+ "dhgate"
+ ],
+ "regions": {
+ "default": "https://www.dhgate.com/wholesale/search.do?act=search&supplierid=&isfactory=&sus=&searchkey={{{term}}}&catalog=#search"
+ }
+ },
+ {
+ "favicon": "https://nolp.dhl.de/nextt-online-public/en/static/v600/assets/img/favicon.ico",
+ "name": "DHL German",
+ "triggers": [
+ "dhlde"
+ ],
+ "regions": {
+ "default": "https://nolp.dhl.de/nextt-online-public/set_identcodes.do?lang=de&idc={{{term}}}&rfn=&extendedSearch=true"
+ }
+ },
+ {
+ "favicon": "data:;base64,iVBORw0KGgo=",
+ "name": "DHL Global Mail Tracking",
+ "triggers": [
+ "dhlgm"
+ ],
+ "regions": {
+ "default": "http://webtrack.dhlglobalmail.com/?trackingnumber={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://diablo2.diablowiki.net/favicon.ico",
+ "name": "Diablo II Wiki",
+ "triggers": [
+ "d2w"
+ ],
+ "regions": {
+ "default": "http://diablo2.diablowiki.net/index.php?title=Special%3ASearch&redirs=1&search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/diablo/images/6/64/Favicon.ico/revision/latest?cb=20150906171618",
+ "name": "Diablo Wiki",
+ "triggers": [
+ "diablo"
+ ],
+ "regions": {
+ "default": "http://diablo.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dialnet.unirioja.es/imagen/favicon16x16.png.pagespeed.ce.jbvj67saNY.png",
+ "name": "Dialnet",
+ "triggers": [
+ "dialnet"
+ ],
+ "regions": {
+ "default": "http://dialnet.unirioja.es/buscar/documentos?querysDismax.DOCUMENTAL_TODO={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ara.cat/2017/11/07/favARA.png?hash=eb9e50563a2dc7f11038cb9b1563c421328c6dea",
+ "name": "Diari Ara",
+ "triggers": [
+ "ara"
+ ],
+ "regions": {
+ "default": "http://www.ara.cat/cercador/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://diariohoy.net/favicon.ico",
+ "name": "Diario Hoy",
+ "triggers": [
+ "hoy"
+ ],
+ "regions": {
+ "default": "http://diariohoy.net/busqueda?buscador={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://app-claro.dr.tadevelapps.com/img/icon.jpg?v=a0714d786707220729196c7f2fcd2e4f",
+ "name": "Diario Registrado",
+ "triggers": [
+ "dreg"
+ ],
+ "regions": {
+ "default": "http://www.diarioregistrado.com/buscar?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.diarioveloz.com/favicon.ico",
+ "name": "Diario Veloz",
+ "triggers": [
+ "veloz"
+ ],
+ "regions": {
+ "default": "http://www.diarioveloz.com/contenidos/resultado.html?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://joindiaspora.com/assets/favicon-158d223c914fb4936d3b14294dbc3f0d4d87ffced0694cc013cca43910ef2324.png",
+ "name": "Diaspora Tags",
+ "triggers": [
+ "diasporatags"
+ ],
+ "regions": {
+ "default": "https://joindiaspora.com/tags/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.joindiaspora.com/assets/favicon-158d223c914fb4936d3b14294dbc3f0d4d87ffced0694cc013cca43910ef2324.png",
+ "name": "Diaspora*",
+ "triggers": [
+ "dtags"
+ ],
+ "regions": {
+ "default": "https://www.joindiaspora.com/tags/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.joindiaspora.com/assets/favicon-158d223c914fb4936d3b14294dbc3f0d4d87ffced0694cc013cca43910ef2324.png",
+ "name": "Diaspora*",
+ "triggers": [
+ "d*"
+ ],
+ "regions": {
+ "default": "https://www.joindiaspora.com/people?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.joindiaspora.com/assets/favicon-158d223c914fb4936d3b14294dbc3f0d4d87ffced0694cc013cca43910ef2324.png",
+ "name": "Diaspora*",
+ "triggers": [
+ "d*t"
+ ],
+ "regions": {
+ "default": "https://www.joindiaspora.com/tags/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "//dic.academic.ru/images/icon.ico",
+ "name": "dic.academic.ru",
+ "triggers": [
+ "daru"
+ ],
+ "regions": {
+ "default": "http://dic.academic.ru/searchall.php?SWord={{{term}}}&from=xx&to=ru&did=&stype=0"
+ }
+ },
+ {
+ "favicon": "http://www.diccionari.cat/favicon.ico",
+ "name": "Diccionari de la llengua Catalana",
+ "triggers": [
+ "diccionari"
+ ],
+ "regions": {
+ "default": "http://www.diccionari.cat/cgi-bin/AppDLC3.exe?APP=CERCADLC&GECART={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.avl.gva.es/favicon.ico",
+ "name": "Diccionari Normatiu Valencià",
+ "triggers": [
+ "dnv"
+ ],
+ "regions": {
+ "default": "http://www.avl.gva.es/lexicval/dnv?paraula={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dle.rae.es/favicon.ico",
+ "name": "Diccionario de la Real Academia Española",
+ "triggers": [
+ "drae"
+ ],
+ "regions": {
+ "default": "http://dle.rae.es/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lema.rae.es/favicon.ico",
+ "name": "Diccionario panhispánico de dudas",
+ "triggers": [
+ "dpd"
+ ],
+ "regions": {
+ "default": "http://lema.rae.es/dpd/?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dle.rae.es/favicon.ico",
+ "name": "Diccionario Real Academia de la Lengua Española",
+ "triggers": [
+ "rae"
+ ],
+ "regions": {
+ "default": "http://dle.rae.es/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dicio.com.br/android-chrome-192x192.png",
+ "name": "Dicio",
+ "triggers": [
+ "dpt"
+ ],
+ "regions": {
+ "default": "http://www.dicio.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dicio.com.br/android-chrome-192x192.png",
+ "name": "Dicio",
+ "triggers": [
+ "dicio"
+ ],
+ "regions": {
+ "default": "https://www.dicio.com.br/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://academia.gal/favicon.ico",
+ "name": "Dicionario da Real Academia Galega",
+ "triggers": [
+ "drag"
+ ],
+ "regions": {
+ "default": "http://academia.gal/dicionario_rag/searchNoun.do?nounTitle={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.sinonimos.com.br/favicon-16x16.png",
+ "name": "Dicionário de Sinônimos",
+ "triggers": [
+ "sin"
+ ],
+ "regions": {
+ "default": "https://www.sinonimos.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dicionarioinformal.com.br/img/touch-icon-192x192.png",
+ "name": "Dicionário inFormal",
+ "triggers": [
+ "din"
+ ],
+ "regions": {
+ "default": "http://www.dicionarioinformal.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dicoz.fr/favicon.ico",
+ "name": "Dicoz",
+ "triggers": [
+ "dicoz"
+ ],
+ "regions": {
+ "default": "http://www.dicoz.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/IT.png",
+ "name": "Dict CC DE <> IT",
+ "triggers": [
+ "deit"
+ ],
+ "regions": {
+ "default": "https://deit.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dict-navi.com/de/dictionary/list/favicon.ico",
+ "name": "Dict-Na'vi.com",
+ "triggers": [
+ "dnde"
+ ],
+ "regions": {
+ "default": "http://dict-navi.com/de/dictionary/list/?type=search&search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dict-navi.com/en/dictionary/list/favicon.ico",
+ "name": "Dict-Na'vi.com",
+ "triggers": [
+ "dictn"
+ ],
+ "regions": {
+ "default": "http://dict-navi.com/en/dictionary/list/?type=search&search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cn.bing.com/sa/simg/bing_p_rr_teal_min.ico",
+ "name": "dict.bing.com.cn",
+ "triggers": [
+ "bce"
+ ],
+ "regions": {
+ "default": "https://cn.bing.com/dict/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/favicon4.png",
+ "name": "dict.cc",
+ "triggers": [
+ "dictcc",
+ "dict.cc",
+ "dcc",
+ "deen"
+ ],
+ "regions": {
+ "default": "https://www.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/NO.png",
+ "name": "dict.cc",
+ "triggers": [
+ "deno"
+ ],
+ "regions": {
+ "default": "https://deno.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.dict.cc/imgm/favicon-android-192.png",
+ "name": "Dict.cc",
+ "triggers": [
+ "mdcc"
+ ],
+ "regions": {
+ "default": "https://m.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/SV.png",
+ "name": "dict.cc",
+ "triggers": [
+ "desv"
+ ],
+ "regions": {
+ "default": "https://desv.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/FR.png",
+ "name": "dict.cc Deutsch-Französisch",
+ "triggers": [
+ "defr"
+ ],
+ "regions": {
+ "default": "https://defr.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/NL.png",
+ "name": "Dict.cc Deutsch-Niederländisch",
+ "triggers": [
+ "denl"
+ ],
+ "regions": {
+ "default": "https://denl.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/ES.png",
+ "name": "Dict.cc Deutsch-Spanisch",
+ "triggers": [
+ "dees"
+ ],
+ "regions": {
+ "default": "https://dees.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4.dict.cc/img/favicons/EO.png",
+ "name": "dict.cc: Esperanto-Deutsch",
+ "triggers": [
+ "deeo"
+ ],
+ "regions": {
+ "default": "https://deeo.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "dict.leo.org",
+ "triggers": [
+ "leo"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/englisch-deutsch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dict.org/favicon.ico",
+ "name": "dict.org",
+ "triggers": [
+ "dictre"
+ ],
+ "regions": {
+ "default": "http://www.dict.org/bin/Dict?Form=Dict1&Database=*&Strategy=re&Query=^{{{term}}}$"
+ }
+ },
+ {
+ "favicon": "http://www.dict.org/favicon.ico",
+ "name": "Dict.org",
+ "triggers": [
+ "dict"
+ ],
+ "regions": {
+ "default": "http://www.dict.org/bin/Dict?Form=Dict2&Database=*&Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dict.pl/favicon.ico",
+ "name": "Dict.pl",
+ "triggers": [
+ "dictpl"
+ ],
+ "regions": {
+ "default": "http://dict.pl/dict?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dictionar-finlandez.net/favicon_new.ico",
+ "name": "Dictionar roman-finlandez-roman",
+ "triggers": [
+ "rofi"
+ ],
+ "regions": {
+ "default": "http://www.dictionar-finlandez.net/online/?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/d631a55b.ico",
+ "name": "Dictionary (reference)",
+ "triggers": [
+ "dictionaryr",
+ "dref",
+ "pronounce"
+ ],
+ "regions": {
+ "default": "http://dictionary.reference.com/browse/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sum.in.ua/favicon.ico",
+ "name": "Dictionary of Ukrainian Language (Словник української мови)",
+ "triggers": [
+ "sum"
+ ],
+ "regions": {
+ "default": "http://sum.in.ua/?swrd={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Dictionary Reverso",
+ "triggers": [
+ "reversoenfr",
+ "reenfr",
+ "revef"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/english-french/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/d631a55b.ico",
+ "name": "Dictionary.com",
+ "triggers": [
+ "di",
+ "dcom"
+ ],
+ "regions": {
+ "default": "http://www.dictionary.com/browse/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/d631a55b.ico",
+ "name": "Dictionary.com",
+ "triggers": [
+ "d.com"
+ ],
+ "regions": {
+ "default": "http://dictionary.reference.com/browse/{{{term}}}?s=t"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAGklEQVQoz2M0TdnKQApgYiARjGoY1TB0NAAAMBABbtZ7KP8AAAAASUVORK5CYII=",
+ "name": "Dictionnaire Littré",
+ "triggers": [
+ "littre"
+ ],
+ "regions": {
+ "default": "http://www.littre.org/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikonet.com/favicon.ico",
+ "name": "Dictionnaire visuel",
+ "triggers": [
+ "dv"
+ ],
+ "regions": {
+ "default": "http://www.ikonet.com/fr/ledictionnairevisuel/static/qc/searchresults?cx=partner-pub-7156007925185226%3Atd1ipa-ejn8&cof=FORID%3A9&ie=UTF-8&q={{{term}}}&siteurl=www.ikonet.com%2Ffr%2Fledictionnairevisuel%2F&ref=www.ikonet.com%2Ffr%2Fledictionnairevisuel%2Fstatic%2Fqc%2Fsearchresults%3Fcx%3Dpartner-pub-7156007925185226%253Atd1ipa-ejn8%26cof%3DFORID%253A9%26ie%3DUTF-8%26q%3Dfraise%26siteurl%3Dwww.ikonet.com%252Ffr%252Fledictionnairevisuel%252Fstatic%252Fqc%252Fvisuel%26ref%3D%26ss%3D607j79921j6&ss=648j91840j6"
+ }
+ },
+ {
+ "favicon": "http://www.dictjuggler.net/en/yakugo/favicon.ico",
+ "name": "DictJuggler.net Japanese-English and English-Japanese Translation Dictionary",
+ "triggers": [
+ "djtrans"
+ ],
+ "regions": {
+ "default": "http://www.dictjuggler.net/en/yakugo/?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictzone.com/favicon.ico",
+ "name": "DictZone spanyol-magyar",
+ "triggers": [
+ "dictzonespma"
+ ],
+ "regions": {
+ "default": "http://dictzone.com/spanyol-magyar-szotar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://diepresse.com/img/favicon/favicon-16x16.png",
+ "name": "Die Presse",
+ "triggers": [
+ "diepresse"
+ ],
+ "regions": {
+ "default": "http://diepresse.com/user/search.do?resetForm=1&resultsPage=0&searchText={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://diebuchsuche.de/icon-256.png",
+ "name": "diebuchsuche.de",
+ "triggers": [
+ "dbuch"
+ ],
+ "regions": {
+ "default": "http://diebuchsuche.de/r.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dierenkruiden.nl/favicon.ico",
+ "name": "Dierenkruiden",
+ "triggers": [
+ "dierenkruiden"
+ ],
+ "regions": {
+ "default": "https://www.dierenkruiden.nl/search?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://networking.ringofsaturn.com/Tools/favicon.png",
+ "name": "dig Lookup",
+ "triggers": [
+ "dig",
+ "host"
+ ],
+ "regions": {
+ "default": "http://networking.ringofsaturn.com/Tools/dig.php?domain=ANY+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.digbt.org/static/favicon.ico",
+ "name": "digbt",
+ "triggers": [
+ "digbt"
+ ],
+ "regions": {
+ "default": "http://www.digbt.org/search/{{{term}}}/?u=y"
+ }
+ },
+ {
+ "favicon": "https://static.digg.com/static/fe/3eb69f/images/digg_favicon.png",
+ "name": "Digg",
+ "triggers": [
+ "digg"
+ ],
+ "regions": {
+ "default": "https://digg.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digi.no/favicon.ico",
+ "name": "Digi",
+ "triggers": [
+ "digi"
+ ],
+ "regions": {
+ "default": "https://www.digi.no/sok?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digikey.com/favicon.ico",
+ "name": "Digi-Key",
+ "triggers": [
+ "digikey"
+ ],
+ "regions": {
+ "default": "https://www.digikey.com/product-search/en?x=17&y=13&lang=en&site=us&KeyWords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://digiato.com/wp-content/themes/digiavu-old/img/favicon.png",
+ "name": "digiato",
+ "triggers": [
+ "digiato"
+ ],
+ "regions": {
+ "default": "http://digiato.com/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://www.digikala.com/favicon.ico",
+ "name": "DigiKala",
+ "triggers": [
+ "digikala"
+ ],
+ "regions": {
+ "default": "https://www.digikala.com/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digikey.de/favicon.ico",
+ "name": "Digikey DE (Germany)",
+ "triggers": [
+ "dkde"
+ ],
+ "regions": {
+ "default": "https://www.digikey.de/product-search/de?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.digikey.it/favicon.ico",
+ "name": "Digikey Italy",
+ "triggers": [
+ "dkit"
+ ],
+ "regions": {
+ "default": "http://www.digikey.it/products/it?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.digikey.ca/favicon.ico",
+ "name": "Digikey.ca",
+ "triggers": [
+ "dkc"
+ ],
+ "regions": {
+ "default": "http://www.digikey.ca/product-search/en?x=-1308&y=-74&lang=en&site=ca&KeyWords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.digikey.fr/favicon.ico",
+ "name": "DigiKey.fr",
+ "triggers": [
+ "dkfr"
+ ],
+ "regions": {
+ "default": "http://www.digikey.fr/product-search/fr?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://diginic.net/intro/favicon.gif",
+ "name": "DiGiNiC",
+ "triggers": [
+ "diginic.net"
+ ],
+ "regions": {
+ "default": "http://diginic.net/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://dash.harvard.edu/docs/assets/img/favicon.png",
+ "name": "Digital Access to Scholarship at Harvard",
+ "triggers": [
+ "dash"
+ ],
+ "regions": {
+ "default": "http://dash.harvard.edu/search?scope=%2F&query={{{term}}}&rpp=10&sort_by=0&order=DESC"
+ }
+ },
+ {
+ "favicon": "http://digitalcomicmuseum.com/favicon.ico",
+ "name": "Digital Comic Museum",
+ "triggers": [
+ "digitalcomics",
+ "digitalcomicmuseum"
+ ],
+ "regions": {
+ "default": "http://digitalcomicmuseum.com/index.php?ACT=dosearch&terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digitalocean.com/favicon.ico",
+ "name": "Digital Ocean Tutorials",
+ "triggers": [
+ "dot"
+ ],
+ "regions": {
+ "default": "https://www.digitalocean.com/community/tutorials?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://doai.io/favicon.ico",
+ "name": "Digital Open Access Identifier",
+ "triggers": [
+ "doai"
+ ],
+ "regions": {
+ "default": "http://doai.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dpreview.com/resources/favicons/favicon.ico?v=2",
+ "name": "Digital Photgrapy Review",
+ "triggers": [
+ "dpr"
+ ],
+ "regions": {
+ "default": "http://www.dpreview.com/search/?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://dp.la/static/favicons/favicon-16x16.png",
+ "name": "Digital Public Library of America",
+ "triggers": [
+ "dpla"
+ ],
+ "regions": {
+ "default": "http://dp.la/search?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.planplus.rs/favicon.png",
+ "name": "Digitalna mapa Srbije",
+ "triggers": [
+ "planplus"
+ ],
+ "regions": {
+ "default": "https://www.planplus.rs/#!pretraga/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digitalocean.com/favicon.ico",
+ "name": "DigitalOcean",
+ "triggers": [
+ "do"
+ ],
+ "regions": {
+ "default": "https://www.digitalocean.com/community/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.digitalspy.com/favicon.ico",
+ "name": "DigitalSpy",
+ "triggers": [
+ "digitalspy"
+ ],
+ "regions": {
+ "default": "http://www.digitalspy.com/search/searchselector.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digitaltrends.com/wp-content/themes/digitaltrends-2018/assets/images/favicons/favicon-16x16.png",
+ "name": "DigitalTrends",
+ "triggers": [
+ "digitaltrends"
+ ],
+ "regions": {
+ "default": "http://www.digitaltrends.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.digitec.ch/portalimage/25/favicon-32x32.png?lang=de",
+ "name": "Digitec",
+ "triggers": [
+ "digitec"
+ ],
+ "regions": {
+ "default": "https://www.digitec.ch/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://statics.digitick.com/bundles/digitickcms/favicon/favicon-16x16.png?m9f8x40zrgj1",
+ "name": "Digitick",
+ "triggers": [
+ "digitick"
+ ],
+ "regions": {
+ "default": "https://www.digitick.com/fr/recherche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.diigo.com/favicon.ico",
+ "name": "Diigo",
+ "triggers": [
+ "diigo"
+ ],
+ "regions": {
+ "default": "https://www.diigo.com/search/my?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.diigo.com/favicon.ico",
+ "name": "Diigo (tags)",
+ "triggers": [
+ "diigt"
+ ],
+ "regions": {
+ "default": "https://www.diigo.com/tag/{{{term}}}?year=2"
+ }
+ },
+ {
+ "favicon": "https://www.diki.pl/images/favicon/diki/favicon.ico",
+ "name": "diki.pl",
+ "triggers": [
+ "diki"
+ ],
+ "regions": {
+ "default": "https://www.diki.pl/slownik-angielskiego/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dilbert.com/assets/favicon/favicon-9486c8e39a305662fe53ec940f3bd7bd.ico",
+ "name": "Dilbert",
+ "triggers": [
+ "dilbert"
+ ],
+ "regions": {
+ "default": "http://search.dilbert.com/search?w={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://dirae.es/palabras/static/img/favicon.ico",
+ "name": "Dirae",
+ "triggers": [
+ "dirae"
+ ],
+ "regions": {
+ "default": "http://dirae.es/palabras/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dirble.com/favicon.ico",
+ "name": "Dirble",
+ "triggers": [
+ "dirble"
+ ],
+ "regions": {
+ "default": "http://dirble.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.directlyrics.com/img/144144.png",
+ "name": "Directlyrics",
+ "triggers": [
+ "drly"
+ ],
+ "regions": {
+ "default": "https://www.directlyrics.com/search/?q=direct+lyrics&ie=utf-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.doaj.org/static/doaj/images/favicon.ico",
+ "name": "Directory of Open Access Journals",
+ "triggers": [
+ "doaj"
+ ],
+ "regions": {
+ "default": "http://www.doaj.org/doaj?func=findJournals&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dirpy.com/favicon.ico",
+ "name": "Dirpy",
+ "triggers": [
+ "dirpy"
+ ],
+ "regions": {
+ "default": "http://www.dirpy.com/studio?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dirty.ru/favicon.ico",
+ "name": "dirty.ru",
+ "triggers": [
+ "d3"
+ ],
+ "regions": {
+ "default": "https://dirty.ru/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.disclose.tv/favicon.ico",
+ "name": "Disclose.tv",
+ "triggers": [
+ "disclosetv"
+ ],
+ "regions": {
+ "default": "http://www.disclose.tv/search/desk?title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.discogs.com/images/favicon-96x96.png",
+ "name": "Discogs",
+ "triggers": [
+ "discogs"
+ ],
+ "regions": {
+ "default": "https://www.discogs.com/search?q={{{term}}}&btn=&type=all"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/search-static/images/favicon.ico",
+ "name": "Disconnect Image Search",
+ "triggers": [
+ "disconnectimg"
+ ],
+ "regions": {
+ "default": "https://search.disconnect.me/searchTerms/search?query={{{term}}}&option=Images"
+ }
+ },
+ {
+ "favicon": "http://www.discoverthenetworks.org/favicon.ico",
+ "name": "Discover the Networks",
+ "triggers": [
+ "dtn"
+ ],
+ "regions": {
+ "default": "http://www.discoverthenetworks.org/search/?q={{{term}}}&cof=FORID%3A11&cx=013255222075609514560%3Avfcebs4vcuo"
+ }
+ },
+ {
+ "favicon": "http://discoverygc.com/favicon.ico",
+ "name": "Discovery Wiki",
+ "triggers": [
+ "disco"
+ ],
+ "regions": {
+ "default": "http://discoverygc.com/wiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.discovery.com/favicon.ico",
+ "name": "Discovery.com",
+ "triggers": [
+ "discovery"
+ ],
+ "regions": {
+ "default": "http://dsc.discovery.com/search.htm?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/discworld/images/6/64/Favicon.ico/revision/latest?cb=20091110094835",
+ "name": "discworld",
+ "triggers": [
+ "discworld"
+ ],
+ "regions": {
+ "default": "http://discworld.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-mh.content.disney.io/matterhorn/assets/favicon-94e3862e7fb9.ico",
+ "name": "Disney.com",
+ "triggers": [
+ "disney"
+ ],
+ "regions": {
+ "default": "http://search.disney.go.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dispostable.com/images/favicon.ico",
+ "name": "Dispostable",
+ "triggers": [
+ "dispt"
+ ],
+ "regions": {
+ "default": "http://www.dispostable.com/inbox/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.dissolve.com/favicon.ico",
+ "name": "dissolve.com",
+ "triggers": [
+ "footage"
+ ],
+ "regions": {
+ "default": "http://www.dissolve.com/products?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dissolve.com/favicon.ico",
+ "name": "dissolve.com",
+ "triggers": [
+ "stockvideo"
+ ],
+ "regions": {
+ "default": "http://www.dissolve.com/products?keywords={{{term}}}&media_type=video"
+ }
+ },
+ {
+ "favicon": "http://www.distrelec.de/_ui/all/media/favicon.ico",
+ "name": "Distrelec",
+ "triggers": [
+ "dist"
+ ],
+ "regions": {
+ "default": "http://www.distrelec.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://distrowatch.com/favicon.ico",
+ "name": "Distrowatch",
+ "triggers": [
+ "iso",
+ "distro",
+ "distrowatch"
+ ],
+ "regions": {
+ "default": "https://distrowatch.com/table.php?distribution={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://liu.diva-portal.org/smash/resources/images/liu/favicon.png",
+ "name": "divaliu",
+ "triggers": [
+ "divaliu"
+ ],
+ "regions": {
+ "default": "http://liu.diva-portal.org/smash/resultList.jsf?searchType=SIMPLE&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://du4z9i34crd7b.cloudfront.net/frontend/img/favicon.png",
+ "name": "Divii",
+ "triggers": [
+ "divii"
+ ],
+ "regions": {
+ "default": "http://www.divii.org/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/kidicarus/images/6/64/Favicon.ico/revision/latest?cb=20170318092916",
+ "name": "Divinipedia",
+ "triggers": [
+ "divinipedia"
+ ],
+ "regions": {
+ "default": "http://kidicarus.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.divxtotal2.net/wp-content/themes/DivxTotal/images/favicon.ico",
+ "name": "Divxtotal",
+ "triggers": [
+ "divx"
+ ],
+ "regions": {
+ "default": "http://www.divxtotal.com/buscar.php?busqueda={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.diynetwork.com/etc/clientlibs/assets/images/diy/favicon-32x32.png",
+ "name": "DIY Network",
+ "triggers": [
+ "diy"
+ ],
+ "regions": {
+ "default": "http://www.diynetwork.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://etimo.it/favicon.ico",
+ "name": "Dizionario Etimologico",
+ "triggers": [
+ "etimo"
+ ],
+ "regions": {
+ "default": "http://etimo.it/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.internazionale.it/assets/img/favicon.png",
+ "name": "Dizionario Internazionale De Mauro",
+ "triggers": [
+ "dit"
+ ],
+ "regions": {
+ "default": "http://dizionario.internazionale.it/parola/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.djangoproject.com/s/img/favicon.6dbf28c0650e.ico",
+ "name": "Django Docs",
+ "triggers": [
+ "django"
+ ],
+ "regions": {
+ "default": "http://docs.djangoproject.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.djangoproject.com/s/img/favicon.6dbf28c0650e.ico",
+ "name": "Django documentation",
+ "triggers": [
+ "dj"
+ ],
+ "regions": {
+ "default": "https://docs.djangoproject.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.djangoproject.com/s/img/favicon.6dbf28c0650e.ico",
+ "name": "Django Documentation",
+ "triggers": [
+ "djlts",
+ "djangodoc"
+ ],
+ "regions": {
+ "default": "https://docs.djangoproject.com/en/1.8/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://djangopackages.com/static/img/favicon.png",
+ "name": "Django Packages",
+ "triggers": [
+ "djpackages"
+ ],
+ "regions": {
+ "default": "http://djangopackages.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.django-rest-framework.org/img/favicon.ico",
+ "name": "Django REST Framework",
+ "triggers": [
+ "drf"
+ ],
+ "regions": {
+ "default": "http://www.django-rest-framework.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.djtechtools.com/favicon.ico",
+ "name": "DJTechTools",
+ "triggers": [
+ "djtt"
+ ],
+ "regions": {
+ "default": "http://www.djtechtools.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dlcompare.com/bundles/dlcomparemain/img/dlc-favicon.png",
+ "name": "DLCompare",
+ "triggers": [
+ "dlc"
+ ],
+ "regions": {
+ "default": "http://www.dlcompare.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.deutschlandfunk.de/themes/dradio/icons/dlf/favicon-196x196.png",
+ "name": "dlf",
+ "triggers": [
+ "dlf"
+ ],
+ "regions": {
+ "default": "http://www.deutschlandfunk.de/suchergebnisse.448.de.html?search%5Bsubmit%5D=1&search%5BwithNews%5D%5B%5D=WithNews&search%5Bword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dll-files.com/assets/img/favicons/favicon-16x16.png",
+ "name": "DLL-files.com",
+ "triggers": [
+ "dll"
+ ],
+ "regions": {
+ "default": "http://www.dll-files.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dmaciasblog.com/wp-content/uploads/2017/02/favicon-2.png",
+ "name": "dmaciasblog",
+ "triggers": [
+ "dmaciasblog"
+ ],
+ "regions": {
+ "default": "http://dmaciasblog.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dmi.dk/fileadmin/templates/Images/favicon.ico",
+ "name": "DMI Byvejr",
+ "triggers": [
+ "dmi",
+ "dmiby"
+ ],
+ "regions": {
+ "default": "http://www.dmi.dk/byindex?by={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dns-shop.ru/files/manifest/favicon-16x16.png",
+ "name": "DNS",
+ "triggers": [
+ "dnsshop"
+ ],
+ "regions": {
+ "default": "http://www.dns-shop.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dk.dcdn.cz/assets/images/favicon.ico",
+ "name": "Dobré Knihy.cz",
+ "triggers": [
+ "dobreknihy"
+ ],
+ "regions": {
+ "default": "http://www.dobre-knihy.cz/vyhledavani/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docbook.org/graphics/docbook-icon16.png",
+ "name": "DocBook 5: The Definitive Guide",
+ "triggers": [
+ "docbook5"
+ ],
+ "regions": {
+ "default": "http://docbook.org/search/?cx=008085259838719972531%3Atqmky0g0tbo&q={{{term}}}&sa=DocBook+Search&cof=FORID%3A9&siteurl=docbook.org%2F&ref=&ss=551j84183j5"
+ }
+ },
+ {
+ "favicon": "//dccdn.de/favicon.doccheck.ico",
+ "name": "DocCheck",
+ "triggers": [
+ "docc"
+ ],
+ "regions": {
+ "default": "http://m.flexikon.doccheck.com/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//dccdn.de/favicon.doccheck.ico",
+ "name": "DocCheck",
+ "triggers": [
+ "doccde"
+ ],
+ "regions": {
+ "default": "http://flexikon.doccheck.com/de/index.php?title=Spezial:Suche&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.docjar.com/favicon.ico",
+ "name": "Docjar",
+ "triggers": [
+ "docjar"
+ ],
+ "regions": {
+ "default": "http://www.docjar.com/docs2web/s.jsp?q={{{term}}}&t=q&start=0"
+ }
+ },
+ {
+ "favicon": "https://hub.docker.com/favicon.ico",
+ "name": "docker hub",
+ "triggers": [
+ "dockerhub",
+ "dhub"
+ ],
+ "regions": {
+ "default": "https://hub.docker.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://store.docker.com/favicon.ico",
+ "name": "docker hub",
+ "triggers": [
+ "dk",
+ "docker"
+ ],
+ "regions": {
+ "default": "https://store.docker.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hub.docker.com/favicon.ico",
+ "name": "Docker Hub",
+ "triggers": [
+ "dh"
+ ],
+ "regions": {
+ "default": "https://hub.docker.com/search/?q={{{term}}}&page=1&isAutomated=0&isOfficial=0&starCount=0&pullCount=0"
+ }
+ },
+ {
+ "favicon": "https://docs.docker.com/favicons/docs@2x.ico",
+ "name": "Dockerhub docs",
+ "triggers": [
+ "dhdocs"
+ ],
+ "regions": {
+ "default": "https://docs.docker.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://doclot.io/wp-content/uploads/2018/06/cropped-favicon-192x192.png",
+ "name": "Doclot IO",
+ "triggers": [
+ "dct",
+ "dcltio",
+ "jdoclot"
+ ],
+ "regions": {
+ "default": "https://doclot.io/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.python.org/2.7/_static/py.png",
+ "name": "Docs Python 2",
+ "triggers": [
+ "py2",
+ "py27"
+ ],
+ "regions": {
+ "default": "https://docs.python.org/2.7/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.cntd.ru/general/images/favicon.ico",
+ "name": "docs.cntd.ru",
+ "triggers": [
+ "гост"
+ ],
+ "regions": {
+ "default": "http://docs.cntd.ru/search/intellectual?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rust-lang.org/favicon.ico",
+ "name": "docs.rs",
+ "triggers": [
+ "rustd",
+ "rust",
+ "ruststd"
+ ],
+ "regions": {
+ "default": "https://doc.rust-lang.org/std/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.rs/favicon.ico",
+ "name": "Docs.rs",
+ "triggers": [
+ "docsrs",
+ "docs.rs"
+ ],
+ "regions": {
+ "default": "https://docs.rs/releases/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.splunk.com/favicon.ico",
+ "name": "docs.splunk.com",
+ "triggers": [
+ "docs.splunk"
+ ],
+ "regions": {
+ "default": "https://docs.splunk.com/Special:SplunkSearch/docs?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.doctrine.fr/img/logo/logos_doctrine/favicon.png",
+ "name": "Doctrine.fr",
+ "triggers": [
+ "doctrine"
+ ],
+ "regions": {
+ "default": "https://www.doctrine.fr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/dofus/images/6/64/Favicon.ico/revision/latest?cb=20150701185848",
+ "name": "Dofus Wiki",
+ "triggers": [
+ "dofus"
+ ],
+ "regions": {
+ "default": "https://dofuswiki.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dogechain.info/favicon.png",
+ "name": "DogeChain",
+ "triggers": [
+ "dogechain"
+ ],
+ "regions": {
+ "default": "https://dogechain.info/address/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.dogobooks.com/assets/icon/v2/dogobooks/favicon-16x16-917fde372abff3881ee52f51506867a6.png",
+ "name": "DOGO books",
+ "triggers": [
+ "dogob"
+ ],
+ "regions": {
+ "default": "http://www.dogobooks.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.dogomovies.com/assets/icon/v2/dogomovies/favicon-16x16-8e571efde5d0ed4363672572c3eedb5a.png",
+ "name": "DOGO movies",
+ "triggers": [
+ "dogom"
+ ],
+ "regions": {
+ "default": "http://www.dogomovies.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile",
+ "triggers": [
+ "dogpile"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/dogpile/ws/results/Web/{{{term}}}/1/1/TopNavigation/Relevance/"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile Images",
+ "triggers": [
+ "dpi"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/search/images?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile Local",
+ "triggers": [
+ "dpl"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/search/local?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile News",
+ "triggers": [
+ "dpn"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/search/news?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile Video",
+ "triggers": [
+ "dpv"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/search/video?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/dogpile/11.6.0.446/favicon.ico",
+ "name": "Dogpile Web",
+ "triggers": [
+ "dpw"
+ ],
+ "regions": {
+ "default": "http://www.dogpile.com/search/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dx.doi.org/static/favicon.ico",
+ "name": "DOI Digital Object Identifier System",
+ "triggers": [
+ "doi"
+ ],
+ "regions": {
+ "default": "https://dx.doi.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dokuwiki.org/lib/tpl/dokuwiki/images/favicon.ico",
+ "name": "DokuWiki",
+ "triggers": [
+ "dkwk"
+ ],
+ "regions": {
+ "default": "https://www.dokuwiki.org/start?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.dolphin-emu.org/images/favicon.40.ico",
+ "name": "Dolphin Emulator Wiki",
+ "triggers": [
+ "dolphin"
+ ],
+ "regions": {
+ "default": "https://wiki.dolphin-emu.org/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.dolusozluk.com/favicon.ico",
+ "name": "Dolu Sozluk",
+ "triggers": [
+ "dolu"
+ ],
+ "regions": {
+ "default": "http://www.dolusozluk.com/#b={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://centralops.net/favicon.ico",
+ "name": "Domain Dossier",
+ "triggers": [
+ "domaindossier"
+ ],
+ "regions": {
+ "default": "https://centralops.net/co/DomainDossier.aspx?addr={{{term}}}&dom_whois=true&dom_dns=true&traceroute=true&net_whois=true&svc_scan=true"
+ }
+ },
+ {
+ "favicon": "https://domainr.com/_/images/icons/favicon.ico",
+ "name": "Domainr",
+ "triggers": [
+ "domainr"
+ ],
+ "regions": {
+ "default": "https://domainr.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://domainsbot.com/Content/img/favicon.ico",
+ "name": "domainsbot.com",
+ "triggers": [
+ "domainsbot"
+ ],
+ "regions": {
+ "default": "http://domainsbot.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://reverseip.domaintools.com/favicon.ico",
+ "name": "Domaintools Reverse IP Lookup",
+ "triggers": [
+ "rip"
+ ],
+ "regions": {
+ "default": "https://reverseip.domaintools.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://whois.domaintools.com/favicon.ico",
+ "name": "Domaintools Whois",
+ "triggers": [
+ "whois"
+ ],
+ "regions": {
+ "default": "https://whois.domaintools.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://whois.domaintools.com/favicon.ico",
+ "name": "DomainTools Whois",
+ "triggers": [
+ "whois.domaintools"
+ ],
+ "regions": {
+ "default": "https://whois.domaintools.com/go/?q={{{term}}}&service=whois"
+ }
+ },
+ {
+ "favicon": "http://dns-tools.domaintools.com/favicon.ico",
+ "name": "DomainTools.com",
+ "triggers": [
+ "ping"
+ ],
+ "regions": {
+ "default": "http://dns-tools.domaintools.com/?method=ping&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.dominionstrategy.com/favicon.ico",
+ "name": "Dominion Strategy Wiki",
+ "triggers": [
+ "domw"
+ ],
+ "regions": {
+ "default": "http://wiki.dominionstrategy.com/index.php?search={{{term}}}&go=Go&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://domize.com/img/icon.png",
+ "name": "Domize",
+ "triggers": [
+ "domize.com"
+ ],
+ "regions": {
+ "default": "https://domize.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slot1-images.wikia.nocookie.net/__cb1530526546/common/skins/common/images/favicon.ico",
+ "name": "Don't Starve Wiki",
+ "triggers": [
+ "dstarve",
+ "dontstarve"
+ ],
+ "regions": {
+ "default": "http://dont-starve-game.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.donationcoder.com/templates/dc/favicon.ico",
+ "name": "DonationCoder",
+ "triggers": [
+ "doco"
+ ],
+ "regions": {
+ "default": "https://www.donationcoder.com/forum/index.php?action=search2&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.donax.ch/wp-content/themes/fizz/favicon.ico",
+ "name": "Donax",
+ "triggers": [
+ "donax"
+ ],
+ "regions": {
+ "default": "http://www.donax.ch/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.donedeal.ie/favicon.ico",
+ "name": "Done Deal",
+ "triggers": [
+ "donedeal"
+ ],
+ "regions": {
+ "default": "https://www.donedeal.ie/all?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://doomwiki.org/favicon.ico",
+ "name": "Doom Wiki",
+ "triggers": [
+ "doom"
+ ],
+ "regions": {
+ "default": "https://doomwiki.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dorama.akihabara.cz/design/dorama.ico",
+ "name": "Dorama Akihabara",
+ "triggers": [
+ "dorabara"
+ ],
+ "regions": {
+ "default": "http://dorama.akihabara.cz/vyhledavani/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://my.dot.tk/favicon.ico",
+ "name": "Dot TK",
+ "triggers": [
+ "dottk"
+ ],
+ "regions": {
+ "default": "http://my.dot.tk/registration/register?domainname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Dota 2 subreddit",
+ "triggers": [
+ "dsr"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/DotA2/search?q={{{term}}}&restrict_sr=on&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/dota2_gamepedia/6/64/Favicon.ico?version=2e4b5769c35580f3092e57ae42dbb1d8",
+ "name": "Dota 2 Wiki",
+ "triggers": [
+ "dota"
+ ],
+ "regions": {
+ "default": "http://dota2.gamepedia.com/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/dota2_gamepedia/6/64/Favicon.ico?version=2e4b5769c35580f3092e57ae42dbb1d8",
+ "name": "Dota2 Gamepedia",
+ "triggers": [
+ "d2gp"
+ ],
+ "regions": {
+ "default": "http://dota2.gamepedia.com/Special:Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dotabuff.com/assets/favicon-a6c9d750400872d536f8d3376a67851d3d5ee5a9b3d1beda17c66ab92ad62cdb.png",
+ "name": "Dotabuff",
+ "triggers": [
+ "dbuff"
+ ],
+ "regions": {
+ "default": "http://www.dotabuff.com/search?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dotabuff.com/assets/favicon-a6c9d750400872d536f8d3376a67851d3d5ee5a9b3d1beda17c66ab92ad62cdb.png",
+ "name": "DOTABUFF",
+ "triggers": [
+ "duff",
+ "dotabuff"
+ ],
+ "regions": {
+ "default": "http://www.dotabuff.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dotabuff.com/assets/favicon-a6c9d750400872d536f8d3376a67851d3d5ee5a9b3d1beda17c66ab92ad62cdb.png",
+ "name": "Dotabuff Hero Guides",
+ "triggers": [
+ "dbguide"
+ ],
+ "regions": {
+ "default": "https://www.dotabuff.com/heroes/{{{term}}}/guides"
+ }
+ },
+ {
+ "favicon": "http://evemaps.dotlan.net/favicon.ico",
+ "name": "Dotlan EVE Maps",
+ "triggers": [
+ "dotlan"
+ ],
+ "regions": {
+ "default": "http://evemaps.dotlan.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchdotnet.com/favicon.ico",
+ "name": "DotNet Docs",
+ "triggers": [
+ ".net"
+ ],
+ "regions": {
+ "default": "http://www.searchdotnet.com/results.aspx?cx=002213837942349435108:jki1okx03jq&q={{{term}}}&sa=Search+.NET+sites&cof=FORID:9&siteurl=www.searchdotnet.com/"
+ }
+ },
+ {
+ "favicon": "https://docs.microsoft.com/favicon.ico",
+ "name": "DotNet Reference Source",
+ "triggers": [
+ "dotnet",
+ "msdotnet"
+ ],
+ "regions": {
+ "default": "https://docs.microsoft.com/en-us/search/index?search={{{term}}}&scope=.NET"
+ }
+ },
+ {
+ "favicon": "http://referencesource.microsoft.com/favicon.ico",
+ "name": "DotNet Reference Sources",
+ "triggers": [
+ "netsrc"
+ ],
+ "regions": {
+ "default": "http://referencesource.microsoft.com/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dotwhat.net/favicon.ico",
+ "name": "DotWhat",
+ "triggers": [
+ "dotwhat"
+ ],
+ "regions": {
+ "default": "http://dotwhat.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img3.doubanio.com/favicon.ico",
+ "name": "Douban",
+ "triggers": [
+ "dbmovie"
+ ],
+ "regions": {
+ "default": "https://movie.douban.com/subject_search?search_text={{{term}}}&cat=1002"
+ }
+ },
+ {
+ "favicon": "https://www.douban.com/favicon.ico",
+ "name": "Douban",
+ "triggers": [
+ "douban"
+ ],
+ "regions": {
+ "default": "https://www.douban.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img3.doubanio.com/f/talion/7c6364aadf368dc0210173c940cfd0f64ceddc66/pics/icon/m_logo_200.png",
+ "name": "Douban",
+ "triggers": [
+ "db"
+ ],
+ "regions": {
+ "default": "https://m.douban.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img3.doubanio.com/favicon.ico",
+ "name": "Douban",
+ "triggers": [
+ "dbbook"
+ ],
+ "regions": {
+ "default": "https://book.douban.com/subject_search?search_text={{{term}}}&cat=1001"
+ }
+ },
+ {
+ "favicon": "https://img3.doubanio.com/favicon.ico",
+ "name": "Douban Music",
+ "triggers": [
+ "dbmusic"
+ ],
+ "regions": {
+ "default": "https://music.douban.com/subject_search?search_text={{{term}}}&cat=1003"
+ }
+ },
+ {
+ "favicon": "http://www.doubletakedeals.com/favicon.ico?v=3",
+ "name": "DoubleTakeDeals",
+ "triggers": [
+ "dtdeals"
+ ],
+ "regions": {
+ "default": "http://www.doubletakedeals.com/searchresults?srch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dougscripts.com/favicon.ico",
+ "name": "Doug's AppleScripts for iTunes",
+ "triggers": [
+ "dougscripts"
+ ],
+ "regions": {
+ "default": "http://dougscripts.com/itunes/itinfo/searchform.php?my_srch_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.douglas.nl/assets/images/apple-touch-icon-152x152-precomposed.png",
+ "name": "Douglas",
+ "triggers": [
+ "douglas"
+ ],
+ "regions": {
+ "default": "https://www.douglas.nl/douglas/search.html?query={{{term}}}&searchType=search&init=true"
+ }
+ },
+ {
+ "favicon": "http://www.doujinshi.org/favicon.ico",
+ "name": "Doujinshi.org",
+ "triggers": [
+ "doujinshi"
+ ],
+ "regions": {
+ "default": "http://www.doujinshi.org/search/simple/?T=objects&sn={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lib.store.yahoo.net/lib/yhst-137970348157658/favicon.ico",
+ "name": "Dover Publications",
+ "triggers": [
+ "dover"
+ ],
+ "regions": {
+ "default": "http://search.doverpublications.com/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://downforeveryoneorjustme.com/favicon.ico",
+ "name": "Down For Everyone Or Just Me",
+ "triggers": [
+ "down"
+ ],
+ "regions": {
+ "default": "https://downforeveryoneorjustme.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://doj.me/wp-content/uploads/2017/02/cropped-Favicon-192x192.png",
+ "name": "Down Or Just Me?",
+ "triggers": [
+ "doj"
+ ],
+ "regions": {
+ "default": "http://doj.me/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.downeu.me/favicon.ico",
+ "name": "DOWNEU",
+ "triggers": [
+ "downeu"
+ ],
+ "regions": {
+ "default": "http://www.downeu.me/[a-z]/?do=search&subaction=search&story={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://downforeveryoneorjustme.com/favicon.ico",
+ "name": "DownForEveryone?",
+ "triggers": [
+ "updown",
+ "downfor"
+ ],
+ "regions": {
+ "default": "http://downforeveryoneorjustme.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://a4.fdlstatic.com/460/bundles/downloadcore/images/favicon-16.png",
+ "name": "Download.com",
+ "triggers": [
+ "download",
+ "shareware",
+ "software"
+ ],
+ "regions": {
+ "default": "http://download.cnet.com/1770-20_4-0.html?searchtype=downloads&query={{{term}}}&tg=dl-20&search.x=0&search.y=0&search=+Go%252521"
+ }
+ },
+ {
+ "favicon": "https://d2j52o29brz8ug.cloudfront.net/media/favicon/default/favicon-192x192.png",
+ "name": "Downpour",
+ "triggers": [
+ "downpour"
+ ],
+ "regions": {
+ "default": "http://www.downpour.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tracking.dpd.de/status/favicon.ico",
+ "name": "DPD",
+ "triggers": [
+ "dpdpost"
+ ],
+ "regions": {
+ "default": "http://tracking.dpd.de/parcelstatus?query={{{term}}}&locale=en_DE"
+ }
+ },
+ {
+ "favicon": "https://tracking.dpd.de/status/favicon.ico",
+ "name": "DPD Online Tracking",
+ "triggers": [
+ "dpdt"
+ ],
+ "regions": {
+ "default": "https://tracking.dpd.de/cgi-bin/delistrack?typ=1&pknr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dblp.org/favicon.ico",
+ "name": "DPLB",
+ "triggers": [
+ "dplb"
+ ],
+ "regions": {
+ "default": "http://www.dblp.org/search/index.php#query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dpreview.com/resources/favicons/favicon.ico?v=2",
+ "name": "DPReview",
+ "triggers": [
+ "dpreview"
+ ],
+ "regions": {
+ "default": "http://www.dpreview.com/search/?query={{{term}}}&terms=dcbbcf"
+ }
+ },
+ {
+ "favicon": "https://www.deutschlandradio.de/themes/dradio/icons/dlr/favicon-196x196.png",
+ "name": "dradio.de",
+ "triggers": [
+ "dradio"
+ ],
+ "regions": {
+ "default": "http://www.deutschlandradio.de/text-und-audio-suche.287.de.html?search%5Bsubmit%5D=1&search%5Bword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://content.draftexpress.com/favicon.png",
+ "name": "DraftExpress",
+ "triggers": [
+ "draftexpress"
+ ],
+ "regions": {
+ "default": "http://www.draftexpress.com/search/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Dragon Age NexusMods",
+ "triggers": [
+ "danm"
+ ],
+ "regions": {
+ "default": "https://dragonage.nexusmods.com/mods/searchresults/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/dragonball/images/6/64/Favicon.ico/revision/latest?cb=20150612204536",
+ "name": "Dragon Ball Wiki",
+ "triggers": [
+ "dragball"
+ ],
+ "regions": {
+ "default": "http://dragonball.wikia.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/dragcave/images/6/64/Favicon.ico/revision/latest?cb=20130416083113",
+ "name": "Dragon Cave Wiki",
+ "triggers": [
+ "dragcave"
+ ],
+ "regions": {
+ "default": "http://dragcave.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://dragon-quest.org/images/gfx/Favicon.ico",
+ "name": "Dragon Quest Wiki",
+ "triggers": [
+ "dq"
+ ],
+ "regions": {
+ "default": "http://dragon-quest.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://leaf.dragonflybsd.org/favicon.ico",
+ "name": "DragonFly BSD Manual Pages",
+ "triggers": [
+ "dragonflyman"
+ ],
+ "regions": {
+ "default": "https://leaf.dragonflybsd.org/cgi/web-man?command={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://leaf.dragonflybsd.org/favicon.ico",
+ "name": "DragonFly BSD manual pages",
+ "triggers": [
+ "dfman"
+ ],
+ "regions": {
+ "default": "https://leaf.dragonflybsd.org/cgi/web-man?command={{{term}}}&section=ANY"
+ }
+ },
+ {
+ "favicon": "http://www.dramafever.com/favicon.ico",
+ "name": "DramaFever",
+ "triggers": [
+ "fever"
+ ],
+ "regions": {
+ "default": "http://www.dramafever.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dramago.com/favicon.gif",
+ "name": "dramago",
+ "triggers": [
+ "dramago"
+ ],
+ "regions": {
+ "default": "http://www.dramago.com/drama/search?key={{{term}}}&stype=drama"
+ }
+ },
+ {
+ "favicon": "http://www.dreamincode.net/home/favicon.ico",
+ "name": "Dream In Code",
+ "triggers": [
+ "dreamincode"
+ ],
+ "regions": {
+ "default": "http://www.dreamincode.net/forums/index.php?app=core&module=search&section=search&do=quick_search&search_app=core&fromsearch=1&search_term={{{term}}}&search_app=forums"
+ }
+ },
+ {
+ "favicon": "http://dreamfilmhd.bz/favicon.ico",
+ "name": "Dreamfilm",
+ "triggers": [
+ "dreamfilm"
+ ],
+ "regions": {
+ "default": "http://dreamfilmhd.bz/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dreammoods.com/favicon.ico",
+ "name": "DreamMoods",
+ "triggers": [
+ "dream"
+ ],
+ "regions": {
+ "default": "http://dreammoods.com/cgibin/dreamdictionarysearch.pl?method=exact&header=dreamsymbol&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.dribbble.com/assets/dribbble-ball-192-ec064e49e6f63d9a5fa911518781bee0c90688d052a038f8876ef0824f65eaf2.png",
+ "name": "dribbble",
+ "triggers": [
+ "dribble",
+ "dr",
+ "dribbble"
+ ],
+ "regions": {
+ "default": "https://dribbble.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.drinkify.org/favicon.ico",
+ "name": "Drinkify",
+ "triggers": [
+ "drinkify"
+ ],
+ "regions": {
+ "default": "http://www.drinkify.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.drinksmixer.com/favicon.ico",
+ "name": "DrinksMixer",
+ "triggers": [
+ "mixer"
+ ],
+ "regions": {
+ "default": "http://www.drinksmixer.com/search/?q={{{term}}}&d=1&p=1"
+ }
+ },
+ {
+ "favicon": "https://assets.drivetribe.com/v2.9.1-3027-g01e117e/android-favicon.png",
+ "name": "Drive Tribe",
+ "triggers": [
+ "drivetribe"
+ ],
+ "regions": {
+ "default": "https://drivetribe.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.drivethrurpg.com/themes/dtrpg/favicon.ico",
+ "name": "DriveThruRPG",
+ "triggers": [
+ "dtrpg"
+ ],
+ "regions": {
+ "default": "https://www.drivethrurpg.com/browse.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cfl.dropboxstatic.com/static/images/favicon-vflUeLeeY.ico",
+ "name": "Dropbox",
+ "triggers": [
+ "dropbox"
+ ],
+ "regions": {
+ "default": "https://www.dropbox.com/search/personal?query_unnormalized={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.drudgereportarchives.com/favicon.ico",
+ "name": "Drudge Report",
+ "triggers": [
+ "drudge"
+ ],
+ "regions": {
+ "default": "http://www.drudgereportarchives.com/dsp/search.htm?searchFor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.drugbank.ca/favicons/favicon.ico",
+ "name": "drugbank.ca",
+ "triggers": [
+ "drugbank"
+ ],
+ "regions": {
+ "default": "http://www.drugbank.ca/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.drugs.com/img/favicon/ddc-icon-16x16.png",
+ "name": "Drugs",
+ "triggers": [
+ "drugs"
+ ],
+ "regions": {
+ "default": "http://www.drugs.com/search.php?&searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://drupal.org/favicon.ico",
+ "name": "drupal",
+ "triggers": [
+ "drupp"
+ ],
+ "regions": {
+ "default": "http://drupal.org/project/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://drupal.org/favicon.ico",
+ "name": "Drupal",
+ "triggers": [
+ "drupal"
+ ],
+ "regions": {
+ "default": "http://drupal.org/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://api.drupal.org/misc/favicon.ico",
+ "name": "Drupal API",
+ "triggers": [
+ "dapi"
+ ],
+ "regions": {
+ "default": "https://api.drupal.org/api/drupal/latest/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://api.drupal.org/misc/favicon.ico",
+ "name": "Drupal API",
+ "triggers": [
+ "drupalapi"
+ ],
+ "regions": {
+ "default": "https://api.drupal.org/api/drupal/includes%21common.inc/function/{{{term}}}/7.x"
+ }
+ },
+ {
+ "favicon": "http://drupalcode.org/favicon.ico",
+ "name": "drupalcode.org",
+ "triggers": [
+ "drupalcode"
+ ],
+ "regions": {
+ "default": "http://drupalcode.org/project/{{{term}}}.git"
+ }
+ },
+ {
+ "favicon": "http://dsv.su.se/polopoly_fs/1.118008.1357891608!/menu/standard/file/logo-neg-svensk_ny.gif",
+ "name": "DSV SU",
+ "triggers": [
+ "dsv"
+ ],
+ "regions": {
+ "default": "http://dsv.su.se/s%C3%B6k?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d.tube/DTube_files/images/dtubefavicon.png",
+ "name": "DTube",
+ "triggers": [
+ "dtube"
+ ],
+ "regions": {
+ "default": "https://d.tube/#!/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://duckduckgo.com/favicon.ico",
+ "name": "DuckDuckGo",
+ "triggers": [
+ "ddg",
+ "duck"
+ ],
+ "regions": {
+ "default": "https://duckduckgo.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://code.dlang.org/favicon.ico",
+ "name": "Dub Package Registry",
+ "triggers": [
+ "dub"
+ ],
+ "regions": {
+ "default": "https://code.dlang.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dbzstatic-a.akamaihd.net/.dist_47778fbf1577c4850317762d5c1ba2cdad6ab5ed/images/favicon-hd.ico",
+ "name": "dubizzle.com",
+ "triggers": [
+ "dubizzle"
+ ],
+ "regions": {
+ "default": "http://dubai.dubizzle.com/search/?keywords={{{term}}}&is_basic_search_widget=1&is_search=1"
+ }
+ },
+ {
+ "favicon": "https://www.duden.de/favicon.ico",
+ "name": "Duden",
+ "triggers": [
+ "duden"
+ ],
+ "regions": {
+ "default": "https://www.duden.de/suchen/dudenonline/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.duedil.com/favicon_black.ico",
+ "name": "Duedil",
+ "triggers": [
+ "duedil"
+ ],
+ "regions": {
+ "default": "https://www.duedil.com/companies/search?query={{{term}}}&op=Companies"
+ }
+ },
+ {
+ "favicon": "http://duke.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "Duke Summon",
+ "triggers": [
+ "dlss"
+ ],
+ "regions": {
+ "default": "http://duke.summon.serialssolutions.com/?summonVersion=2.0#!/search?ho=t&fvf=SourceType,Library%20Catalog,f%7CContentType,Book%20%2F%20eBook,f&q={{{term}}}&l=en"
+ }
+ },
+ {
+ "favicon": "http://search.library.duke.edu/favicon.ico",
+ "name": "Duke University Catalog",
+ "triggers": [
+ "duc"
+ ],
+ "regions": {
+ "default": "http://search.library.duke.edu/search?Ntt={{{term}}}&Ntk=Keyword&output-format=search"
+ }
+ },
+ {
+ "favicon": "https://libcms.oit.duke.edu/sites/default/files/dul/favicon.ico",
+ "name": "Duke University Libraries",
+ "triggers": [
+ "dul"
+ ],
+ "regions": {
+ "default": "https://library.duke.edu/find/all?Ntt={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.duluxdecoratorcentre.co.uk/content/files/images/favicon-ddc.ico",
+ "name": "Dulux Decorator Centre",
+ "triggers": [
+ "duluxdc"
+ ],
+ "regions": {
+ "default": "http://www.duluxdecoratorcentre.co.uk/servlet/SiteAdvancedSearchHandler?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dulux.co.uk/profiles/flourish/themes/custom/flourish_rem/images/logos/eukdlx/fav_icon.png",
+ "name": "Dulux UK",
+ "triggers": [
+ "duluxuk"
+ ],
+ "regions": {
+ "default": "https://www.dulux.co.uk/en/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dumpert.nl/favicon.ico",
+ "name": "Dumpert",
+ "triggers": [
+ "dumpert"
+ ],
+ "regions": {
+ "default": "http://www.dumpert.nl/search/ALL/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/dungeons/images/6/64/Favicon.ico/revision/latest?cb=20091117215827",
+ "name": "Dungeons and Dragons Wiki",
+ "triggers": [
+ "dndwiki"
+ ],
+ "regions": {
+ "default": "http://dungeons.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dustin.se/favicon.ico",
+ "name": "Dustin.se",
+ "triggers": [
+ "dustin"
+ ],
+ "regions": {
+ "default": "https://www.dustin.se/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dustloop.com/favicon.ico",
+ "name": "Dustloop Wiki",
+ "triggers": [
+ "dustloop"
+ ],
+ "regions": {
+ "default": "http://www.dustloop.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Dutch Wikipedia",
+ "triggers": [
+ "nlwi",
+ "wnl",
+ "wikinl"
+ ],
+ "regions": {
+ "default": "https://nl.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Dutch Wikipedia",
+ "triggers": [
+ "nlwiki"
+ ],
+ "regions": {
+ "default": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nl.wiktionary.org/static/favicon/piece.ico",
+ "name": "Dutch Wiktionary",
+ "triggers": [
+ "wiktnl"
+ ],
+ "regions": {
+ "default": "https://nl.wiktionary.org/w/index.php?search={{{term}}}&title=Speciaal%3AZoeken"
+ }
+ },
+ {
+ "favicon": "http://www.dv247.com/INTERSHOP/static/WFS/MusicStore-MusicStoreShop-Site/ms-gb/-/en_US/images/Android-128.png",
+ "name": "DV247",
+ "triggers": [
+ "dv247"
+ ],
+ "regions": {
+ "default": "http://www.dv247.com/search/0/0/Relevance/Descending/{{{term}}}/1/"
+ }
+ },
+ {
+ "favicon": "https://m.dvb.de/favicon.ico",
+ "name": "DVB",
+ "triggers": [
+ "dvb"
+ ],
+ "regions": {
+ "default": "https://m.dvb.de/de/verbindungsauskunft/verbindungen.do?vaform%5Bstartname%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.dvdfr.com/images/icons/dvdfr_ico.png",
+ "name": "DVDFr",
+ "triggers": [
+ "dvdfr"
+ ],
+ "regions": {
+ "default": "http://www.dvdfr.com/search/search.php?produit=all&title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dvdpascher.net/images/favicon.ico",
+ "name": "DVDpasCher",
+ "triggers": [
+ "dpc"
+ ],
+ "regions": {
+ "default": "http://dvdpascher.net/recherche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dw.com/favicon.png",
+ "name": "DW - Actualidad en español",
+ "triggers": [
+ "dwe"
+ ],
+ "regions": {
+ "default": "http://www.dw.com/search/es?languageCode=es&item={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dwarffortresswiki.org/favicon.ico",
+ "name": "dwarf fortress wiki",
+ "triggers": [
+ "dwarf"
+ ],
+ "regions": {
+ "default": "http://dwarffortresswiki.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dwarffortresswiki.org/favicon.ico",
+ "name": "DwarfFortress Wiki",
+ "triggers": [
+ "dorf",
+ "dfw",
+ "dfwiki"
+ ],
+ "regions": {
+ "default": "http://dwarffortresswiki.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.dwdl.de/favicon.ico",
+ "name": "DWDL",
+ "triggers": [
+ "dwdl"
+ ],
+ "regions": {
+ "default": "http://www.dwdl.de/features/suche/?suche={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.dwds.de/favicon.gif",
+ "name": "DWDS",
+ "triggers": [
+ "dwds"
+ ],
+ "regions": {
+ "default": "http://www.dwds.de/?qu={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dxomark.com/favicon.ico",
+ "name": "dxomark.com",
+ "triggers": [
+ "dxo"
+ ],
+ "regions": {
+ "default": "https://www.dxomark.com/content/search/?SearchText={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://docs.anakeen.com/icons/favicon.ico",
+ "name": "Dynacase documentation",
+ "triggers": [
+ "dcp"
+ ],
+ "regions": {
+ "default": "http://docs.anakeen.com/dynacase/stable/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dr.loudness-war.info/favicon.ico",
+ "name": "Dynamic Range Database",
+ "triggers": [
+ "drdb"
+ ],
+ "regions": {
+ "default": "http://dr.loudness-war.info/album/list?artist={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dr.loudness-war.info/favicon.ico",
+ "name": "Dynamic Range Database",
+ "triggers": [
+ "dynamicrange"
+ ],
+ "regions": {
+ "default": "http://www.dr.loudness-war.info/index.php?search_artist={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dr.loudness-war.info/favicon.ico",
+ "name": "Dynamic Range Database (album)",
+ "triggers": [
+ "dynamicrangea"
+ ],
+ "regions": {
+ "default": "http://www.dr.loudness-war.info/index.php?search_album={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dr.loudness-war.info/favicon.ico",
+ "name": "Dynamic Range Database (album)",
+ "triggers": [
+ "drdba"
+ ],
+ "regions": {
+ "default": "http://dr.loudness-war.info/album/list?album={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dynamite.com/htmlfiles/favicon.ico",
+ "name": "Dynamite Entertainment",
+ "triggers": [
+ "dynamite"
+ ],
+ "regions": {
+ "default": "http://dynamite.com/htmlfiles/search2.html?0=19&next0=&KMPZ={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dynasty-scans.com/assets/favicon-96599a954b862bfaaa71372cc403a6ab.png",
+ "name": "Dynasty Reader",
+ "triggers": [
+ "dynasty"
+ ],
+ "regions": {
+ "default": "http://dynasty-scans.com/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://e-gear.se/skin/frontend/default/sm-megashop/favicon.ico",
+ "name": "e-Gear",
+ "triggers": [
+ "egear"
+ ],
+ "regions": {
+ "default": "https://e-gear.se/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kn.eki.ee/favicon.ico",
+ "name": "e-keelenõu",
+ "triggers": [
+ "keel"
+ ],
+ "regions": {
+ "default": "http://kn.eki.ee/?Q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.e-ville.com/favicon.ico",
+ "name": "e-ville.com",
+ "triggers": [
+ "evillecom"
+ ],
+ "regions": {
+ "default": "http://www.e-ville.com/fi/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://e621.net/favicon.ico",
+ "name": "e621",
+ "triggers": [
+ "e621"
+ ],
+ "regions": {
+ "default": "https://e621.net/post?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://e926.net/favicon-16x16.png",
+ "name": "e926",
+ "triggers": [
+ "e926"
+ ],
+ "regions": {
+ "default": "http://e926.net/post/search?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ean-search.org/favicon.ico",
+ "name": "EAN Search",
+ "triggers": [
+ "ean"
+ ],
+ "regions": {
+ "default": "http://www.ean-search.org/perl/ean-search.pl?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/physics/img/favicon.ico?v=914e8b074a8a",
+ "name": "Earth Science Stack Exchange",
+ "triggers": [
+ "esse",
+ "pse",
+ "physe",
+ "physse"
+ ],
+ "regions": {
+ "default": "https://physics.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//earth911.com/wp-content/uploads/2015/07/favicon.png",
+ "name": "Earth911.com",
+ "triggers": [
+ "recycle",
+ "earth911"
+ ],
+ "regions": {
+ "default": "http://search.earth911.com/?what={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/earthbound/images/6/64/Favicon.ico/revision/latest?cb=20081117210620",
+ "name": "Earthbound Wiki",
+ "triggers": [
+ "earthbound"
+ ],
+ "regions": {
+ "default": "http://earthbound.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.earthcam.com/favicon.ico",
+ "name": "earthcam",
+ "triggers": [
+ "earthcam"
+ ],
+ "regions": {
+ "default": "http://www.earthcam.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.eeggs.com/favicon.ico",
+ "name": "Easter Eggs",
+ "triggers": [
+ "eeggs"
+ ],
+ "regions": {
+ "default": "http://www.eeggs.com/php/search.php?cx=partner-pub-3374430587172271%3Aqa6js0-hxxa&cof=FORID%3A10&ie=ISO-8859-1&q={{{term}}}&siteurl=www.eeggs.com/&ref="
+ }
+ },
+ {
+ "favicon": "http://easy-bi.org/blog/wp-content/uploads/2013/10/easy-bi.ico",
+ "name": "Easy-BI",
+ "triggers": [
+ "easybi"
+ ],
+ "regions": {
+ "default": "http://easy-bi.org/blog/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-edge3.easybib.com/images/favicon.ico",
+ "name": "Easybib",
+ "triggers": [
+ "easybib"
+ ],
+ "regions": {
+ "default": "http://www.easybib.com/cite/eval?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.eatbydate.com/wp-content/uploads/favicon3.png",
+ "name": "Eat By Date",
+ "triggers": [
+ "eatbydate"
+ ],
+ "regions": {
+ "default": "http://eatbydate.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.eatbydate.com/wp-content/uploads/favicon3.png",
+ "name": "Eat By Date",
+ "triggers": [
+ "ebd"
+ ],
+ "regions": {
+ "default": "http://www.eatbydate.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eattender.com/favicon.ico",
+ "name": "Eat Tender",
+ "triggers": [
+ "eattender"
+ ],
+ "regions": {
+ "default": "http://eattender.com/recipes/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eattheweeds.com/wp-content/uploads/2017/10/Favicon.png",
+ "name": "Eat The Weeds",
+ "triggers": [
+ "etw"
+ ],
+ "regions": {
+ "default": "http://www.eattheweeds.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eauxvives.org/favicon.ico",
+ "name": "Eauxvives",
+ "triggers": [
+ "evo"
+ ],
+ "regions": {
+ "default": "http://www.eauxvives.org/forum/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ebgames.com.au/favicon.ebgames.ico",
+ "name": "EB Games",
+ "triggers": [
+ "ebg"
+ ],
+ "regions": {
+ "default": "https://ebgames.com.au/any/any?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ebgames.com.au/favicon.ebgames.ico",
+ "name": "EB Games Australia",
+ "triggers": [
+ "ebgamesaustralia"
+ ],
+ "regions": {
+ "default": "https://www.ebgames.com.au/any/any?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.ebates.com/images/icons/icon-32.png",
+ "name": "Ebates",
+ "triggers": [
+ "ebates"
+ ],
+ "regions": {
+ "default": "http://www.ebates.com/search/all.htm?query={{{term}}}&position=submit&type=suggest&store_name=ifbedfebf"
+ }
+ },
+ {
+ "favicon": "//static.ebates.ca/static/images/favicon.1.0.1.ico",
+ "name": "Ebates Canda",
+ "triggers": [
+ "ebatesca"
+ ],
+ "regions": {
+ "default": "https://www.ebates.ca/srch/all?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "eBay",
+ "triggers": [
+ "ebseller"
+ ],
+ "regions": {
+ "default": "https://www.ebay.com/sch/{{{term}}}/m.html"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay (ES)",
+ "triggers": [
+ "ebes",
+ "ebayes",
+ "ees"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/1185-53479-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229501&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "Ebay Austria",
+ "triggers": [
+ "e.at"
+ ],
+ "regions": {
+ "default": "https://www.ebay.at/sch/i.html?_nkw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "Ebay Germany",
+ "triggers": [
+ "e.de"
+ ],
+ "regions": {
+ "default": "https://www.ebay.de/sch/i.html?_nkw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ebay-kleinanzeigen.de/favicon.ico",
+ "name": "eBay Kleinanzeigen",
+ "triggers": [
+ "klein"
+ ],
+ "regions": {
+ "default": "https://www.ebay-kleinanzeigen.de/{{{term}}}/k0"
+ }
+ },
+ {
+ "favicon": "http://www.ebay-kleinanzeigen.de/favicon.ico",
+ "name": "Ebay Kleinanzeigen",
+ "triggers": [
+ "eka"
+ ],
+ "regions": {
+ "default": "http://www.ebay-kleinanzeigen.de/s-{{{term}}}/k0"
+ }
+ },
+ {
+ "favicon": "https://www.ebay-kleinanzeigen.de/favicon.ico",
+ "name": "Ebay Kleinanzeigen",
+ "triggers": [
+ "ebaykleinanzeigen"
+ ],
+ "regions": {
+ "default": "https://www.ebay-kleinanzeigen.de/s-{{{term}}}/k0"
+ }
+ },
+ {
+ "favicon": "https://kleinanzeigen.ebay.de/favicon.ico",
+ "name": "eBay Kleinanzeigen Berlin",
+ "triggers": [
+ "ekb"
+ ],
+ "regions": {
+ "default": "https://kleinanzeigen.ebay.de/anzeigen/s-berlin/{{{term}}}/k0l3331"
+ }
+ },
+ {
+ "favicon": "https://www.ebay-kleinanzeigen.de/favicon.ico",
+ "name": "eBay Kleinanzeigen München",
+ "triggers": [
+ "ekm"
+ ],
+ "regions": {
+ "default": "https://www.ebay-kleinanzeigen.de/s-muenchen/{{{term}}}/k0l6411"
+ }
+ },
+ {
+ "favicon": "http://motors.shop.ebay.com/favicon.ico",
+ "name": "eBay Motors",
+ "triggers": [
+ "em"
+ ],
+ "regions": {
+ "default": "http://motors.shop.ebay.com/eBay-Motors-/6000/i.html?_nkw={{{term}}}&_trksid=p2050885.m570.l1313&_rdc=1"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "Ebay UK",
+ "triggers": [
+ "e.uk"
+ ],
+ "regions": {
+ "default": "http://www.ebay.co.uk/sch/i.html?_nkw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.at",
+ "triggers": [
+ "eat",
+ "ebayat",
+ "ebat"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/5221-53469-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229473&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.be",
+ "triggers": [
+ "ebaybe",
+ "ebe",
+ "ebbe"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/1553-53471-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229522&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.ca",
+ "triggers": [
+ "eca",
+ "ebayca",
+ "ebca"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/706-53473-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229529&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.ch",
+ "triggers": [
+ "ech",
+ "ebch",
+ "ebaych"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/5222-53480-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229536&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.co.uk",
+ "triggers": [
+ "ebayuk",
+ "euk",
+ "ebuk"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/710-53481-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229508&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.com.au",
+ "triggers": [
+ "ebau",
+ "ebayau",
+ "eau"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/705-53470-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229515&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.com.hk/favicon.ico",
+ "name": "ebay.com.hk",
+ "triggers": [
+ "ebayhk",
+ "ehk",
+ "ebhk"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.com.hk/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.com.my/favicon.ico",
+ "name": "ebay.com.my",
+ "triggers": [
+ "emy",
+ "ebaymy",
+ "ebmy"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.com.my/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.com.sg/favicon.ico",
+ "name": "ebay.com.sg",
+ "triggers": [
+ "esg",
+ "ebsg",
+ "ebaysg"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.com.sg/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.de",
+ "triggers": [
+ "ebayde",
+ "ebde",
+ "ede"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/707-53477-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229487&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.fr",
+ "triggers": [
+ "ebayfr",
+ "ebfr",
+ "efr"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/709-53476-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229480&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "ebay.gr",
+ "triggers": [
+ "ebgr",
+ "ebaygr",
+ "egr"
+ ],
+ "regions": {
+ "default": "http://search.eim.ebay.gr/?kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.ie",
+ "triggers": [
+ "eie",
+ "ebayie",
+ "ebie"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/5282-53468-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229543&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.in/favicon.ico",
+ "name": "ebay.in",
+ "triggers": [
+ "ebayin",
+ "ein",
+ "ebin"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.in/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.it",
+ "triggers": [
+ "ebit",
+ "eit",
+ "ebayit"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/724-53478-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229494&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "https://rover.ebay.com/favicon.ico",
+ "name": "ebay.nl",
+ "triggers": [
+ "ebaynl",
+ "ebnl",
+ "enl"
+ ],
+ "regions": {
+ "default": "https://rover.ebay.com/rover/1/1346-53482-19255-0/1?icep_ff3=9&pub=5574933636&toolid=10001&campid=5336728181&customid=&icep_uq={{{term}}}&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229557&kwid=902099&mtid=824&kw=lg"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.ph/favicon.ico",
+ "name": "ebay.ph",
+ "triggers": [
+ "ebayph",
+ "ebph",
+ "eph"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.ph/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "http://shop.ebay.pl/favicon.ico",
+ "name": "ebay.pl",
+ "triggers": [
+ "ebpl",
+ "epl",
+ "ebaypl"
+ ],
+ "regions": {
+ "default": "http://shop.ebay.pl/?_nkw={{{term}}}&_sacat=See-All-Categories"
+ }
+ },
+ {
+ "favicon": "https://www.ebook.de/v430b206/themes-1/set-63/FL-img/noSprite/favicon.ico",
+ "name": "eBook.de",
+ "triggers": [
+ "ebookde"
+ ],
+ "regions": {
+ "default": "https://www.ebook.de/de/quickSearch?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ebook3000.com/favicon.ico",
+ "name": "ebook3000",
+ "triggers": [
+ "eb3"
+ ],
+ "regions": {
+ "default": "http://www.ebook3000.com/plus/search.php?keyword={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://ebookee.org/favicon.ico",
+ "name": "Ebookee",
+ "triggers": [
+ "ebookee"
+ ],
+ "regions": {
+ "default": "http://ebookee.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://site.ebrary.com/favicon.ico",
+ "name": "ebrary",
+ "triggers": [
+ "ebrary"
+ ],
+ "regions": {
+ "default": "http://site.ebrary.com/lib/alltitles/search.action?p00={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.eciaauthorized.com/favicon.ico",
+ "name": "ECIA Authorized",
+ "triggers": [
+ "ecia"
+ ],
+ "regions": {
+ "default": "http://www.eciaauthorized.com/search?pn={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0688/4295/files/E_small.png?v=1527710857",
+ "name": "Eclair.md",
+ "triggers": [
+ "eclair"
+ ],
+ "regions": {
+ "default": "http://eclair.md/search?type=product&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.eclipse.org/eclipse.org-common/themes/solstice/public/images/favicon.ico",
+ "name": "Eclipse Wiki (Eclipsepedia)",
+ "triggers": [
+ "eclipsewiki"
+ ],
+ "regions": {
+ "default": "https://wiki.eclipse.org/index.php?search={{{term}}}&fulltext=search"
+ }
+ },
+ {
+ "favicon": "http://www.ecolab.com/Areas/EcolabSite/img/favicon.ico",
+ "name": "Ecolab",
+ "triggers": [
+ "ecolab"
+ ],
+ "regions": {
+ "default": "http://www.ecolab.com/search/#q={{{term}}}&sort=relevancy"
+ }
+ },
+ {
+ "favicon": "https://ecolo.be/wp-content/uploads/2017/04/cropped-Logo_ecolo_e_big-192x192.png",
+ "name": "ECOLO",
+ "triggers": [
+ "ecolo"
+ ],
+ "regions": {
+ "default": "http://www.ecolo.be/spip.php?recherche={{{term}}}&page=recherche"
+ }
+ },
+ {
+ "favicon": "https://econjwatch.org/favicon.ico",
+ "name": "Econ Journal Watch",
+ "triggers": [
+ "ejw"
+ ],
+ "regions": {
+ "default": "https://econjwatch.org/search/?m=all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.econbiz.de/themes/econbiz/images/econbiz-favicon.ico",
+ "name": "Econbiz",
+ "triggers": [
+ "econbiz"
+ ],
+ "regions": {
+ "default": "http://www.econbiz.de/Search/Results?lookfor={{{term}}}&type=AllFields&submit=Suchen"
+ }
+ },
+ {
+ "favicon": "https://www.epw.in/system/files/epw.ico",
+ "name": "Economic Political Weekly",
+ "triggers": [
+ "epwin"
+ ],
+ "regions": {
+ "default": "http://www.epw.in/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ecoshopper.de/ecoshopper.ico",
+ "name": "ecoshopper.de",
+ "triggers": [
+ "ecoshopper"
+ ],
+ "regions": {
+ "default": "http://www.ecoshopper.de/ecoshopper2/faces/SuchErgebnis.jsp?query={{{term}}}&brancheDropDown=alle&preisspanneDropDown=0&_charset_=UTF-8&suchen=Suchen&searchrange=namen"
+ }
+ },
+ {
+ "favicon": "https://cdn.ecosia.org/assets/images/ico/favicon.ico",
+ "name": "Ecosia",
+ "triggers": [
+ "ec"
+ ],
+ "regions": {
+ "default": "https://www.ecosia.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.ecosia.org/assets/images/ico/favicon.ico",
+ "name": "Ecosia",
+ "triggers": [
+ "ecosia",
+ "eco"
+ ],
+ "regions": {
+ "default": "https://www.ecosia.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.ecosia.org/assets/images/ico/favicon.ico",
+ "name": "Ecosia Image Search",
+ "triggers": [
+ "ecim",
+ "ei"
+ ],
+ "regions": {
+ "default": "https://www.ecosia.org/images?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ecover.to/favicon.ico",
+ "name": "eCover",
+ "triggers": [
+ "ecover"
+ ],
+ "regions": {
+ "default": "http://ecover.to/?Module=ExtendedSearch&SearchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ed2k.shortypower.org/i/0.ico",
+ "name": "ed2k",
+ "triggers": [
+ "ed2ksp",
+ "ed2k"
+ ],
+ "regions": {
+ "default": "http://ed2k.shortypower.org/?hash={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//imagecloud.edbpriser.dk/images/favicon-16x16.png",
+ "name": "EDBpriser.dk",
+ "triggers": [
+ "edbpriser"
+ ],
+ "regions": {
+ "default": "http://www.edbpriser.dk/Search/General.aspx?q={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eddiebauer.com/static/img/icons/touch-icon-192x192.png",
+ "name": "Eddie Bauer",
+ "triggers": [
+ "eddiebauer"
+ ],
+ "regions": {
+ "default": "http://www.eddiebauer.com/catalog/search.jsp?N=0&Ntk=IALL&Ntt={{{term}}}&Nr=REG%3aY&Nty=1&Ntx=mode+matchpartialmax&D=bdecab&Dx=mode+matchpartialmax&cm_se=bdecab_All&init=1"
+ }
+ },
+ {
+ "favicon": "http://www.editus.lu/favicon-16x16.png",
+ "name": "editus.lu",
+ "triggers": [
+ "editus"
+ ],
+ "regions": {
+ "default": "http://www.editus.lu/ed/fr/recherche.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/EDMofy.com/wp-content/uploads/2016/12/cropped-Emdofy-favicon-2.png?fit=192,192",
+ "name": "edmofy.com",
+ "triggers": [
+ "edm"
+ ],
+ "regions": {
+ "default": "http://edmofy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eric.ed.gov/favicon.ico",
+ "name": "Education Resources Information Center",
+ "triggers": [
+ "eric"
+ ],
+ "regions": {
+ "default": "https://eric.ed.gov/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.edweek.org/media/site-icons/ew-favicon.ico",
+ "name": "Education Week",
+ "triggers": [
+ "edweek"
+ ],
+ "regions": {
+ "default": "http://www.edweek.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://edutin.com/favicon.ico",
+ "name": "Edutin",
+ "triggers": [
+ "edut"
+ ],
+ "regions": {
+ "default": "http://edutin.com/cursos/buscar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://edwardfeser.blogspot.com/favicon.ico",
+ "name": "Edward Feser",
+ "triggers": [
+ "feser"
+ ],
+ "regions": {
+ "default": "https://edwardfeser.blogspot.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.edx.org/sites/default/files/theme/favicon.png",
+ "name": "Edx",
+ "triggers": [
+ "edx"
+ ],
+ "regions": {
+ "default": "https://www.edx.org/course?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//g4.nh.ee/ee/l/favicon.ico",
+ "name": "Eesti Ekspress",
+ "triggers": [
+ "ekspress"
+ ],
+ "regions": {
+ "default": "http://ekspress.delfi.ee/otsing/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eki.ee/templates/eki/favicon.ico",
+ "name": "Eesti keele seletav sõnaraamat",
+ "triggers": [
+ "ekss"
+ ],
+ "regions": {
+ "default": "http://www.eki.ee/dict/ekss/index.cgi?Q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eki.ee/templates/eki/favicon.ico",
+ "name": "Eesti õigekeelsussõnaraamat",
+ "triggers": [
+ "õ"
+ ],
+ "regions": {
+ "default": "http://www.eki.ee/dict/qs/index.cgi?Q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eki.ee/templates/eki/favicon.ico",
+ "name": "Eesti õigekeelsussõnaraamat ÕS 2013",
+ "triggers": [
+ "õs"
+ ],
+ "regions": {
+ "default": "http://www.eki.ee/dict/qs/index.cgi?Q={{{term}}}&F=M"
+ }
+ },
+ {
+ "favicon": "http://eki.ee/templates/eki/favicon.ico",
+ "name": "Eesti-vene",
+ "triggers": [
+ "evs"
+ ],
+ "regions": {
+ "default": "http://eki.ee/dict/evs/index.cgi?Q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://e.ggtimer.com/images/favicon.ico",
+ "name": "Egg Timer",
+ "triggers": [
+ "eggtimer"
+ ],
+ "regions": {
+ "default": "http://e.ggtimer.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://mslworld.egged.co.il/favicon.ico",
+ "name": "Egged",
+ "triggers": [
+ "egged"
+ ],
+ "regions": {
+ "default": "http://mslworld.egged.co.il/?state=3&language=he&freelang={{{term}}}&width=1280#/search"
+ }
+ },
+ {
+ "favicon": "https://egghead.io/favicon.ico?v=2",
+ "name": "Egghead",
+ "triggers": [
+ "egghead"
+ ],
+ "regions": {
+ "default": "https://egghead.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://egliseinfo.catholique.fr/favicon.png",
+ "name": "Eglise info",
+ "triggers": [
+ "messeinfo"
+ ],
+ "regions": {
+ "default": "http://egliseinfo.catholique.fr/horaires/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ehow.com/favicon.ico",
+ "name": "eHow",
+ "triggers": [
+ "ehow"
+ ],
+ "regions": {
+ "default": "https://www.ehow.com/search.html?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://federal-ein-application.com/favicon.ico",
+ "name": "EIN Application",
+ "triggers": [
+ "einapplication"
+ ],
+ "regions": {
+ "default": "https://federal-ein-application.com/?apply={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//ekstat.com/img/favicon-16x16.png",
+ "name": "ek$i sozluk",
+ "triggers": [
+ "eksi",
+ "sozluk",
+ "eksisozluk"
+ ],
+ "regions": {
+ "default": "http://www.eksisozluk.com/show.asp?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://elbauldelprogramador.com/favicon.png",
+ "name": "El Baul del Programador",
+ "triggers": [
+ "elbaul"
+ ],
+ "regions": {
+ "default": "http://elbauldelprogramador.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.elconfidencial.com/favicon.ico",
+ "name": "El Confidencial",
+ "triggers": [
+ "confi"
+ ],
+ "regions": {
+ "default": "http://www.elconfidencial.com/buscar/2-6-1-3/0/1/10/desc/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.elconjugador.com/favicon.ico",
+ "name": "El conjugador",
+ "triggers": [
+ "elconjugador"
+ ],
+ "regions": {
+ "default": "http://www.elconjugador.com/conjugaison/verbe/espagnol/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.elcorteingles.es/favicon.ico",
+ "name": "El Corte Ingles",
+ "triggers": [
+ "eci"
+ ],
+ "regions": {
+ "default": "https://www.elcorteingles.es/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eldestapeweb.com/favicon.ico",
+ "name": "El Destape Web",
+ "triggers": [
+ "edweb"
+ ],
+ "regions": {
+ "default": "http://www.eldestapeweb.com/{{{term}}}-s"
+ }
+ },
+ {
+ "favicon": "https://e00-elmundo.uecdn.es/favicon.ico",
+ "name": "El Mundo",
+ "triggers": [
+ "elmundo"
+ ],
+ "regions": {
+ "default": "http://ariadna.elmundo.es/buscador/archivo.html?q={{{term}}}&b_avanzada="
+ }
+ },
+ {
+ "favicon": "http://www.elobservador.com.uy/favicon.ico",
+ "name": "El Observador",
+ "triggers": [
+ "elobs"
+ ],
+ "regions": {
+ "default": "http://www.elobservador.com.uy/{{{term}}}-s"
+ }
+ },
+ {
+ "favicon": "https://www.eolonline.com.ar/favicon.ico",
+ "name": "El Otro Lado de Morón",
+ "triggers": [
+ "moron"
+ ],
+ "regions": {
+ "default": "http://www.eolonline.com.ar/info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ep01.epimg.net/favicon.png",
+ "name": "El Pais",
+ "triggers": [
+ "elpais"
+ ],
+ "regions": {
+ "default": "https://elpais.com/buscador/?qt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdnbitmaps.eltiempo.es/images/favicon/eltiempo/16x16.png",
+ "name": "El Tiempo",
+ "triggers": [
+ "et"
+ ],
+ "regions": {
+ "default": "http://www.eltiempo.es/buscar?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.elastic.co/favicon.ico",
+ "name": "ElasticSearch Documentation",
+ "triggers": [
+ "elastic"
+ ],
+ "regions": {
+ "default": "https://www.elastic.co/search?q={{{term}}}&section=Learn%2FDocs%2F"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/elderscrolls/images/6/64/Favicon.ico/revision/latest?cb=20110829170229",
+ "name": "Elder Scrolls Wiki (Page)",
+ "triggers": [
+ "elderwiki"
+ ],
+ "regions": {
+ "default": "http://elderscrolls.wikia.com/wiki/index.php?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://electron.atom.io/images/favicon.ico",
+ "name": "electron.atom.io",
+ "triggers": [
+ "electron"
+ ],
+ "regions": {
+ "default": "https://electron.atom.io/apps/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.eff.org/sites/all/themes/frontier/favicon.ico",
+ "name": "Electronic Frontier Foundation",
+ "triggers": [
+ "eff"
+ ],
+ "regions": {
+ "default": "https://www.eff.org/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.medicines.org.uk/emc/favicon.ico",
+ "name": "electronic medicines compendium",
+ "triggers": [
+ "emc"
+ ],
+ "regions": {
+ "default": "https://www.medicines.org.uk/emc/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.elektronik-kompendium.de/favicon.ico",
+ "name": "Elektronik-Kompendium",
+ "triggers": [
+ "ek"
+ ],
+ "regions": {
+ "default": "http://www.elektronik-kompendium.de/service/suchen/index.htm?domains=www.elektronik-kompendium.de&sitesearch=www.elektronik-kompendium.de&q={{{term}}}&sa=Suchen&client=pub-7453653573550802&forid=1&channel=3122011476&ie=ISO-8859-1&oe=ISO-8859-1&flav=0000&sig=XvZoofyEi29r3eL9&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23FFFFFF%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A11&hl=de"
+ }
+ },
+ {
+ "favicon": "http://www.duran2.de/favicon.ico",
+ "name": "Elektronik-Lexikon",
+ "triggers": [
+ "elexikon"
+ ],
+ "regions": {
+ "default": "http://www.duran2.de/felektro/suche.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.elfa.se/_ui/all/media/favicon.ico",
+ "name": "Elfa Distrelec",
+ "triggers": [
+ "elfa"
+ ],
+ "regions": {
+ "default": "https://www.elfa.se/elfa3~se_sv/elfa/init.do?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.elgiganten.se/INTERSHOP/static/WFS/store-elgigantenSE-Site/-/-/sv_SE/images/favicon/favicon.ico?v=Nm5AbKBAb0",
+ "name": "Elgiganten",
+ "triggers": [
+ "elgiganten"
+ ],
+ "regions": {
+ "default": "https://www.elgiganten.se/search?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://elgoog.im/search/favicon.ico",
+ "name": "elgooG",
+ "triggers": [
+ "elgoog"
+ ],
+ "regions": {
+ "default": "https://elgoog.im/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia EN-->EU",
+ "triggers": [
+ "elheneu"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/en_eu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia ES-->EU",
+ "triggers": [
+ "elheseu"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/es_eu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia EU-->EN",
+ "triggers": [
+ "elheuen"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/eu_en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia EU-->ES",
+ "triggers": [
+ "elheues"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/eu_es/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia EU-->FR",
+ "triggers": [
+ "elheufr"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/eu_fr/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.eus/favicon.ico",
+ "name": "Elhuyar Hiztegia FR-->EU",
+ "triggers": [
+ "elhfreu"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.eus/fr_eu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hiztegiak.elhuyar.org/favicon.ico",
+ "name": "Elhuyar Hiztegiak",
+ "triggers": [
+ "elhuyar"
+ ],
+ "regions": {
+ "default": "http://hiztegiak.elhuyar.org/es_eu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://elinux.org/favicon.ico",
+ "name": "eLinux",
+ "triggers": [
+ "elinux"
+ ],
+ "regions": {
+ "default": "http://elinux.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://elitedangerous.com/_assets/img/device-icons/favicon-16x16.png",
+ "name": "Elite Dangerous Forum",
+ "triggers": [
+ "edf"
+ ],
+ "regions": {
+ "default": "https://forums.frontier.co.uk/search.php?do=process&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/elite-dangerous/images/6/64/Favicon.ico/revision/latest?cb=20141226073149",
+ "name": "Elite: Dangerous Wiki",
+ "triggers": [
+ "edw"
+ ],
+ "regions": {
+ "default": "http://elite-dangerous.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://static1.squarespace.com/static/5997062446c3c49fde36ad3d/t/599cf127893fc09434e6072b/favicon.ico",
+ "name": "Elizabeth Knox Online",
+ "triggers": [
+ "eko"
+ ],
+ "regions": {
+ "default": "http://elizabethknoxonline.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ello.co/favicon.ico",
+ "name": "Ello",
+ "triggers": [
+ "ello"
+ ],
+ "regions": {
+ "default": "https://ello.co/search?terms={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ellos.se/INTERSHOP/static/WFS/Ellos-EllosSE-Site/-/-/sv_SE/images/favicon/favicon.ico",
+ "name": "Ellos",
+ "triggers": [
+ "ellos"
+ ],
+ "regions": {
+ "default": "http://www.ellos.se/search?Ntk=All&Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://klaftertief.github.io/favicon.ico",
+ "name": "Elm Search",
+ "triggers": [
+ "elm"
+ ],
+ "regions": {
+ "default": "https://klaftertief.github.io/elm-search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.elophant.com/images/favicon/favicon.ico",
+ "name": "Elophant",
+ "triggers": [
+ "elophant"
+ ],
+ "regions": {
+ "default": "http://www.elophant.com/league-of-legends/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eloquii.com/on/demandware.static/Sites-eloquii-Site/-/default/dwd8503502/images/favicon.ico",
+ "name": "Eloquii",
+ "triggers": [
+ "eloquii"
+ ],
+ "regions": {
+ "default": "http://www.eloquii.com/on/demandware.store/Sites-eloquii-Site/default/Search-Show?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.elotrolado.net/apple-touch-icon.png",
+ "name": "ElOtroLado",
+ "triggers": [
+ "elotrolado"
+ ],
+ "regions": {
+ "default": "http://www.elotrolado.net/search.php?keywords={{{term}}}&type=h"
+ }
+ },
+ {
+ "favicon": "http://www.eluta.ca/%20%20resource%20%20img/favicon.ico",
+ "name": "Eluta",
+ "triggers": [
+ "eluta"
+ ],
+ "regions": {
+ "default": "http://www.eluta.ca/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://elzr.com/favicon.ico",
+ "name": "elzr Imagery",
+ "triggers": [
+ "imagery"
+ ],
+ "regions": {
+ "default": "http://elzr.com/imagery?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/emacs/img/favicon.ico?v=18ed9986e1ff",
+ "name": "Emacs Stack Exchange",
+ "triggers": [
+ "est"
+ ],
+ "regions": {
+ "default": "http://emacs.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s5emagst.akamaized.net/assets/ro/css/icons/favicon.ico?v=1a",
+ "name": "eMAG",
+ "triggers": [
+ "emag"
+ ],
+ "regions": {
+ "default": "http://www.emag.ro/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://emberjs.com/images/favicon-b8f150dd.png",
+ "name": "Ember",
+ "triggers": [
+ "ember"
+ ],
+ "regions": {
+ "default": "http://emberjs.com/api/#stq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://emojicons.com/favicon-16x16.png",
+ "name": "Emojicons",
+ "triggers": [
+ "emojicons"
+ ],
+ "regions": {
+ "default": "http://emojicons.com/tag/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://emojipedia.org/static/img/favicons/favicon-16x16.png",
+ "name": "Emojipedia",
+ "triggers": [
+ "emoji"
+ ],
+ "regions": {
+ "default": "https://emojipedia.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://emojipedia.org/static/img/favicons/favicon-16x16.png",
+ "name": "Emojipedia",
+ "triggers": [
+ "emojipedia"
+ ],
+ "regions": {
+ "default": "https://emojipedia.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.emoney.ge/img/favicon.ico",
+ "name": "emoney.ge",
+ "triggers": [
+ "emoneyge"
+ ],
+ "regions": {
+ "default": "https://www.emoney.ge/index.php/main/services?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.emotiyou.com/favicon.ico",
+ "name": "Emotiyou",
+ "triggers": [
+ "emo"
+ ],
+ "regions": {
+ "default": "http://www.emotiyou.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.emp.de/on/demandware.static/Sites-GLB-Site/-/default/dwd3d0a816/images/favicon.ico",
+ "name": "EMP",
+ "triggers": [
+ "emp"
+ ],
+ "regions": {
+ "default": "http://www.emp.de/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.empik.com/b/mp/img/favicons/favicon-194x194.png",
+ "name": "Empik",
+ "triggers": [
+ "empik"
+ ],
+ "regions": {
+ "default": "http://www.empik.com/szukaj/produkt?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.empireonline.com/favicon-16x16.png",
+ "name": "Empire",
+ "triggers": [
+ "empire"
+ ],
+ "regions": {
+ "default": "http://www.empireonline.com/search/default.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://contentdb.emule-project.net/favicon.ico",
+ "name": "eMule Content Database",
+ "triggers": [
+ "emule"
+ ],
+ "regions": {
+ "default": "http://contentdb.emule-project.net/search.php?s={{{term}}}&cat=all&rel=1&search_option=simple&network=edonkey&go=Search"
+ }
+ },
+ {
+ "favicon": "https://b64459531885200b3efb-5206a7b3a50a3f5974248375cd863061.ssl.cf1.rackcdn.com/favicon-new.ico",
+ "name": "Emuparadise",
+ "triggers": [
+ "emuparadise"
+ ],
+ "regions": {
+ "default": "http://www.emuparadise.org/roms/search.php?query={{{term}}}&section=all"
+ }
+ },
+ {
+ "favicon": "https://b64459531885200b3efb-5206a7b3a50a3f5974248375cd863061.ssl.cf1.rackcdn.com/favicon-new.ico",
+ "name": "Emuparadise",
+ "triggers": [
+ "rom"
+ ],
+ "regions": {
+ "default": "http://www.emuparadise.me/roms/search.php?query={{{term}}}&section=all"
+ }
+ },
+ {
+ "favicon": "https://www.emusic.com/favicon.ico",
+ "name": "eMusic",
+ "triggers": [
+ "emusic"
+ ],
+ "regions": {
+ "default": "https://www.emusic.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dictionary.com/e/wp-content/themes/dictionary-com/images/favicon.ico?ver=1530135551",
+ "name": "EN to SPA | Dictionary.com",
+ "triggers": [
+ "dtes"
+ ],
+ "regions": {
+ "default": "http://translate.reference.com/english/spanish/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//static.bab.la/img/languages/favicon-128.png",
+ "name": "en.bab.la/dictionary/english-german/",
+ "triggers": [
+ "babende"
+ ],
+ "regions": {
+ "default": "http://en.bab.la/dictionary/english-german/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.encyclo.nl/favicon.png",
+ "name": "Encyclo",
+ "triggers": [
+ "enc",
+ "encyclo"
+ ],
+ "regions": {
+ "default": "http://www.encyclo.nl/begrip/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.britannica.com/favicon.ico",
+ "name": "Encyclopaedia Brittanica",
+ "triggers": [
+ "brit",
+ "ebrit"
+ ],
+ "regions": {
+ "default": "https://www.britannica.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.metal-archives.com/favicon.ico",
+ "name": "Encyclopaedia metallum",
+ "triggers": [
+ "mab"
+ ],
+ "regions": {
+ "default": "http://www.metal-archives.com/search?type=band_name&searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.encyclopediadramatica.rs/favicon.png",
+ "name": "Encyclopedia Dramatica",
+ "triggers": [
+ "ed"
+ ],
+ "regions": {
+ "default": "https://encyclopediadramatica.rs/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.metal-archives.com/favicon.ico",
+ "name": "Encyclopedia Metallum (The Metal Archives)",
+ "triggers": [
+ "metal",
+ "march",
+ "maband",
+ "metalarch",
+ "metallum"
+ ],
+ "regions": {
+ "default": "http://www.metal-archives.com/search?searchString={{{term}}}&type=band_name"
+ }
+ },
+ {
+ "favicon": "http://www.eoearth.org/favicon.ico",
+ "name": "Encyclopedia of Earth",
+ "triggers": [
+ "eoearth"
+ ],
+ "regions": {
+ "default": "http://www.eoearth.org/results/all/?searchnext=true&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://media.eol.org//assets/favicon-9de6ee8ce10b9ad7b2662236411f4539.ico",
+ "name": "Encyclopedia of Life",
+ "triggers": [
+ "eol"
+ ],
+ "regions": {
+ "default": "https://eol.org/search?q={{{term}}}&search=Go"
+ }
+ },
+ {
+ "favicon": "http://www.encyclopediaofmath.org/favicon.ico",
+ "name": "Encyclopedia of Mathematics",
+ "triggers": [
+ "eom",
+ "encyclopediaofmath"
+ ],
+ "regions": {
+ "default": "http://www.encyclopediaofmath.org/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.encyclopedia.com/sites/default/files/favicon.ico",
+ "name": "Encyclopedia.com",
+ "triggers": [
+ "encom"
+ ],
+ "regions": {
+ "default": "http://www.encyclopedia.com/searchresults.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.encyclo.nl/favicon.png",
+ "name": "Encyclopedie",
+ "triggers": [
+ "eccpd"
+ ],
+ "regions": {
+ "default": "http://www.encyclo.nl/zoek.php?woord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iranicaonline.org/articles/search/keywords:icfnmflemblijg",
+ "name": "Encyclopædia Iranica",
+ "triggers": [
+ "eir"
+ ],
+ "regions": {
+ "default": "http://www.iranicaonline.org/articles/search/keywords:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.universalis.fr/fav-fr.png",
+ "name": "Encyclopædia Universalis",
+ "triggers": [
+ "universalis"
+ ],
+ "regions": {
+ "default": "https://www.universalis.fr/recherche/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://endthelie.com/?x=0&y=0&s=acghjibcff",
+ "name": "End the Lie",
+ "triggers": [
+ "endthelie"
+ ],
+ "regions": {
+ "default": "http://endthelie.com/?x=0&y=0&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl.pstatic.net/dicimg/common/favicons/Favicon_32X32.ico",
+ "name": "endic.naver.com",
+ "triggers": [
+ "endic"
+ ],
+ "regions": {
+ "default": "http://endic.naver.com/search.nhn?sLn=en&isOnlyViewEE=N&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://endless-sphere.com/favicon.ico",
+ "name": "endless-sphere",
+ "triggers": [
+ "endlessphere"
+ ],
+ "regions": {
+ "default": "http://endless-sphere.com/forums/?q {{{term}}} "
+ }
+ },
+ {
+ "favicon": "//www.endole.co.uk/img/favicon-192x192.png",
+ "name": "Endole",
+ "triggers": [
+ "endole"
+ ],
+ "regions": {
+ "default": "http://www.endole.co.uk/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.energystar.gov/favicon.ico",
+ "name": "Energy Star",
+ "triggers": [
+ "energystar"
+ ],
+ "regions": {
+ "default": "http://essearch.energystar.gov/search?query={{{term}}}&affiliate=www.energystar.gov"
+ }
+ },
+ {
+ "favicon": "http://www.eng-tips.com/favicon.ico",
+ "name": "Eng Tips",
+ "triggers": [
+ "engtips"
+ ],
+ "regions": {
+ "default": "http://www.eng-tips.com/search.cfm?q={{{term}}}&action=search"
+ }
+ },
+ {
+ "favicon": "https://s.blogsmithmedia.com/www.engadget.com/assets-h9ff82d06157f8717c2258c067024d4d8/images/favicon-160x160.png?h=1638b0a8bbe7effa8f85c3ecabb63620",
+ "name": "Engadget",
+ "triggers": [
+ "engadget"
+ ],
+ "regions": {
+ "default": "https://www.engadget.com/search/#stq={{{term}}}&stp=1"
+ }
+ },
+ {
+ "favicon": "https://s.blogsmithmedia.com/www.engadget.com/assets-h9ff82d06157f8717c2258c067024d4d8/images/favicon-160x160.png?h=1638b0a8bbe7effa8f85c3ecabb63620",
+ "name": "Engadget",
+ "triggers": [
+ "egt"
+ ],
+ "regions": {
+ "default": "https://www.engadget.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.blogsmithmedia.com/www.engadget.com/assets-h9ff82d06157f8717c2258c067024d4d8/images/favicon-160x160.png?h=1638b0a8bbe7effa8f85c3ecabb63620",
+ "name": "Engadget en español",
+ "triggers": [
+ "enges"
+ ],
+ "regions": {
+ "default": "http://es.engadget.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.engine-codes.com/images/favicon/favicon.ico",
+ "name": "Engine Codes",
+ "triggers": [
+ "obd"
+ ],
+ "regions": {
+ "default": "http://engine-codes.com/search_codes.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.englishforums.com/favicon-16x16.png",
+ "name": "English Forums",
+ "triggers": [
+ "engfor"
+ ],
+ "regions": {
+ "default": "https://www.englishforums.com/search/{{{term}}}.htm"
+ }
+ },
+ {
+ "favicon": "https://www.englishgrammar.org/wp-content/themes/outreach-pro/images/favicon.ico",
+ "name": "English Grammar",
+ "triggers": [
+ "enggramm"
+ ],
+ "regions": {
+ "default": "https://www.englishgrammar.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/english/img/favicon.ico?v=cafbfc112fb2",
+ "name": "English StackExchange",
+ "triggers": [
+ "en",
+ "seenglish"
+ ],
+ "regions": {
+ "default": "http://english.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.engrish.com/favicon.ico",
+ "name": "Engrish",
+ "triggers": [
+ "engrish"
+ ],
+ "regions": {
+ "default": "http://www.engrish.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.eniro.com/img/profiles/se/2017/favicon-32.png",
+ "name": "Eniro",
+ "triggers": [
+ "gulasidorna"
+ ],
+ "regions": {
+ "default": "http://www.eniro.se/query?what=all&search_word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.eniro.com/img/profiles/se/2017/favicon-32.png",
+ "name": "Eniro",
+ "triggers": [
+ "eniro"
+ ],
+ "regions": {
+ "default": "http://gulasidorna.eniro.se/hitta:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ensembl.org/i/ensembl-favicon.png",
+ "name": "Ensembl",
+ "triggers": [
+ "ens"
+ ],
+ "regions": {
+ "default": "http://www.ensembl.org/Multi/psychic?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/enterthegungeon_gamepedia/6/64/Favicon.ico?version=ec04ef60981f3fecda712087947d08b1",
+ "name": "Enter the Gungeon Wiki",
+ "triggers": [
+ "etg"
+ ],
+ "regions": {
+ "default": "http://enterthegungeon.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.esrb.org/favicon.ico",
+ "name": "Entertainment Software Rating Board",
+ "triggers": [
+ "esrb"
+ ],
+ "regions": {
+ "default": "https://www.esrb.org/ratings/search.jsp?titleOrPublisher={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://entireweb.com/favicon.ico",
+ "name": "Entireweb",
+ "triggers": [
+ "entireweb"
+ ],
+ "regions": {
+ "default": "http://entireweb.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "Entrez",
+ "triggers": [
+ "entrez"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/sites/gquery?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://enumquery.com/favicon.ico",
+ "name": "enumquery.com",
+ "triggers": [
+ "enum"
+ ],
+ "regions": {
+ "default": "http://enumquery.com/lookup?e164={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://themeforest.net/favicon.ico",
+ "name": "Envato Marketplace",
+ "triggers": [
+ "envatomarkettheme"
+ ],
+ "regions": {
+ "default": "https://themeforest.net/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.tutsplus.com/assets/favicon-b490c89e0c7d5748dbde558df6385abb.png",
+ "name": "Envato Tuts+",
+ "triggers": [
+ "tutsplus"
+ ],
+ "regions": {
+ "default": "http://tutsplus.com/tutorials/search?utf8=%E2%9C%93&search[topic]=&search[terms]={{{term}}}&button="
+ }
+ },
+ {
+ "favicon": "https://www.eosdigitaal.nl/favicon.ico",
+ "name": "Eosdigitaal.nl",
+ "triggers": [
+ "eos"
+ ],
+ "regions": {
+ "default": "https://www.eosdigitaal.nl/forum/search.php?keywords={{{term}}}&terms=all&author=&sc=1&sf=all&sk=t&sd=d&sr=posts&st=0&ch=300&t=0&submit=Zoeken"
+ }
+ },
+ {
+ "favicon": "http://beast-epfl.hosted.exlibrisgroup.com/favicon.ico",
+ "name": "EPFL",
+ "triggers": [
+ "epflbook"
+ ],
+ "regions": {
+ "default": "http://beast-epfl.hosted.exlibrisgroup.com/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=EPFL&frbg=&tb=t&vl%28freeText0%29={{{term}}}&scp.scps=scope%3A%28EPFL_SFX%29%2CPrimo2Primo_41EPFL"
+ }
+ },
+ {
+ "favicon": "//www.epfl.ch/favicon.ico",
+ "name": "EPFL",
+ "triggers": [
+ "epfl"
+ ],
+ "regions": {
+ "default": "http://search.epfl.ch/web.action?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.epfl.ch/favicon.ico",
+ "name": "EPFL Directory",
+ "triggers": [
+ "epfldir"
+ ],
+ "regions": {
+ "default": "https://search.epfl.ch/psearch.action?q={{{term}}}&f=directory&lang=en&pageSize=10&sort="
+ }
+ },
+ {
+ "favicon": "https://plan.epfl.ch/prod/wsgi/static-ngeo/b78a0f2b9e564799b60ee9f7320e9813/images/favicon.ico",
+ "name": "EPFL Plan",
+ "triggers": [
+ "epflp"
+ ],
+ "regions": {
+ "default": "http://plan.epfl.ch/?room={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.epicmafia.com/images/ico/hunter.ico",
+ "name": "Epic Mafia Wiki",
+ "triggers": [
+ "epicmafia"
+ ],
+ "regions": {
+ "default": "http://wiki.epicmafia.com/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://galaxy.epic.com/favicon.ico",
+ "name": "Epic UserWeb",
+ "triggers": [
+ "epicg"
+ ],
+ "regions": {
+ "default": "https://galaxy.epic.com/?#Search/version=8200&searchWord={{{term}}}&lastUpdate="
+ }
+ },
+ {
+ "favicon": "http://www.epicurious.com/static/img/favicon.png",
+ "name": "Epicurious",
+ "triggers": [
+ "epicurious"
+ ],
+ "regions": {
+ "default": "http://www.epicurious.com/tools/searchresults?search={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.epinions.com/favicon.ico",
+ "name": "Epinions",
+ "triggers": [
+ "epinions"
+ ],
+ "regions": {
+ "default": "http://www.epinions.com/search/?submitted_form=searchbar&search_vertical=all&tax_name=&search_string={{{term}}}&searchbar_submit.x=0&searchbar_submit.y=0&searchbar_submit=Search"
+ }
+ },
+ {
+ "favicon": "https://www.episodate.com/favicon-16x16.png",
+ "name": "EpisoDate",
+ "triggers": [
+ "epd"
+ ],
+ "regions": {
+ "default": "https://www.episodate.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.episodeworld.com/themes/epw_20/images/favicon.ico",
+ "name": "Episode World",
+ "triggers": [
+ "epw"
+ ],
+ "regions": {
+ "default": "http://www.episodeworld.com/search/?searchitem={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eprice.it/favicon.ico",
+ "name": "ePrice",
+ "triggers": [
+ "epriceit"
+ ],
+ "regions": {
+ "default": "http://www.eprice.it/search/qs={{{term}}}&mets=gbhcedaf"
+ }
+ },
+ {
+ "favicon": "http://www.epubbud.com/favicon.ico",
+ "name": "ePub Bud",
+ "triggers": [
+ "epubbud"
+ ],
+ "regions": {
+ "default": "http://www.epubbud.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eqresource.com/favicon.ico",
+ "name": "EQ Resource",
+ "triggers": [
+ "eqr"
+ ],
+ "regions": {
+ "default": "http://eqresource.com/search.php?cx=partner-pub-8686271290388928%3Atjkxdymxk9a&cof=FORID%3A9&ie=ISO-8859-1&q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "http://equaldex.com/favicon.png",
+ "name": "Equaldex",
+ "triggers": [
+ "equaldex"
+ ],
+ "regions": {
+ "default": "http://equaldex.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.erf.de/favicon.ico",
+ "name": "ERF",
+ "triggers": [
+ "erf"
+ ],
+ "regions": {
+ "default": "http://www.erf.de/?node=1097&page=1&NAV_CatSelect=0&NAV_MetaSuchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cf1.fully.com/media/favicon/default/Favicon-16x16_2x.png",
+ "name": "Ergo Depot",
+ "triggers": [
+ "ergo"
+ ],
+ "regions": {
+ "default": "http://www.ergodepot.com/SearchResults.asp?Search={{{term}}}&Submit="
+ }
+ },
+ {
+ "favicon": "https://www.erowid.org/favicon.ico",
+ "name": "Erowid",
+ "triggers": [
+ "er",
+ "erowid"
+ ],
+ "regions": {
+ "default": "https://www.erowid.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.erowid.org/favicon.ico",
+ "name": "Erowid Experience Reports",
+ "triggers": [
+ "eroexp"
+ ],
+ "regions": {
+ "default": "https://www.erowid.org/experiences/exp.cgi?S1=0&S2=-1&C1=-1&Str={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://play.esea.net/favicon.ico",
+ "name": "ESEA",
+ "triggers": [
+ "esea"
+ ],
+ "regions": {
+ "default": "https://play.esea.net/index.php?s=search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://support.eset.com/selfservice/eset/img/favicon.ico",
+ "name": "ESET Knownledge Base",
+ "triggers": [
+ "eset"
+ ],
+ "regions": {
+ "default": "http://support.eset.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eslint.org/img/favicon.512x512.png",
+ "name": "ESLint",
+ "triggers": [
+ "eslint"
+ ],
+ "regions": {
+ "default": "https://eslint.org/docs/rules/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://esolangs.org/favicon.ico",
+ "name": "Esolang",
+ "triggers": [
+ "esolang"
+ ],
+ "regions": {
+ "default": "https://esolangs.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://esolangs.org/favicon.ico",
+ "name": "Esolangs",
+ "triggers": [
+ "eso"
+ ],
+ "regions": {
+ "default": "https://esolangs.org/w/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://v3.espacenet.com/favicon.ico",
+ "name": "Espacenet",
+ "triggers": [
+ "espacenet"
+ ],
+ "regions": {
+ "default": "http://v3.espacenet.com/searchResults?DB=EPODOC&submitted=true&locale=en_EP&query={{{term}}}&ST=singleline&compact=false"
+ }
+ },
+ {
+ "favicon": "https://community.e-spirit.com/resources/images/palette-1001/faviconImage-1486041213716-favicon.ico",
+ "name": "eSpirit Community",
+ "triggers": [
+ "ecom"
+ ],
+ "regions": {
+ "default": "https://community.e-spirit.com/search.jspa?peopleEnabled=true&userID=&containerType=&container=&spotlight=true&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://a.espncdn.com/favicon.ico",
+ "name": "ESPN",
+ "triggers": [
+ "espn"
+ ],
+ "regions": {
+ "default": "http://www.espn.com/search/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.essef.be/essef.ico",
+ "name": "ESSEF (fr)",
+ "triggers": [
+ "esseffr"
+ ],
+ "regions": {
+ "default": "http://www.essef.be/fr/cataloog/index.search.asp?zoek={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.essef.be/essef.ico",
+ "name": "ESSEF (nl)",
+ "triggers": [
+ "essefn"
+ ],
+ "regions": {
+ "default": "http://www.essef.be/ndl/cataloog/index.search.asp?zoek={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.essen-und-trinken.de/sites/eut/themes/eutdrupal/favicon.ico",
+ "name": "Essen und Trinken",
+ "triggers": [
+ "eut"
+ ],
+ "regions": {
+ "default": "http://www.essen-und-trinken.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual",
+ "triggers": [
+ "estantevirtual"
+ ],
+ "regions": {
+ "default": "https://www.estantevirtual.com.br/busca?utf8=✓&type=q&new=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (all)",
+ "triggers": [
+ "evirt"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/qt/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (by author and/or title)",
+ "triggers": [
+ "evirtat"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (by author)",
+ "triggers": [
+ "evirtau"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/qau/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (by publisher)",
+ "triggers": [
+ "evirted"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/qed/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (by title)",
+ "triggers": [
+ "evirttit"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/qtit/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.estantevirtual.com.br/favicon.ico",
+ "name": "Estante Virtual (description)",
+ "triggers": [
+ "evirtdes"
+ ],
+ "regions": {
+ "default": "http://www.estantevirtual.com.br/qdes/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://et.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Estonian Wikipedia (Vikipeedia)",
+ "triggers": [
+ "viki"
+ ],
+ "regions": {
+ "default": "https://et.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.esvbible.org/static/img/favicon.ico",
+ "name": "ESV Bible",
+ "triggers": [
+ "esv"
+ ],
+ "regions": {
+ "default": "http://www.esvbible.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.esvonline.org/static/img/favicon.ico",
+ "name": "ESVonline",
+ "triggers": [
+ "esvonline"
+ ],
+ "regions": {
+ "default": "http://www.esvonline.org/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://moncul.org/wp-content/uploads/2016/03/iconepouce-1.png",
+ "name": "Et mon cul c'est du tofu ?",
+ "triggers": [
+ "moncul"
+ ],
+ "regions": {
+ "default": "http://moncul.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fast-9026.kxcdn.com/favicon.ico",
+ "name": "etbm.ro",
+ "triggers": [
+ "etbm.ro"
+ ],
+ "regions": {
+ "default": "http://www.etbm.ro/search?Q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://eternity.youfailit.net/favicon.ico",
+ "name": "Eternity Engine Wiki",
+ "triggers": [
+ "eternity"
+ ],
+ "regions": {
+ "default": "http://eternity.youfailit.net/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://etf2l.org/wp-content/themes/etf2lwide/favicon.ico",
+ "name": "ETF2L",
+ "triggers": [
+ "etf2l"
+ ],
+ "regions": {
+ "default": "http://etf2l.org/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://etherscan.io/images/favicon2.ico",
+ "name": "EtherScan",
+ "triggers": [
+ "eth"
+ ],
+ "regions": {
+ "default": "http://etherscan.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://etherscan.io/images/favicon2.ico",
+ "name": "etherscan",
+ "triggers": [
+ "etherscan"
+ ],
+ "regions": {
+ "default": "https://etherscan.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ethnologue.com/sites/all/themes/ethn/favicon.ico?paxuvt",
+ "name": "Ethnologue",
+ "triggers": [
+ "ethnologue"
+ ],
+ "regions": {
+ "default": "https://www.ethnologue.com/search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://etnet.com.hk/favicon.ico",
+ "name": "ETNet 經濟通",
+ "triggers": [
+ "Etnet"
+ ],
+ "regions": {
+ "default": "http://etnet.com.hk/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/8f53a1b47e7bd8dd06ee9b3004f4e410?s=32",
+ "name": "Etre Geeks",
+ "triggers": [
+ "etregeeks"
+ ],
+ "regions": {
+ "default": "https://etregeeks.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.etsy.com/images/favicon.ico",
+ "name": "Etsy",
+ "triggers": [
+ "etsy"
+ ],
+ "regions": {
+ "default": "https://www.etsy.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.etymonline.com/static/favicon/favicon-16x16.png",
+ "name": "Etymonline",
+ "triggers": [
+ "etymonline"
+ ],
+ "regions": {
+ "default": "http://www.etymonline.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.etymonline.com/static/favicon/favicon-16x16.png",
+ "name": "EtymOnline.com",
+ "triggers": [
+ "etymology"
+ ],
+ "regions": {
+ "default": "http://www.etymonline.com/index.php?search={{{term}}}&searchmode=none"
+ }
+ },
+ {
+ "favicon": "http://eur-lex.europa.eu/images/eurlex.ico",
+ "name": "EUR-Lex",
+ "triggers": [
+ "eurlex"
+ ],
+ "regions": {
+ "default": "http://eur-lex.europa.eu/search.html?text={{{term}}}&scope=EURLEX&type=quick"
+ }
+ },
+ {
+ "favicon": "https://euro-industry.com/euro-industry32.ico?v=3",
+ "name": "Euro Industry",
+ "triggers": [
+ "euro-industry"
+ ],
+ "regions": {
+ "default": "https://euro-industry.com/main.php?index=search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.eurogamer.net/favicon.ico",
+ "name": "Eurogamer.net",
+ "triggers": [
+ "eurogamer"
+ ],
+ "regions": {
+ "default": "http://www.eurogamer.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://diglib.eg.org/themes/Mirage2/images/favicon.ico",
+ "name": "Eurographics Digital Library",
+ "triggers": [
+ "egdl"
+ ],
+ "regions": {
+ "default": "http://diglib.eg.org/discover?query={{{term}}}&submit=Go"
+ }
+ },
+ {
+ "favicon": "http://www.euronews.com/favicon-16x16.png",
+ "name": "Euronews English",
+ "triggers": [
+ "euronewsen"
+ ],
+ "regions": {
+ "default": "http://www.euronews.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://europepmc.org/images/favicon.ico",
+ "name": "Europe PMC",
+ "triggers": [
+ "europepmc",
+ "epmc"
+ ],
+ "regions": {
+ "default": "http://europepmc.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ebi.emblstatic.net/web_guidelines/EBI-Framework/v1.3/images/logos/EMBL-EBI/favicons/android-chrome-192x192.png",
+ "name": "European Bioinformatics Institute",
+ "triggers": [
+ "ebi"
+ ],
+ "regions": {
+ "default": "https://www.ebi.ac.uk/ebisearch/search.ebi?db=allebi&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hudoc.echr.coe.int/images/Icons/HUDOCfavicon.ico",
+ "name": "European Court of human right",
+ "triggers": [
+ "huco"
+ ],
+ "regions": {
+ "default": "http://hudoc.echr.coe.int/sites/eng/Pages/search.aspx#{%22fulltext%22:[%22{{{term}}} %22],%22documentcollectionid2%22:[%22GRANDCHAMBER%22,%22CHAMBER%22]}"
+ }
+ },
+ {
+ "favicon": "http://www.europarl.europa.eu/favicon.ico",
+ "name": "European Parliament",
+ "triggers": [
+ "europarl"
+ ],
+ "regions": {
+ "default": "http://www.europarl.europa.eu/portal/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://europeana-style-production.cdnedge.bluemix.net/v0.4.26/images/favicons/favicon.ico?ver=alpha",
+ "name": "Europeana.eu",
+ "triggers": [
+ "europeana"
+ ],
+ "regions": {
+ "default": "https://europeana.eu/portal/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.evageeks.org/favicon.ico",
+ "name": "evageeks wiki",
+ "triggers": [
+ "evawk"
+ ],
+ "regions": {
+ "default": "https://wiki.evageeks.org/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.evanscycles.com/_ui/addons/evanscommonstorefront/shared/css/images/favicon.ico",
+ "name": "Evans Cycles",
+ "triggers": [
+ "evans"
+ ],
+ "regions": {
+ "default": "http://www.evanscycles.com/search?query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://eve-search.com/favicon.ico",
+ "name": "EVE Search",
+ "triggers": [
+ "evesearch"
+ ],
+ "regions": {
+ "default": "http://eve-search.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.eveuniversity.org/favicon.ico",
+ "name": "Eve University Wiki",
+ "triggers": [
+ "eveuni"
+ ],
+ "regions": {
+ "default": "http://wiki.eveuniversity.org/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.eveuniversity.org/favicon.ico",
+ "name": "EVE University Wiki",
+ "triggers": [
+ "eveu"
+ ],
+ "regions": {
+ "default": "http://wiki.eveuniversity.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eve-central.com/favicon.ico",
+ "name": "Eve-Central",
+ "triggers": [
+ "evecentral"
+ ],
+ "regions": {
+ "default": "https://eve-central.com/home/typesearch.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eve-central.com/favicon.ico",
+ "name": "EVE-Central",
+ "triggers": [
+ "evec"
+ ],
+ "regions": {
+ "default": "http://eve-central.com/home/typesearch.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eventful.com/favicon.ico",
+ "name": "Eventful",
+ "triggers": [
+ "eventful"
+ ],
+ "regions": {
+ "default": "http://eventful.com/events?ga_type=events&ga_search={{{term}}}&q=ebeceba"
+ }
+ },
+ {
+ "favicon": "http://eventid.net/resources/favicons/favicon.ico",
+ "name": "EventID",
+ "triggers": [
+ "eventid"
+ ],
+ "regions": {
+ "default": "http://eventid.net/display.asp?eventid={{{term}}}&source="
+ }
+ },
+ {
+ "favicon": "https://www.eventim.de/obj/media/DE-eventim/specialLogos/animated_favicon.gif",
+ "name": "Eventim",
+ "triggers": [
+ "eventim"
+ ],
+ "regions": {
+ "default": "https://www.eventim.de/Tickets.html?affiliate=TUG&fun=search&fuzzy=yes&doc=search&action=grouped&inline=false&suchbegriff={{{term}}}&btn=true&x10=4"
+ }
+ },
+ {
+ "favicon": "http://www.everbuying.net/favicon.ico",
+ "name": "Everbuying",
+ "triggers": [
+ "everbuying"
+ ],
+ "regions": {
+ "default": "http://www.everbuying.net/china-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.evernote.com/favicon.ico",
+ "name": "Evernote",
+ "triggers": [
+ "evernote"
+ ],
+ "regions": {
+ "default": "https://www.evernote.com/Home.action#x={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.everyclick.com/favicon.ico",
+ "name": "Every Click",
+ "triggers": [
+ "everyclick"
+ ],
+ "regions": {
+ "default": "http://www.everyclick.com/search?keyword={{{term}}}&filterType=&sortType=&searchArea=web&sbtn="
+ }
+ },
+ {
+ "favicon": "http://everydaycarry.com/public/img/favicon-16x16.png",
+ "name": "Everyday Carry",
+ "triggers": [
+ "edc"
+ ],
+ "regions": {
+ "default": "http://everydaycarry.com/search{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://everydayfeminism.com/wp-content/themes/magazine-pro/images/favicon.ico",
+ "name": "Everyday Feminism",
+ "triggers": [
+ "edfeminism"
+ ],
+ "regions": {
+ "default": "https://everydayfeminism.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.everyeye.it/favicon.ico",
+ "name": "Everyeye",
+ "triggers": [
+ "everyeye"
+ ],
+ "regions": {
+ "default": "http://www.everyeye.it/ricerca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.everymac.com/favicon.ico",
+ "name": "EveryMac",
+ "triggers": [
+ "macid",
+ "everymac"
+ ],
+ "regions": {
+ "default": "http://www.everymac.com/ultimate-mac-lookup/?search_keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://everything2.com/favicon.ico",
+ "name": "Everything 2",
+ "triggers": [
+ "e2"
+ ],
+ "regions": {
+ "default": "http://everything2.com/title/{{{term}}}?searchy=search"
+ }
+ },
+ {
+ "favicon": "http://www.evesta.jp/favicon.ico",
+ "name": "EVESTA KASHI KENSAKU",
+ "triggers": [
+ "evesta"
+ ],
+ "regions": {
+ "default": "http://www.evesta.jp/lyric/search2.php?ct=1&go=%E6%A4%9C%E7%B4%A2&a=&ca=0&l=&cl=0&k=&t={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.evi.com/q/images/favicon.ico",
+ "name": "Evi",
+ "triggers": [
+ "evi"
+ ],
+ "regions": {
+ "default": "https://www.evi.com/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.evilinnocence.com/img/favicon.ico",
+ "name": "EvilInnocence",
+ "triggers": [
+ "poser"
+ ],
+ "regions": {
+ "default": "http://www.evilinnocence.com/shop/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.evonyhookups.info/wp-content/uploads/fbrfg/favicon.ico",
+ "name": "Evony Hookups",
+ "triggers": [
+ "ehu"
+ ],
+ "regions": {
+ "default": "http://www.evonyhookups.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://evreward.com/favicon.ico",
+ "name": "Evreward",
+ "triggers": [
+ "evreward"
+ ],
+ "regions": {
+ "default": "http://evreward.com/store/find?store[name]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ex-astris-scientia.org/search/favicon-96x96.png",
+ "name": "Ex Astris Scientia",
+ "triggers": [
+ "exastris"
+ ],
+ "regions": {
+ "default": "http://www.ex-astris-scientia.org/search/search.cgi?Terms={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.exalead.com/favicon.ico",
+ "name": "Exalead",
+ "triggers": [
+ "exalead"
+ ],
+ "regions": {
+ "default": "http://www.exalead.com/search/web/results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.3ds.com/favicon.ico",
+ "name": "exaled",
+ "triggers": [
+ "exaled"
+ ],
+ "regions": {
+ "default": "http://www.3ds.com/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://examine.com/favicon.ico",
+ "name": "Examine",
+ "triggers": [
+ "examine"
+ ],
+ "regions": {
+ "default": "https://examine.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://examine.com/favicon.ico",
+ "name": "Examine.com",
+ "triggers": [
+ "ex"
+ ],
+ "regions": {
+ "default": "https://examine.com/search.php?q={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://excel-translator.de/favicon.png",
+ "name": "Excel Translator [DE]",
+ "triggers": [
+ "etde"
+ ],
+ "regions": {
+ "default": "https://de.excel-translator.de/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://excel-translator.de/favicon.png",
+ "name": "Excel Translator [EN]",
+ "triggers": [
+ "eten"
+ ],
+ "regions": {
+ "default": "https://en.excel-translator.de/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//images.infospace.com/sitebuilder/Excite/58/favicon.ico",
+ "name": "Excite",
+ "triggers": [
+ "exite"
+ ],
+ "regions": {
+ "default": "http://msxml.excite.com/search/web?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://ex.fm/favicon.ico",
+ "name": "exfm",
+ "triggers": [
+ "exfm"
+ ],
+ "regions": {
+ "default": "http://ex.fm/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://regex.info/favicon.ico",
+ "name": "Exif",
+ "triggers": [
+ "exif"
+ ],
+ "regions": {
+ "default": "http://regex.info/exif.cgi?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.exif-search.com/favicon.ico",
+ "name": "EXIF-Search",
+ "triggers": [
+ "exifsearch"
+ ],
+ "regions": {
+ "default": "http://www.exif-search.com/index.php?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://search.expedia.com/favicon.ico",
+ "name": "Expedia",
+ "triggers": [
+ "expedia"
+ ],
+ "regions": {
+ "default": "http://search.expedia.com/socialsearch/query?st=1&cn=expedia&cc=www&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.expert.nl/themes/default/images/favicon.ico",
+ "name": "Expert",
+ "triggers": [
+ "expert"
+ ],
+ "regions": {
+ "default": "https://www.expert.nl/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.experts-exchange.com/images/experts-exchange/favicon.ico",
+ "name": "Experts Exchange",
+ "triggers": [
+ "exex"
+ ],
+ "regions": {
+ "default": "http://www.experts-exchange.com/searchResults.jsp?searchTerms={{{term}}}&searchType=10"
+ }
+ },
+ {
+ "favicon": "https://www.expireddomains.net/favicon.ico",
+ "name": "Expired Domains",
+ "triggers": [
+ "expired"
+ ],
+ "regions": {
+ "default": "https://www.expireddomains.net/domain-name-search/?searchinit=1&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.explainxkcd.com/wiki/images/0/04/16px-BlackHat_head.png",
+ "name": "Explain xkcd",
+ "triggers": [
+ "exkcd"
+ ],
+ "regions": {
+ "default": "https://www.explainxkcd.com/wiki/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://www.explainxkcd.com/wiki/images/0/04/16px-BlackHat_head.png",
+ "name": "Explain xkcd",
+ "triggers": [
+ "expxkcd"
+ ],
+ "regions": {
+ "default": "https://www.explainxkcd.com/wiki/index.php?search={{{term}}}&go=Go&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://www.explainxkcd.com/wiki/images/0/04/16px-BlackHat_head.png",
+ "name": "explain xkcd",
+ "triggers": [
+ "explainxkcd"
+ ],
+ "regions": {
+ "default": "https://www.explainxkcd.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://explainshell.com/favicon.ico",
+ "name": "ExplainShell",
+ "triggers": [
+ "xsh",
+ "explainshell",
+ "esh"
+ ],
+ "regions": {
+ "default": "http://explainshell.com/explain?cmd={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.explara.com/public/v_5.4.6/images/favicon.ico",
+ "name": "Explara",
+ "triggers": [
+ "explara"
+ ],
+ "regions": {
+ "default": "https://www.explara.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.exploit-db.com/wp-content/uploads/2016/10/searchsploit.png",
+ "name": "exploit-db",
+ "triggers": [
+ "exploitdb"
+ ],
+ "regions": {
+ "default": "https://www.exploit-db.com/search/?action=search&description={{{term}}}&e_author="
+ }
+ },
+ {
+ "favicon": "https://www.exploit-db.com/wp-content/uploads/2016/10/searchsploit.png",
+ "name": "exploit-db.com",
+ "triggers": [
+ "edbc"
+ ],
+ "regions": {
+ "default": "https://www.exploit-db.com/search/?action=search&text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.exploit-db.com/wp-content/uploads/2016/10/searchsploit.png",
+ "name": "Exploits Database by Offensive Security (exploit-db.com)",
+ "triggers": [
+ "edb"
+ ],
+ "regions": {
+ "default": "https://www.exploit-db.com/search/?action=search&description={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://explorecourses.stanford.edu/favicon.ico",
+ "name": "Explore Courses",
+ "triggers": [
+ "explorecourses"
+ ],
+ "regions": {
+ "default": "https://explorecourses.stanford.edu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.expressio.fr//img/favicon.png",
+ "name": "Expressio Français",
+ "triggers": [
+ "expressio"
+ ],
+ "regions": {
+ "default": "http://www.expressio.fr/search.php?q={{{term}}}&lang="
+ }
+ },
+ {
+ "favicon": "http://www.extrastores.com/favicon.ico",
+ "name": "Extra Saudi Arabia",
+ "triggers": [
+ "extra"
+ ],
+ "regions": {
+ "default": "http://www.extrastores.com/en-sa/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://extratorrent.com/favicon.ico",
+ "name": "ExtraTorrent",
+ "triggers": [
+ "extratorrent"
+ ],
+ "regions": {
+ "default": "https://extratorrent.com/search/?search={{{term}}}&new=1&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://extratorrent.cc/favicon.ico",
+ "name": "ExtraTorrent",
+ "triggers": [
+ "extor"
+ ],
+ "regions": {
+ "default": "https://extratorrent.cc/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.xes-inc.com/wp-content/themes/xes/assets/img/misc/favicon.ico",
+ "name": "Extreme Engineering Solutions (X-ES)",
+ "triggers": [
+ "xes-inc.com"
+ ],
+ "regions": {
+ "default": "http://www.xes-inc.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://daks2k3a4ib2z.cloudfront.net/5a016d51240da900013d2ea2/5a2920e5c625540001727849_favicon.ico",
+ "name": "EyeEm",
+ "triggers": [
+ "eyeem"
+ ],
+ "regions": {
+ "default": "https://www.eyeem.com/search?q={{{term}}}&sort=relevance"
+ }
+ },
+ {
+ "favicon": "http://eyube.com/favicon.ico",
+ "name": "Eyube",
+ "triggers": [
+ "eyube"
+ ],
+ "regions": {
+ "default": "http://eyube.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ezinearticles.com/favicon.ico",
+ "name": "Ezinearticles.com",
+ "triggers": [
+ "ezine"
+ ],
+ "regions": {
+ "default": "https://ezinearticles.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eztv.ag/favicon.ico",
+ "name": "EZTV",
+ "triggers": [
+ "eztv"
+ ],
+ "regions": {
+ "default": "https://eztv.ag/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ezydvd.com.au/images/icons/ezydvd.ico",
+ "name": "EzyDVD",
+ "triggers": [
+ "ezydvd"
+ ],
+ "regions": {
+ "default": "http://www.ezydvd.com.au/search?q={{{term}}}&t=all"
+ }
+ },
+ {
+ "favicon": "https://staging.f-droid.org/assets/favicon.ico?v=8j6PKzW9Mk",
+ "name": "F-Droid",
+ "triggers": [
+ "fdroid"
+ ],
+ "regions": {
+ "default": "https://staging.f-droid.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://riddler.io/favicon.ico",
+ "name": "F-Secure Riddler",
+ "triggers": [
+ "riddler"
+ ],
+ "regions": {
+ "default": "https://riddler.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.f-secure.com/static/default/img/favicon.ico",
+ "name": "F-Secure Search",
+ "triggers": [
+ "fsec"
+ ],
+ "regions": {
+ "default": "https://search.f-secure.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.f1zone.net/news/wp-content/uploads/2016/05/favicon1.png",
+ "name": "F1Zone",
+ "triggers": [
+ "f1"
+ ],
+ "regions": {
+ "default": "http://www.f1zone.net/news/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.f64.ro/skin/frontend/f64/f64/favicon.ico",
+ "name": "F64.ro",
+ "triggers": [
+ "f64"
+ ],
+ "regions": {
+ "default": "http://www.f64.ro/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://registry.faa.gov/favicon.png",
+ "name": "FAA Aircraft Registry",
+ "triggers": [
+ "nnumber"
+ ],
+ "regions": {
+ "default": "http://registry.faa.gov/aircraftinquiry/NNum_Results.aspx?NNumbertxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//dnok91peocsw3.cloudfront.net/favicon/favicon_insp.png?v=2",
+ "name": "Fab",
+ "triggers": [
+ "fab"
+ ],
+ "regions": {
+ "default": "http://fab.com/search/?q={{{term}}}&ref=ddb"
+ }
+ },
+ {
+ "favicon": "http://help.appducx.com/favicon.ico",
+ "name": "Fabasoft app.ducx Help",
+ "triggers": [
+ "ducx"
+ ],
+ "regions": {
+ "default": "http://help.appducx.com/index.php?topic=doc/Search-Result/index_en.htm&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fabienm.eu/favicon.ico",
+ "name": "fabienm",
+ "triggers": [
+ "fabienm"
+ ],
+ "regions": {
+ "default": "http://www.fabienm.eu/wordpress/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2d00szk9na1qq.cloudfront.net/Images/favicon.ico",
+ "name": "Fabric.com",
+ "triggers": [
+ "fabric"
+ ],
+ "regions": {
+ "default": "https://www.fabric.com/SearchResults2.aspx?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico",
+ "name": "Facebook",
+ "triggers": [
+ "fbk"
+ ],
+ "regions": {
+ "default": "https://www.facebook.com/search/results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico",
+ "name": "Facebook",
+ "triggers": [
+ "fb",
+ "facebook"
+ ],
+ "regions": {
+ "default": "http://www.facebook.com/s.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mbasic.facebook.com/favicon.ico",
+ "name": "Facebook Lite",
+ "triggers": [
+ "fblite"
+ ],
+ "regions": {
+ "default": "https://mbasic.facebook.com/search/?refid=46&search=people&search_source=search_bar&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico",
+ "name": "Facebook Messages",
+ "triggers": [
+ "fbm"
+ ],
+ "regions": {
+ "default": "https://www.facebook.com/messages/search?action=search-snippet&mquery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.xx.fbcdn.net/rsrc.php/yz/r/KFyVIAWzntM.ico",
+ "name": "Facebook Pages",
+ "triggers": [
+ "fbp"
+ ],
+ "regions": {
+ "default": "https://www.facebook.com/search/results/?q={{{term}}}&type=pages"
+ }
+ },
+ {
+ "favicon": "http://factornumber.com/favicon.ico",
+ "name": "Factor Number",
+ "triggers": [
+ "factor"
+ ],
+ "regions": {
+ "default": "http://factornumber.com/?page={{{term}}};"
+ }
+ },
+ {
+ "favicon": "https://wiki.factorio.com/favicon.ico",
+ "name": "Factorio wiki",
+ "triggers": [
+ "factorio"
+ ],
+ "regions": {
+ "default": "https://wiki.factorio.com/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.fadhly.biz/favicon.ico",
+ "name": "Fadhly Biz",
+ "triggers": [
+ "www.fadhly.biz"
+ ],
+ "regions": {
+ "default": "http://www.fadhly.biz/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fahrschule-berne.de/favicon.ico",
+ "name": "Fahrschule Berne",
+ "triggers": [
+ "fahrschule"
+ ],
+ "regions": {
+ "default": "http://www.fahrschule-berne.de/component/search/?searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.faillissementen.com/favicon.ico",
+ "name": "Faillissementen.com",
+ "triggers": [
+ "failliet"
+ ],
+ "regions": {
+ "default": "https://www.faillissementen.com/insolventies/nederlandse-insolventies/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fairmondo.de/assets/favicon-d0d2a3b1a913d177e46977ff65c9aa83d36466f1b7525b1b509651a35fc5f37d.ico",
+ "name": "Fairmondo",
+ "triggers": [
+ "fairmondo"
+ ],
+ "regions": {
+ "default": "https://www.fairmondo.de/articles?article_search_form[q]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fairtragen.de/favicon.ico",
+ "name": "fairtragen",
+ "triggers": [
+ "fairtragen"
+ ],
+ "regions": {
+ "default": "https://www.fairtragen.de/advanced_search_result.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fakku.net/favicon.ico",
+ "name": "Fakku",
+ "triggers": [
+ "fakku"
+ ],
+ "regions": {
+ "default": "https://www.fakku.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/fallenlondon/images/6/64/Favicon.ico/revision/latest?cb=20101208102309",
+ "name": "Fallen London wiki",
+ "triggers": [
+ "fallenlondon"
+ ],
+ "regions": {
+ "default": "http://fallenlondon.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Fallout 3 NexusMods",
+ "triggers": [
+ "f3nm"
+ ],
+ "regions": {
+ "default": "https://fallout3.nexusmods.com/mods/searchresults/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Fallout New Vegas NexusMods",
+ "triggers": [
+ "fnvnm"
+ ],
+ "regions": {
+ "default": "https://newvegas.nexusmods.com/mods/searchresults/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/fallout/images/6/64/Favicon.ico/revision/latest?cb=20120126213838",
+ "name": "Fallout Wikia",
+ "triggers": [
+ "fallout"
+ ],
+ "regions": {
+ "default": "http://fallout.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/fallout/images/6/64/Favicon.ico/revision/latest?cb=20120126213838",
+ "name": "Fallout Wikia",
+ "triggers": [
+ "fowiki"
+ ],
+ "regions": {
+ "default": "http://fallout.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://fanart.tv/images/favicon.ico",
+ "name": "Fanart.tv",
+ "triggers": [
+ "fatv",
+ "fanart"
+ ],
+ "regions": {
+ "default": "https://fanart.tv/?sect=all&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fanburst-a.freetls.fastly.net/assets/favicon-bafbca1dafa8b3c2c3085be391cb3be3210e78f7a4249cc114606e8e3a06bf79.ico",
+ "name": "Fanburst",
+ "triggers": [
+ "fnb"
+ ],
+ "regions": {
+ "default": "https://www.fanburst.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0010/5402/t/14/assets/favicon.png?44727690761324737",
+ "name": "Fancy That",
+ "triggers": [
+ "fancythat"
+ ],
+ "regions": {
+ "default": "https://www.shopfancythat.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fandango.com/favicon.ico",
+ "name": "Fandango",
+ "triggers": [
+ "fandango"
+ ],
+ "regions": {
+ "default": "https://www.fandango.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fanfiction.net/static/images/favicon_2010_site.png",
+ "name": "FanFiction",
+ "triggers": [
+ "ffn"
+ ],
+ "regions": {
+ "default": "https://www.fanfiction.net/search.php?keywords={{{term}}}&ready=1&type=story"
+ }
+ },
+ {
+ "favicon": "https://www.fanfiction.net/static/images/favicon_2010_site.png",
+ "name": "FanFiction Stories",
+ "triggers": [
+ "ffstory"
+ ],
+ "regions": {
+ "default": "https://www.fanfiction.net/search.php?keywords={{{term}}}&type=story&match=any&formatid=any&sort=0&genreid1=0&genreid2=0&characterid1=0&characterid2=0&characterid3=0&characterid4=0&words=0&ready=1&categoryid=0"
+ }
+ },
+ {
+ "favicon": "https://www.fanfiction.net/static/images/favicon_2010_site.png",
+ "name": "fanfiction.net",
+ "triggers": [
+ "ff"
+ ],
+ "regions": {
+ "default": "https://www.fanfiction.net/search.php?type=story&keywords={{{term}}}&match=title&sort=0&genreid=0&subgenreid=0&characterid=0&subcharacterid=0&words=0&ready=1&categoryid=0"
+ }
+ },
+ {
+ "favicon": "https://www.fanfiction.net/static/images/favicon_2010_site.png",
+ "name": "Fanfiction.net",
+ "triggers": [
+ "fanfiction"
+ ],
+ "regions": {
+ "default": "https://www.fanfiction.net/search/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fanfiction.net/static/images/favicon_2010_site.png",
+ "name": "Fanfiction.net Writers",
+ "triggers": [
+ "ffw"
+ ],
+ "regions": {
+ "default": "https://www.fanfiction.net/search.php?type=writer&keywords={{{term}}}&match=title&sort=0&genreid=0&subgenreid=0&characterid=0&subcharacterid=0&words=0&ready=1&categoryid=0#"
+ }
+ },
+ {
+ "favicon": "//cdn.fangraphs.com/favicon.ico",
+ "name": "Fangraphs",
+ "triggers": [
+ "fg",
+ "fangraphs"
+ ],
+ "regions": {
+ "default": "http://www.fangraphs.com/players.aspx?lastname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fanpop.com/favicon.ico",
+ "name": "Fanpop",
+ "triggers": [
+ "fp",
+ "fanpop"
+ ],
+ "regions": {
+ "default": "http://www.fanpop.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fantagraphics.com/images/logos/8/favicon_q7nt-us.ico",
+ "name": "Fantagraphics Books",
+ "triggers": [
+ "fantagraphics"
+ ],
+ "regions": {
+ "default": "http://www.fantagraphics.com/index.php?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fantasy.fr/searches/index/favicon.ico",
+ "name": "fantasy.fr",
+ "triggers": [
+ "fantasy"
+ ],
+ "regions": {
+ "default": "http://www.fantasy.fr/searches/index/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.fark.com/favicon.ico",
+ "name": "Fark.com",
+ "triggers": [
+ "fark"
+ ],
+ "regions": {
+ "default": "http://cgi.fark.com/cgi/fark/hlsearch.pl?q=&qq={{{term}}}&sitesearch=Fark.com&forid=1&channel=3713184965&domains=Fark.com&client=pub-8861438340519172&channel=3713184965&safe=active&ie=UTF-8&oe=UTF-8&flav=0000&sig=WVOkmzF8t7ayJLH4&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BLH%3A50%3BLW%3A150%3BL%3Ahttp%3A%2F%2Fimg.fark.net%2Fimages%2Ffarkle.jpg%3BS%3Ahttp%3A%2F%2FFark.com%3BFORID%3A11"
+ }
+ },
+ {
+ "favicon": "https://www.farmacotherapeutischkompas.nl/webfiles/1528094701152/assets/style/favicon.ico",
+ "name": "Farmacotherapeutisch Kompas",
+ "triggers": [
+ "ftk"
+ ],
+ "regions": {
+ "default": "https://www.farmacotherapeutischkompas.nl/snelzoeken?zoekterm={{{term}}}&domein=geneesmiddelen"
+ }
+ },
+ {
+ "favicon": "http://fo.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Faroese Wikipedia",
+ "triggers": [
+ "wfo"
+ ],
+ "regions": {
+ "default": "http://fo.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.faroo.com/favicon-128.png",
+ "name": "faroo",
+ "triggers": [
+ "faroo"
+ ],
+ "regions": {
+ "default": "http://www.faroo.com/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://farsi123.com/favicon.png",
+ "name": "Farsi123",
+ "triggers": [
+ "farsi123"
+ ],
+ "regions": {
+ "default": "http://farsi123.com/?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://farsisubtitle.com/favicon.ico",
+ "name": "FarsiSubtitle",
+ "triggers": [
+ "fasub"
+ ],
+ "regions": {
+ "default": "http://farsisubtitle.com/download/?act=search&qstr={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.fass.se/m/sok/gbeccfb/favicon.ico",
+ "name": "Fass allmänhet",
+ "triggers": [
+ "fass"
+ ],
+ "regions": {
+ "default": "https://www.fass.se/m/sok/{{{term}}}/public"
+ }
+ },
+ {
+ "favicon": "http://fastpiratebay.eu/favicon.ico",
+ "name": "Fast Pirate Bay",
+ "triggers": [
+ "fpb"
+ ],
+ "regions": {
+ "default": "http://fastpiratebay.eu/thepiratebay.se/s/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fastreplacementglass.com/images/logos/38/frg-favicon.png",
+ "name": "Fast Replacement Glass",
+ "triggers": [
+ "frg"
+ ],
+ "regions": {
+ "default": "https://www.fastreplacementglass.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.fatwallet.com/static/images/favicon.ico",
+ "name": "FatWallet",
+ "triggers": [
+ "fatwallet"
+ ],
+ "regions": {
+ "default": "http://www.fatwallet.com/search/index.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.faucet.com/favicon.ico",
+ "name": "Faucet.com",
+ "triggers": [
+ "faucet"
+ ],
+ "regions": {
+ "default": "http://www.faucet.com/index.cfm?page=search:browse&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fayerwayer.com/assets-fw/img/favicon-16x16.png",
+ "name": "Fayerwayer",
+ "triggers": [
+ "fwy"
+ ],
+ "regions": {
+ "default": "https://www.fayerwayer.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fbschedules.com/favicon.ico",
+ "name": "FBSchedules",
+ "triggers": [
+ "fbs"
+ ],
+ "regions": {
+ "default": "http://www.fbschedules.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern Munich",
+ "triggers": [
+ "fcbru"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/ru/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern Munich",
+ "triggers": [
+ "fcbjp"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/jp/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern Munich",
+ "triggers": [
+ "fcbar"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/ar/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayernmunich.com/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern Munich",
+ "triggers": [
+ "fcbus"
+ ],
+ "regions": {
+ "default": "http://www.fcbayernmunich.com/us/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern Munich",
+ "triggers": [
+ "fcben"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/en/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern München",
+ "triggers": [
+ "fcb"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/de/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fcbayern.de/fcb/assets/favicon/favicon.ico",
+ "name": "FC Bayern München",
+ "triggers": [
+ "fcbes"
+ ],
+ "regions": {
+ "default": "http://www.fcbayern.de/es/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fddb.info/favicon.ico",
+ "name": "fddb.info",
+ "triggers": [
+ "fddb"
+ ],
+ "regions": {
+ "default": "http://fddb.info/db/de/suche/?udd=0&cat=site-de&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fedex.com/favicon.ico",
+ "name": "FedEx",
+ "triggers": [
+ "fedex"
+ ],
+ "regions": {
+ "default": "http://fedex.com/Tracking?tracknumbers={{{term}}}&action=track"
+ }
+ },
+ {
+ "favicon": "https://copr.fedoraproject.org/static/favicon.ico",
+ "name": "Fedora Copr",
+ "triggers": [
+ "copr"
+ ],
+ "regions": {
+ "default": "https://copr.fedoraproject.org/coprs/fulltext/?fulltext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://koji.fedoraproject.org/koji-static/images/koji.ico",
+ "name": "Fedora Koji",
+ "triggers": [
+ "kojipkg"
+ ],
+ "regions": {
+ "default": "https://koji.fedoraproject.org/koji/search?match=glob&type=package&terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://linuxmanpages.net/favicon.ico",
+ "name": "Fedora Manuals",
+ "triggers": [
+ "fedman"
+ ],
+ "regions": {
+ "default": "http://linuxmanpages.net/search.py?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://apps.fedoraproject.org/favicon.ico",
+ "name": "Fedora Package DB",
+ "triggers": [
+ "fedorapkg",
+ "fedpack"
+ ],
+ "regions": {
+ "default": "https://apps.fedoraproject.org/packages/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://admin.fedoraproject.org/favicon.ico",
+ "name": "Fedora pkgdb",
+ "triggers": [
+ "pkgdb"
+ ],
+ "regions": {
+ "default": "https://admin.fedoraproject.org/pkgdb/packages/*{{{term}}}*"
+ }
+ },
+ {
+ "favicon": "https://fedoraproject.org/static/images/favicon.ico",
+ "name": "Fedora Project",
+ "triggers": [
+ "fedorawiki"
+ ],
+ "regions": {
+ "default": "https://fedoraproject.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://fedoraproject.org/static/images/favicon.ico",
+ "name": "Fedora wiki",
+ "triggers": [
+ "fedora"
+ ],
+ "regions": {
+ "default": "https://fedoraproject.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fedoramagazine.org/wp-content/themes/fmag2018-1.01/favicon.ico",
+ "name": "fedoramagazine.org",
+ "triggers": [
+ "fedoramagazine"
+ ],
+ "regions": {
+ "default": "https://fedoramagazine.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://assets1.feedbooks.net/images/favicon.ico?t=1530527325",
+ "name": "Feedbooks",
+ "triggers": [
+ "feedbooks"
+ ],
+ "regions": {
+ "default": "http://www.feedbooks.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://feedly.com/favicon.ico",
+ "name": "Feedly",
+ "triggers": [
+ "feedly"
+ ],
+ "regions": {
+ "default": "https://feedly.com/#spotlight%2F{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://feedly.com/favicon.ico",
+ "name": "Feedly",
+ "triggers": [
+ "fdl"
+ ],
+ "regions": {
+ "default": "https://feedly.com/i/spotlight/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://blog.fefe.de/favicon.ico",
+ "name": "Fefes Blog",
+ "triggers": [
+ "fefe"
+ ],
+ "regions": {
+ "default": "https://blog.fefe.de/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i1.wp.com/fegtherm.hu/wp-content/uploads/2016/06/cropped-logo.jpg?fit=192,192",
+ "name": "FEG company site",
+ "triggers": [
+ "feg",
+ "fegtherm"
+ ],
+ "regions": {
+ "default": "http://fegtherm.hu/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://feliratok.info/favicon.ico",
+ "name": "Feliratok.info",
+ "triggers": [
+ "feliratok"
+ ],
+ "regions": {
+ "default": "http://feliratok.info/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://felleskatalogen.no/resources/images/favicon-3e1c9cb15db9d84eb76955e8fa816763.ico;jsessionid=VwGbhOX5p6alnJLOQW5P22NIaL9Z-7Yi3Oqcp-MM.fkweb-live-web-cluster-fkweb-live-2",
+ "name": "Felleskatalogen",
+ "triggers": [
+ "felleskatalogen"
+ ],
+ "regions": {
+ "default": "http://felleskatalogen.no/medisin/sok?sokord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fernsehserien.de/favicon.ico",
+ "name": "fernsehserien.de",
+ "triggers": [
+ "fsde"
+ ],
+ "regions": {
+ "default": "http://www.fernsehserien.de/suche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fettrechner.de/favicon.ico",
+ "name": "Fettrechner",
+ "triggers": [
+ "fettrechner"
+ ],
+ "regions": {
+ "default": "http://www.fettrechner.de/cgi-bin/kalorientabelle.pl?t=temsearch&sort=BEZEICHNUNG&f=*RUBRIK%2C*SUCHBEGRIFFE%2C*BEZEICHNUNG%2C*HERSTELLER&f1=HERSTELLER&start=1&dif=50&c={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0318/8457/t/2/assets/favicon.png?8800198167278938125",
+ "name": "FiberCables.com",
+ "triggers": [
+ "fibercables"
+ ],
+ "regions": {
+ "default": "http://www.fibercables.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ficly.com/favicon.ico",
+ "name": "ficly",
+ "triggers": [
+ "ficly"
+ ],
+ "regions": {
+ "default": "http://ficly.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ratings.fide.com/favicon.ico",
+ "name": "Fide - World Chess Federation",
+ "triggers": [
+ "fide"
+ ],
+ "regions": {
+ "default": "https://ratings.fide.com/search.phtml?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/1813/7801/files/fidgethq-logo-bw_d3043c08-60da-43bb-a42e-8291878ffbff_32x32.png?v=1516989006",
+ "name": "FidgetHQ",
+ "triggers": [
+ "fhq"
+ ],
+ "regions": {
+ "default": "https://fidgethq.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fido.ca/cms/fido/images/favicon.ico",
+ "name": "Fido",
+ "triggers": [
+ "fido"
+ ],
+ "regions": {
+ "default": "http://www.fido.ca/consumer/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:;base64,iVBORw0KGgo=",
+ "name": "Figment",
+ "triggers": [
+ "figment"
+ ],
+ "regions": {
+ "default": "http://figment.com/search?site_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fileinfo.com/favicon.ico",
+ "name": "File info",
+ "triggers": [
+ "fileinfo"
+ ],
+ "regions": {
+ "default": "http://fileinfo.com/extension/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://filetram.com/images/favicon.ico",
+ "name": "File Tram",
+ "triggers": [
+ "ftram"
+ ],
+ "regions": {
+ "default": "http://filetram.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.file-extensions.org/favicon.ico",
+ "name": "File-Extensions.org",
+ "triggers": [
+ "fileext"
+ ],
+ "regions": {
+ "default": "http://www.file-extensions.org/search/?searchstring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kcdn.file.org/images/favicon.ico",
+ "name": "File.org",
+ "triggers": [
+ "fo"
+ ],
+ "regions": {
+ "default": "http://file.org/extension/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.filecatch.com/favicon.ico",
+ "name": "FileCatch.com",
+ "triggers": [
+ "fcatch"
+ ],
+ "regions": {
+ "default": "http://www.filecatch.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.filecrop.com/favicon.ico",
+ "name": "filecrop",
+ "triggers": [
+ "filecrop"
+ ],
+ "regions": {
+ "default": "http://www.filecrop.com/search.php?w={{{term}}}&size_i=0&size_f=100000000&engine_r=1&engine_h=1"
+ }
+ },
+ {
+ "favicon": "http://filecrop.com/favicon.ico",
+ "name": "Filecrop",
+ "triggers": [
+ "filcrop"
+ ],
+ "regions": {
+ "default": "http://filecrop.com/search.php?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://appagg.co/i/favicon5.png",
+ "name": "FileDir",
+ "triggers": [
+ "filedir"
+ ],
+ "regions": {
+ "default": "http://filedir.com/download/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.filefacts.net/favicon.ico",
+ "name": "Filefacts",
+ "triggers": [
+ "filefacts"
+ ],
+ "regions": {
+ "default": "http://www.filefacts.net/search.php?ext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.filehippo.net/favicon-new.ico",
+ "name": "FileHippo",
+ "triggers": [
+ "filehippo",
+ "file",
+ "fh"
+ ],
+ "regions": {
+ "default": "https://filehippo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://filext.com/favicon.ico",
+ "name": "FILExt",
+ "triggers": [
+ "ext",
+ "filext"
+ ],
+ "regions": {
+ "default": "http://filext.com/file-extension/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.filmaffinity.com/favicon.png",
+ "name": "Film Affinity",
+ "triggers": [
+ "faff"
+ ],
+ "regions": {
+ "default": "https://www.filmaffinity.com/es/search.php?stext={{{term}}} &stype=all"
+ }
+ },
+ {
+ "favicon": "https://www.filmaffinity.com/favicon.png",
+ "name": "FilmAffinity",
+ "triggers": [
+ "fa"
+ ],
+ "regions": {
+ "default": "https://www.filmaffinity.com/es/search.php?stext={{{term}}}&stype=all"
+ }
+ },
+ {
+ "favicon": "https://www.filmaffinity.com/favicon.png",
+ "name": "Filmaffinity",
+ "triggers": [
+ "faf"
+ ],
+ "regions": {
+ "default": "https://www.filmaffinity.com/es/advsearch2.php?cx=008177178803676006601%3A6zmc6j5pngs&cof=FORID%3A9&ie=ISO-8859-1&q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.filmaffinity.com/favicon.png",
+ "name": "filmaffinity",
+ "triggers": [
+ "film"
+ ],
+ "regions": {
+ "default": "https://www.filmaffinity.com/es/search.php?stext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://filmaster.com/static/favicon.ico",
+ "name": "Filmaster",
+ "triggers": [
+ "fm"
+ ],
+ "regions": {
+ "default": "http://filmaster.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://filmgrail.com/favicon.ico",
+ "name": "filmgrail.com",
+ "triggers": [
+ "filmgrail"
+ ],
+ "regions": {
+ "default": "http://filmgrail.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.filmon.com/theme/img/favicon_2.ico?v=3",
+ "name": "FilmOn",
+ "triggers": [
+ "filmon"
+ ],
+ "regions": {
+ "default": "http://www.filmon.tv/search/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.fdb.cz/favicons/favicon-16x16.png",
+ "name": "Filmová Databáze",
+ "triggers": [
+ "fdb"
+ ],
+ "regions": {
+ "default": "http://www.fdb.cz/vyhledavani.php?co=vsechno&hledat={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ui.fstatic.com/static/favicon.png",
+ "name": "Filmow",
+ "triggers": [
+ "filmow"
+ ],
+ "regions": {
+ "default": "http://filmow.com/buscar/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.filmsarecool.com/favicon.ico",
+ "name": "FilmsAreCool",
+ "triggers": [
+ "films"
+ ],
+ "regions": {
+ "default": "http://www.filmsarecool.com/#search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://assets.filmstarts.de/favicon/filmstarts.ico?v1.2.5.94",
+ "name": "Filmstarts",
+ "triggers": [
+ "filmstarts"
+ ],
+ "regions": {
+ "default": "http://www.filmstarts.de/suche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2.fwcdn.pl/gf/beta/fw-favicons.ico",
+ "name": "Filmweb",
+ "triggers": [
+ "filmweb"
+ ],
+ "regions": {
+ "default": "http://www.filmweb.pl/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.fimfiction.net/images/favicon.png?9",
+ "name": "FIMFiction",
+ "triggers": [
+ "fim"
+ ],
+ "regions": {
+ "default": "https://www.fimfiction.net/stories/relevance?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.fimfiction.net/images/favicon.png?9",
+ "name": "FimFiction.net",
+ "triggers": [
+ "fimfic",
+ "fimfiction"
+ ],
+ "regions": {
+ "default": "https://www.fimfiction.net/stories?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/finalfantasy/images/6/64/Favicon.ico/revision/latest?cb=20071129144804",
+ "name": "Final Fantasy Wiki",
+ "triggers": [
+ "finalfantasy"
+ ],
+ "regions": {
+ "default": "http://finalfantasy.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/finalfantasy/images/6/64/Favicon.ico/revision/latest?cb=20071129144804",
+ "name": "Final Fantasy Wiki",
+ "triggers": [
+ "ffwiki"
+ ],
+ "regions": {
+ "default": "http://finalfantasy.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ffxiv.consolegameswiki.com/favicon.ico",
+ "name": "Final Fantasy XIV A Realm Reborn Wiki",
+ "triggers": [
+ "ffxiv"
+ ],
+ "regions": {
+ "default": "https://ffxiv.consolegameswiki.com/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ft.com/__origami/service/image/v2/images/raw/ftlogo-v1:brand-ft-logo-square-coloured?source=update-logos&width=194&height=194&format=png",
+ "name": "Financial Times",
+ "triggers": [
+ "ft"
+ ],
+ "regions": {
+ "default": "https://www.ft.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.finanzen.net/favicon.ico",
+ "name": "finanzen.net",
+ "triggers": [
+ "fnet"
+ ],
+ "regions": {
+ "default": "http://www.finanzen.net/suchergebnis.asp?frmAktiensucheTextfeld={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.finanzen.net/favicon.ico",
+ "name": "finanzen.net",
+ "triggers": [
+ "fi"
+ ],
+ "regions": {
+ "default": "http://www.finanzen.net/suchergebnis.asp?strSuchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.finanzen.net/favicon.ico",
+ "name": "finanzen.net",
+ "triggers": [
+ "finanzennet"
+ ],
+ "regions": {
+ "default": "http://www.finanzen.net/suchergebnis.asp?_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.findagrave.com/favicon.ico",
+ "name": "Find A Grave",
+ "triggers": [
+ "grave"
+ ],
+ "regions": {
+ "default": "https://secure.findagrave.com/php/famous.php?globalSearchCriteria={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.findchristmaspresents.com/favicon.ico",
+ "name": "Find Christmas Presents",
+ "triggers": [
+ "christmas"
+ ],
+ "regions": {
+ "default": "http://www.findchristmaspresents.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Find The Data",
+ "triggers": [
+ "findthedata"
+ ],
+ "regions": {
+ "default": "http://www.findthedata.org/site_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.findanyfilm.com/favicon.ico",
+ "name": "FindAnyFilm",
+ "triggers": [
+ "findanyfilm"
+ ],
+ "regions": {
+ "default": "http://www.findanyfilm.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.findchips.com/favicon.ico",
+ "name": "FindChips",
+ "triggers": [
+ "findchips"
+ ],
+ "regions": {
+ "default": "http://www.findchips.com/avail?part={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.findjar.com/favicon.ico;jsessionid=0AACBB5DFCB4C9D0E605B614AA4D56B4",
+ "name": "FindJar.com",
+ "triggers": [
+ "jar"
+ ],
+ "regions": {
+ "default": "http://www.findjar.com/index.x?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.findlawimages.com/latl/favicon-16x16.png",
+ "name": "FindLaw",
+ "triggers": [
+ "findlaw"
+ ],
+ "regions": {
+ "default": "http://public.findlaw.com/LCsearch.html?entry={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.findx.com/favicon.ico",
+ "name": "findx",
+ "triggers": [
+ "findx"
+ ],
+ "regions": {
+ "default": "https://www.findx.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.finecooking.com/app/themes/finecooking/favicon.ico",
+ "name": "FIne Cooking",
+ "triggers": [
+ "finecooking"
+ ],
+ "regions": {
+ "default": "http://www.finecooking.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.finedictionary.com/favicon.ico",
+ "name": "Fine Dictionary",
+ "triggers": [
+ "finedict"
+ ],
+ "regions": {
+ "default": "http://www.finedictionary.com/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.finedictionary.com/favicon.ico",
+ "name": "finedictionary",
+ "triggers": [
+ "fdic"
+ ],
+ "regions": {
+ "default": "http://finedictionary.com/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://forum.finf.uni-hannover.de/favicon.ico",
+ "name": "Finf-Forum (Forum des Fachrats Informatik der Leibniz Universität Hannover)",
+ "triggers": [
+ "finf"
+ ],
+ "regions": {
+ "default": "https://forum.finf.uni-hannover.de/index.php?form=Search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pdb.finkproject.org/favicon.ico",
+ "name": "Fink Project",
+ "triggers": [
+ "fink"
+ ],
+ "regions": {
+ "default": "http://pdb.finkproject.org/pdb/browse.php?summary={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.finlex.fi/favicon.ico",
+ "name": "Finlex",
+ "triggers": [
+ "finlex"
+ ],
+ "regions": {
+ "default": "https://www.finlex.fi/fi/laki/haku/?search[type]=pika&search[pika]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dictionar-finlandez.net/favicon_new.ico",
+ "name": "Finnish Verb Conjugator",
+ "triggers": [
+ "verbfi"
+ ],
+ "regions": {
+ "default": "http://www.dictionar-finlandez.net/online/verbs/conjugate_verb.php?verb={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fi.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Finnish Wikipedia",
+ "triggers": [
+ "wfi"
+ ],
+ "regions": {
+ "default": "https://fi.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.finnkino.fi/images/favicon.png",
+ "name": "Finnkino",
+ "triggers": [
+ "finnkino"
+ ],
+ "regions": {
+ "default": "http://www.finnkino.fi/Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.finnkino.fi/images/favicon.png",
+ "name": "Finnkino",
+ "triggers": [
+ "finnkinoen"
+ ],
+ "regions": {
+ "default": "http://www.finnkino.fi/eng/Search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://finviz.com/favicon.png",
+ "name": "Finviz",
+ "triggers": [
+ "fvz"
+ ],
+ "regions": {
+ "default": "http://finviz.com/quote.ashx?t={{{term}}}&ty=c&ta=1&p=d"
+ }
+ },
+ {
+ "favicon": "http://finviz.com/favicon.png",
+ "name": "Finviz",
+ "triggers": [
+ "fv"
+ ],
+ "regions": {
+ "default": "http://finviz.com/quote.ashx?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/feheroes_gamepedia_en/6/64/Favicon.ico",
+ "name": "Fire Emblem Heroes Wiki",
+ "triggers": [
+ "fehw"
+ ],
+ "regions": {
+ "default": "https://feheroes.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fireemblemwiki.org/favicon.ico",
+ "name": "Fire Emblem Wiki",
+ "triggers": [
+ "few"
+ ],
+ "regions": {
+ "default": "https://fireemblemwiki.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fireball.de/favicon.ico",
+ "name": "Fireball",
+ "triggers": [
+ "fireball"
+ ],
+ "regions": {
+ "default": "https://fireball.de/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//media.firebox.com/i/favicon/2017/site/favicon.ico",
+ "name": "Firebox",
+ "triggers": [
+ "firebox"
+ ],
+ "regions": {
+ "default": "http://www.firebox.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://firebursthtml.weebly.com/favicon.ico",
+ "name": "Fireburst HTML",
+ "triggers": [
+ "fhtml"
+ ],
+ "regions": {
+ "default": "https://firebursthtml.weebly.com/search-results.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fireburst.webs.com/favicon.ico",
+ "name": "Fireburst Web Search",
+ "triggers": [
+ "fireburst"
+ ],
+ "regions": {
+ "default": "http://fireburst.webs.com/searchresults.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://addons.cdn.mozilla.net/favicon.ico?v=2",
+ "name": "Firefox Add-ons",
+ "triggers": [
+ "ffa",
+ "mozaddon"
+ ],
+ "regions": {
+ "default": "https://addons.mozilla.org/en-US/firefox/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://addons.cdn.mozilla.net/favicon.ico?v=2",
+ "name": "Firefox Add-ons",
+ "triggers": [
+ "firefox"
+ ],
+ "regions": {
+ "default": "https://addons.mozilla.org/en-US/firefox/search/?q={{{term}}}&cat=all"
+ }
+ },
+ {
+ "favicon": "https://addons.cdn.mozilla.net/favicon.ico?v=2",
+ "name": "Firefox Addons",
+ "triggers": [
+ "amo"
+ ],
+ "regions": {
+ "default": "https://addons.mozilla.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fastfoodmusic.com/wp-content/themes/ffm-test/favicon.ico",
+ "name": "Firefox Marketplace",
+ "triggers": [
+ "ffm"
+ ],
+ "regions": {
+ "default": "https://fastfoodmusic.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.firerank.com/Resources/img/favicon.png",
+ "name": "Firerank",
+ "triggers": [
+ "firerank"
+ ],
+ "regions": {
+ "default": "http://www.firerank.com/recherche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.firesidexpressions.com/images/logos/30/fireside.png",
+ "name": "Fireside Xpressions",
+ "triggers": [
+ "fex"
+ ],
+ "regions": {
+ "default": "https://www.firesidexpressions.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.firmy.cz/common/img/favicon/favicon-16x16.png",
+ "name": "firmy.cz",
+ "triggers": [
+ "firmycz"
+ ],
+ "regions": {
+ "default": "http://www.firmy.cz/?thru=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.firstpost.com/favicon.ico",
+ "name": "FIRSTPOST",
+ "triggers": [
+ "firstpost"
+ ],
+ "regions": {
+ "default": "http://www.firstpost.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ft-datenbank.de/favicon.ico",
+ "name": "fischertechnik Database",
+ "triggers": [
+ "ft-db"
+ ],
+ "regions": {
+ "default": "http://ft-datenbank.de/search.php?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fischertechnik.de/Frontend/fischerde/dist/static/images/fischer.ico",
+ "name": "fischertechnik.de",
+ "triggers": [
+ "fischertechnik"
+ ],
+ "regions": {
+ "default": "http://www.fischertechnik.de/desktopdefault.aspx/tabid-1//tabid-35/searchcall-4/4_keepvisible-true/redirected-1/?/sid-3230669/mid-4/tid-1/ct-0/q-{{{term}}}//k-/et-0/rpp-10/sar-False/t-/p-0/ap-True/cat-/cr-0/pr-0/icp-False/icc-False/ifc-False/sl-1/sp-0/cs-/"
+ }
+ },
+ {
+ "favicon": "http://www.fishpond.com.au/favicon.ico",
+ "name": "Fishpond",
+ "triggers": [
+ "fishpond"
+ ],
+ "regions": {
+ "default": "http://www.fishpond.com.au/advanced_search_result.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fishshell.com/favicon.ico",
+ "name": "fishshell.com",
+ "triggers": [
+ "fish"
+ ],
+ "regions": {
+ "default": "https://fishshell.com/docs/current/commands.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fitgirl-repacks.site/wp-content/uploads/2016/08/cropped-icon-192x192.jpg",
+ "name": "FitGirl Repacks",
+ "triggers": [
+ "fgr"
+ ],
+ "regions": {
+ "default": "http://fitgirl-repacks.site/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/vnd.microsoft.icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAD///8B////Af///wH///8BLLEANyyxAJsssQDfLLEA yyxAPsssQDfLLEAmyyxADf///8B////Af///wH///8B////Af///wEssQAPLLEApSyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEApSyxAA////8B////Af///wEssQAPLLEAySyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQDJLLEAD////wH///8BLLEApSyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAKX///8BLLEANyyxAP8ssQD/OLYP////////////////////////////////////////////LLEA/yyxAP8ssQD/LLEANyyxAJsssQD/LLEA/yyxAP8ssQD///////////8ssQD/LLEA////////////LLEA/yyxAP8ssQD/LLEA/yyxAJsssQDfLLEA/yyxAP8ssQD/LLEA////////////LLEA/yyxAP///////////yyxAP8ssQD/LLEA/yyxAP8ssQDfLLEA yyxAP8ssQD/LLEA/yyxAP///////////zKzB/8ssQD///////////8ssQD/LLEA/yyxAP8ssQD/LLEA yyxAPsssQD/LLEA/zi2D///////////////////////////////////////LLEA/yyxAP8ssQD/LLEA/yyxAPsssQDfLLEA/yyxAP8ssQD/OLYP////////////LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQDfLLEAmyyxAP8ssQD/LLEA/zKzB//9/v3///////7//v8ssQD///////////8ssQD/LLEA/yyxAP8ssQD/LLEAmyyxADcssQD/LLEA/yyxAP8ssQD/q Ca//3 /f//////LLEA////////////LLEA/yyxAP8ssQD/LLEA/yyxADf///8BLLEApSyxAP8ssQD/LLEA/yyxAP8xswb/NLQK/yyxAP8vsgT/MLMF/yyxAP8ssQD/LLEA/yyxAKX///8B////ASyxAA8ssQDJLLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAMkssQAP////Af///wH///8BLLEADyyxAKUssQD/LLEA/yyxAP8ssQD/LLEA/yyxAP8ssQD/LLEA/yyxAKUssQAP////Af///wH///8B////Af///wH///8BLLEANyyxAJsssQDfLLEA yyxAPsssQDfLLEAmyyxADf///8B////Af///wH///8B B8AAOAHAADAAwAAgAEAAIABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAQAAgAEAAMADAADgBwAA B8AAA==",
+ "name": "Fiverr",
+ "triggers": [
+ "5"
+ ],
+ "regions": {
+ "default": "http://fiverr.com/gigs/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fivethirtyeight.com/wp-content/themes/espn-fivethirtyeight/assets/images/favicon.ico?v=1.0.7",
+ "name": "fivethirtyeight.com",
+ "triggers": [
+ "538"
+ ],
+ "regions": {
+ "default": "https://fivethirtyeight.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fixyt.com/assets/images/favicon.png",
+ "name": "FixYT",
+ "triggers": [
+ "fixyt"
+ ],
+ "regions": {
+ "default": "http://fixyt.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fkk-freunde.info/favicon.ico",
+ "name": "fkk-freunde",
+ "triggers": [
+ "fkk"
+ ],
+ "regions": {
+ "default": "http://fkk-freunde.info/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.flashback.org/img/favicon.ico",
+ "name": "Flashback",
+ "triggers": [
+ "flashback"
+ ],
+ "regions": {
+ "default": "https://www.flashback.org/sok/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://flask.pocoo.org/static/favicon.ico",
+ "name": "Flask",
+ "triggers": [
+ "flask010"
+ ],
+ "regions": {
+ "default": "http://flask.pocoo.org/docs/0.10/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://flask.pocoo.org/static/favicon.ico",
+ "name": "Flask WebFramework",
+ "triggers": [
+ "flask"
+ ],
+ "regions": {
+ "default": "http://flask.pocoo.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://prod.flat-cdn.com/img/favicon-16x16.png",
+ "name": "Flat",
+ "triggers": [
+ "flatmusic"
+ ],
+ "regions": {
+ "default": "https://flat.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.flaticon.com/img/favicon.png",
+ "name": "FlatIcon",
+ "triggers": [
+ "flaticon"
+ ],
+ "regions": {
+ "default": "http://www.flaticon.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://flattr.com/images/favicons/favicon-32x32.png",
+ "name": "Flattr",
+ "triggers": [
+ "flattr"
+ ],
+ "regions": {
+ "default": "https://flattr.com/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://community.adobe.com/themes/adobe-global/images/favicon.ico",
+ "name": "Flex Docs",
+ "triggers": [
+ "flex"
+ ],
+ "regions": {
+ "default": "http://community.adobe.com/help/search.html?q={{{term}}}&loc=en_US&lbl=0&go=Search&self=1&site=communityhelp_platform_aslr"
+ }
+ },
+ {
+ "favicon": "https://www.flexjobs.com/favicon-32x32.png",
+ "name": "Flexjobs",
+ "triggers": [
+ "flexjobs"
+ ],
+ "regions": {
+ "default": "https://www.flexjobs.com/search?search={{{term}}}&Location="
+ }
+ },
+ {
+ "favicon": "http://flibusta.net/sites/default/files/bluebreeze_favicon.ico",
+ "name": "Flibusta",
+ "triggers": [
+ "flibusta"
+ ],
+ "regions": {
+ "default": "http://flibusta.net/booksearch?ask={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Flickr",
+ "triggers": [
+ "f"
+ ],
+ "regions": {
+ "default": "https://www.flickr.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Flickr",
+ "triggers": [
+ "flickr"
+ ],
+ "regions": {
+ "default": "https://flickr.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Flickr (All Creative Commons)",
+ "triggers": [
+ "flickrcc"
+ ],
+ "regions": {
+ "default": "https://www.flickr.com/search/?text={{{term}}}&license=2%2C3%2C4%2C5%2C6%2C9"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Flickr (comm/deriv)",
+ "triggers": [
+ "flickrc"
+ ],
+ "regions": {
+ "default": "https://www.flickr.com/search/?q={{{term}}}&l=commderiv"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Flickr (Photo ID)",
+ "triggers": [
+ "flickrid"
+ ],
+ "regions": {
+ "default": "https://secure.flickr.com/photo.gne?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://flickriver.com/favicon.ico",
+ "name": "Flickriver",
+ "triggers": [
+ "flickriver"
+ ],
+ "regions": {
+ "default": "http://flickriver.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://e0.flightcdn.com/images/favicon.ico",
+ "name": "Flightaware",
+ "triggers": [
+ "flightaware"
+ ],
+ "regions": {
+ "default": "https://flightaware.com/live/flight/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://e0.flightcdn.com/images/favicon.ico",
+ "name": "flightaware",
+ "triggers": [
+ "aware"
+ ],
+ "regions": {
+ "default": "https://flightaware.com/live/airport/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://e0.flightcdn.com/images/favicon.ico",
+ "name": "FlightAware",
+ "triggers": [
+ "faw"
+ ],
+ "regions": {
+ "default": "https://flightaware.com/live/flight/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.flightgear.org/favicon.ico",
+ "name": "Flightgear Forums",
+ "triggers": [
+ "fgf"
+ ],
+ "regions": {
+ "default": "http://www.flightgear.org/forums/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.flipjuke.fr/favicon.ico",
+ "name": "FlipJuke",
+ "triggers": [
+ "flipjuke"
+ ],
+ "regions": {
+ "default": "http://www.flipjuke.fr/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img1a.flixcart.com/www/promos/new/20150528-140547-favicon-retina.ico",
+ "name": "Flipkart",
+ "triggers": [
+ "flipkart"
+ ],
+ "regions": {
+ "default": "https://www.flipkart.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img1a.flixcart.com/www/promos/new/20150528-140547-favicon-retina.ico",
+ "name": "Flipkart",
+ "triggers": [
+ "flip"
+ ],
+ "regions": {
+ "default": "https://www.flipkart.com/search?q={{{term}}}&as=off&as-show=on&otracker=start"
+ }
+ },
+ {
+ "favicon": "https://img1a.flixcart.com/www/promos/new/20150528-140547-favicon-retina.ico",
+ "name": "Flipkart",
+ "triggers": [
+ "fk"
+ ],
+ "regions": {
+ "default": "https://www.flipkart.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://flixsearch.io/favicon.ico",
+ "name": "FlixSearch",
+ "triggers": [
+ "fs",
+ "flixsearch"
+ ],
+ "regions": {
+ "default": "https://flixsearch.io/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://flocks.fr/favicon.ico",
+ "name": "Flocks.fr",
+ "triggers": [
+ "flks"
+ ],
+ "regions": {
+ "default": "http://flocks.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gopher.floodgap.com/favicon.ico",
+ "name": "Floodgap Gopher Proxy",
+ "triggers": [
+ "gopher"
+ ],
+ "regions": {
+ "default": "http://gopher.floodgap.com/gopher/gw?ss=gopher%3A%2F%2Fgopher.floodgap.com%3A70%2F7%2Fv2%2Fvs&sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.floptv.tv/favicon-16x16.png",
+ "name": "FlopTV",
+ "triggers": [
+ "floptv"
+ ],
+ "regions": {
+ "default": "http://www.floptv.tv/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://florida-prep.org/favicon.ico",
+ "name": "Florida Prep Express",
+ "triggers": [
+ "fpe"
+ ],
+ "regions": {
+ "default": "https://florida-prep.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fluidinfo.com/favicon.ico",
+ "name": "fluidinfo.com",
+ "triggers": [
+ "fluidinfo"
+ ],
+ "regions": {
+ "default": "http://fluidinfo.com/about/#!/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "FluidLang subreddit",
+ "triggers": [
+ "flr"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/FluidLang/search?q={{{term}}}&restrict_sr=on"
+ }
+ },
+ {
+ "favicon": "https://static1.akacdn.ru/assets/favicons/favicon-16x16.png",
+ "name": "FMovies",
+ "triggers": [
+ "fmovies"
+ ],
+ "regions": {
+ "default": "https://fmovies.is/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www4-fr.fnac-static.com/nav/images/favicon.ico",
+ "name": "fnac",
+ "triggers": [
+ "fnac"
+ ],
+ "regions": {
+ "default": "http://recherche.fnac.com/SearchResult/ResultList.aspx?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fnac.pt/nav/images/favicon.ico",
+ "name": "Fnac Portugal",
+ "triggers": [
+ "fnacportugal"
+ ],
+ "regions": {
+ "default": "http://pesquisa.fnac.pt/Search/SearchResult.aspx?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fnac.es/nav/images/favicon.ico",
+ "name": "Fnac.es",
+ "triggers": [
+ "fnaces"
+ ],
+ "regions": {
+ "default": "http://busqueda.fnac.es/Search/SearchResult.aspx?SCat=0%211&Search={{{term}}}&sft=1&submitbtn=OK"
+ }
+ },
+ {
+ "favicon": "https://fnd.io/favicon.ico",
+ "name": "fnd",
+ "triggers": [
+ "fnd"
+ ],
+ "regions": {
+ "default": "https://fnd.io/#/us/search?mediaType=all&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://focal.ie/android-highres.png",
+ "name": "Focal.ie",
+ "triggers": [
+ "focal"
+ ],
+ "regions": {
+ "default": "http://focal.ie/Search.aspx?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.focalprice.com/favicon.ico",
+ "name": "Focalprice",
+ "triggers": [
+ "focalprice"
+ ],
+ "regions": {
+ "default": "http://www.focalprice.com/buy/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.focloir.ie/external/images/favicon.ico?version=1.9.12",
+ "name": "Foclóir",
+ "triggers": [
+ "gafoc"
+ ],
+ "regions": {
+ "default": "https://www.focloir.ie/en/dictionary/ei/{{{term}}}?advSearch=1&q=ddhiggfci&inlanguage=ga"
+ }
+ },
+ {
+ "favicon": "https://www.focloir.ie/external/images/favicon.ico?version=1.9.12",
+ "name": "Foclóir",
+ "triggers": [
+ "enfoc"
+ ],
+ "regions": {
+ "default": "https://www.focloir.ie/en/dictionary/ei/{{{term}}}?advSearch=1&q=nmnjgbndidlaej&inlanguage=en"
+ }
+ },
+ {
+ "favicon": "http://zoeken.fok.nl/favicon.ico",
+ "name": "FOK!",
+ "triggers": [
+ "fok"
+ ],
+ "regions": {
+ "default": "http://zoeken.fok.nl/zoek/?searchmode=simple&tab=fok&startdate=&enddate=&startdatelast=&enddatelast=&bycreator=&byuser=&orderby=relevance&s_fields[]=titel&s_fields[]=bericht&s_fields[]=reacties&status[]=open&status[]=gesloten&status[]=sticky&status[]=openstick&status[]=centraal&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://foldoc.org/favicon-16x16.png",
+ "name": "FOLDOC (Free On-line Dictionary of Computing)",
+ "triggers": [
+ "foldoc"
+ ],
+ "regions": {
+ "default": "http://foldoc.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//f.i.uol.com.br/hunting/icons/favicon.ico",
+ "name": "Folha de S. Paulo",
+ "triggers": [
+ "folha"
+ ],
+ "regions": {
+ "default": "http://search.folha.com.br/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://folkets-lexikon.csc.kth.se/favicon.ico",
+ "name": "Folkets lexikon",
+ "triggers": [
+ "folkets"
+ ],
+ "regions": {
+ "default": "http://folkets-lexikon.csc.kth.se/folkets/#lookup&{{{term}}}&0"
+ }
+ },
+ {
+ "favicon": "http://www.folktunefinder.com/favicon.ico",
+ "name": "folktunefinder",
+ "triggers": [
+ "folktunefinder"
+ ],
+ "regions": {
+ "default": "http://www.folktunefinder.com/tunes?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.followthatpage.com/favicon.ico",
+ "name": "Follow That Page",
+ "triggers": [
+ "follow"
+ ],
+ "regions": {
+ "default": "http://www.followthatpage.com/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fonecta.fi/favicon.png",
+ "name": "Fonecta",
+ "triggers": [
+ "fonecta"
+ ],
+ "regions": {
+ "default": "https://www.fonecta.fi/henkilot/haku/-/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.fonq.nl/Content/images/fav/favicon-16x16.png",
+ "name": "Fonq",
+ "triggers": [
+ "fonqnl"
+ ],
+ "regions": {
+ "default": "https://www.fonq.nl/zoek/?fq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fonq.be/Content/images/fav/favicon-16x16.png",
+ "name": "fonq",
+ "triggers": [
+ "fonq"
+ ],
+ "regions": {
+ "default": "http://www.fonq.be/nl_BE/search/?search_term={{{term}}}#s=2"
+ }
+ },
+ {
+ "favicon": "https://fontlibrary.org/assets/images/favicon-custom.ico",
+ "name": "Font Library",
+ "triggers": [
+ "fontlibrary"
+ ],
+ "regions": {
+ "default": "https://fontlibrary.org/en/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fontsquirrel.com/favicon.ico?v=2",
+ "name": "Font Squirrel",
+ "triggers": [
+ "fonts",
+ "fontsq"
+ ],
+ "regions": {
+ "default": "http://www.fontsquirrel.com/fonts/list/find_fonts?q[term]={{{term}}}&q[search_check]=Y"
+ }
+ },
+ {
+ "favicon": "https://fontsinuse.com/favicon.ico",
+ "name": "Fonts in Use",
+ "triggers": [
+ "fiu"
+ ],
+ "regions": {
+ "default": "https://fontsinuse.com/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.fontspace.com/favicon.ico?v=5AA7qX5gkg",
+ "name": "FontSpace",
+ "triggers": [
+ "fontspace"
+ ],
+ "regions": {
+ "default": "http://www.fontspace.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.foodnetwork.com/etc/clientlibs/assets/images/food/favicon-32x32.png",
+ "name": "Food Network",
+ "triggers": [
+ "foodnetwork",
+ "fn"
+ ],
+ "regions": {
+ "default": "http://www.foodnetwork.com/search/delegate.do?fnSearchString={{{term}}}&fnSearchType=site"
+ }
+ },
+ {
+ "favicon": "http://ratings.food.gov.uk/foodgov/img/icons/favicon.ico",
+ "name": "Food Standards Agency - Food Hygiene Ratings",
+ "triggers": [
+ "fsarating"
+ ],
+ "regions": {
+ "default": "http://ratings.food.gov.uk/enhanced-search/en-GB/{{{term}}}/%5E/alpha/0/%5E/%5E/1/1/10"
+ }
+ },
+ {
+ "favicon": "https://geniuskitchen.sndimg.com/gk/img/favicon.ico",
+ "name": "Food.com",
+ "triggers": [
+ "food"
+ ],
+ "regions": {
+ "default": "http://www.food.com/recipe-finder/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://food2fork.com/F2F/static/images/favicon.ico",
+ "name": "Food2Fork",
+ "triggers": [
+ "food2fork"
+ ],
+ "regions": {
+ "default": "http://food2fork.com/top?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.food4rhino.com/s3fs-images/f4r/images/icons/favicon.ico",
+ "name": "Food4Rhino",
+ "triggers": [
+ "rhino"
+ ],
+ "regions": {
+ "default": "http://www.food4rhino.com/browse?searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://food52.com/assets/favicon-cc3d20d96048249bf09ab08b820dc99df73a5805327c50800ddf739e55059aa5.ico",
+ "name": "Food52",
+ "triggers": [
+ "52"
+ ],
+ "regions": {
+ "default": "http://food52.com/recipes/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://foofind.is/favicon.ico",
+ "name": "Foofind",
+ "triggers": [
+ "foofind"
+ ],
+ "regions": {
+ "default": "http://foofind.is/ca/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//g.foolcdn.com/static/dubs/elvis/images/favicon.13af4883f3a3.ico",
+ "name": "Fool.com",
+ "triggers": [
+ "fool"
+ ],
+ "regions": {
+ "default": "http://www.fool.com/search/index.aspx?go=1&site=USMF&q={{{term}}}&source=ifltnvsnq0000001&mbbid=BoardID&mbmid=MessageID"
+ }
+ },
+ {
+ "favicon": "http://archive.foolz.us/favicon.ico",
+ "name": "FoOlz [4chan] Archives",
+ "triggers": [
+ "foolz"
+ ],
+ "regions": {
+ "default": "http://archive.foolz.us/search/text/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.fooplot.com/favicon.ico",
+ "name": "FooPlot",
+ "triggers": [
+ "plot"
+ ],
+ "regions": {
+ "default": "http://www.fooplot.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//i.forbesimg.com/favicon.ico",
+ "name": "Forbes",
+ "triggers": [
+ "forbes"
+ ],
+ "regions": {
+ "default": "http://search.forbes.com/search/find?MT={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fowtcg.com/favicon.ico",
+ "name": "Force Of Will English Card Database",
+ "triggers": [
+ "fow"
+ ],
+ "regions": {
+ "default": "http://www.fowtcg.com/cards?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fowsystem.com/favicon.ico",
+ "name": "Force of Will German Database",
+ "triggers": [
+ "fowg"
+ ],
+ "regions": {
+ "default": "https://www.fowsystem.com/de/Kartendatenbank?page=&CERCA=cerca&cardname={{{term}}}&block=ALL&edition=ALL&REGATT=or&cardnumber=&ABILITYTEXT=&ATKMIN=0&ATKMAX=2500&DEFMIN=0&DEFMAX=2500"
+ }
+ },
+ {
+ "favicon": "https://fordsix.com/favicon.ico",
+ "name": "FordSix Performance Forum",
+ "triggers": [
+ "fordsix"
+ ],
+ "regions": {
+ "default": "https://fordsix.com/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forecast.weather.gov/favicon.ico",
+ "name": "forecast.weather.gov",
+ "triggers": [
+ "wgov"
+ ],
+ "regions": {
+ "default": "http://forecast.weather.gov/zipcity.php?inputstring={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.forgottenweapons.com/favicon.ico",
+ "name": "Forgotten Weapons",
+ "triggers": [
+ "fw"
+ ],
+ "regions": {
+ "default": "http://www.forgottenweapons.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forkd.com/favicon.ico",
+ "name": "Forkd",
+ "triggers": [
+ "forkd"
+ ],
+ "regions": {
+ "default": "http://forkd.com/recipe/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//st.forocoches.com/favicon.ico",
+ "name": "ForoCoches",
+ "triggers": [
+ "fcc"
+ ],
+ "regions": {
+ "default": "https://www.forocoches.com/foro/search.php?do=process&titleonly=1&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.foromedios.com/uploads/monthly_2018_04/favicon.ico.b433ef9faf268101a54eb8a8fb65c39d.ico",
+ "name": "Foromedios",
+ "triggers": [
+ "fms"
+ ],
+ "regions": {
+ "default": "http://www.foromedios.com/index.php?app=core&module=search&do=search&andor_type=&sid=&search_app_filters[forums][sortKey]=date&search_app_filters[forums][sortKey]=date&search_app_filters[forums][searchInKey]=&search_term={{{term}}}&search_app=forums"
+ }
+ },
+ {
+ "favicon": "http://www.forosuse.org/favicon.ico",
+ "name": "ForoSUSE",
+ "triggers": [
+ "forosuse"
+ ],
+ "regions": {
+ "default": "http://www.forosuse.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://go.forrester.com/wp-content/themes/forrester-timber-theme/assets/img/favicon.png",
+ "name": "Forrester",
+ "triggers": [
+ "forrester"
+ ],
+ "regions": {
+ "default": "https://www.forrester.com/search?tmtxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fortranwiki.org/fortran.ico",
+ "name": "Fortran Wiki",
+ "triggers": [
+ "fwiki"
+ ],
+ "regions": {
+ "default": "http://fortranwiki.org/fortran/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.debianizzati.org/favicon.ico",
+ "name": "Forum Debianizzati.org",
+ "triggers": [
+ "debianizzati"
+ ],
+ "regions": {
+ "default": "http://forum.debianizzati.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.matematyka.pl/images/pl.gif",
+ "name": "Forum Matematyka.pl",
+ "triggers": [
+ "matpl"
+ ],
+ "regions": {
+ "default": "http://www.matematyka.pl/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.outclock.org/templates/t3_bs3_blank/favicon.ico",
+ "name": "Forum Outclock",
+ "triggers": [
+ "outclock"
+ ],
+ "regions": {
+ "default": "http://www.outclock.org/index.php?searchword={{{term}}}&searchphrase=all&Itemid=548&option=com_search"
+ }
+ },
+ {
+ "favicon": "http://forum.ubuntu-it.org/favicon.ico",
+ "name": "Forum Ubuntu-it",
+ "triggers": [
+ "ubu-it"
+ ],
+ "regions": {
+ "default": "http://forum.ubuntu-it.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.keyboardmaestro.com/uploads/default/7/fb356730af85a094.png",
+ "name": "forum.keyboardmaestro.com",
+ "triggers": [
+ "kmf"
+ ],
+ "regions": {
+ "default": "https://forum.keyboardmaestro.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forvo.com/favicon.ico",
+ "name": "Forvo",
+ "triggers": [
+ "forvo"
+ ],
+ "regions": {
+ "default": "http://forvo.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://fossdroid.com/favicon-96x96.png",
+ "name": "Fossdroid",
+ "triggers": [
+ "fossdroid"
+ ],
+ "regions": {
+ "default": "https://fossdroid.com/s.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fossdroid.com/favicon-96x96.png",
+ "name": "Fossdroid",
+ "triggers": [
+ "fossd"
+ ],
+ "regions": {
+ "default": "https://fossdroid.com/s/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.fosshub.com/favicon.ico",
+ "name": "FossHub",
+ "triggers": [
+ "fhub",
+ "fosshub"
+ ],
+ "regions": {
+ "default": "https://www.fosshub.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fotbollskanalen.se/favicon-16x16.png",
+ "name": "Fotbollskanalen",
+ "triggers": [
+ "fotbollskanalen"
+ ],
+ "regions": {
+ "default": "http://www.fotbollskanalen.se/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://foundfootagecritic.com/wp-content/uploads/2015/07/twlogo.png",
+ "name": "Found Footage Critic",
+ "triggers": [
+ "ffc"
+ ],
+ "regions": {
+ "default": "http://foundfootagecritic.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://foursquare.com/favicon.ico",
+ "name": "Foursquare",
+ "triggers": [
+ "4sq"
+ ],
+ "regions": {
+ "default": "https://foursquare.com/explore?mode=url&nearGeoId=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://foursquare.com/favicon.ico",
+ "name": "Foursquare",
+ "triggers": [
+ "foursquare"
+ ],
+ "regions": {
+ "default": "https://foursquare.com/explore?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.foxebook.net/wp-content/themes/book2/assets/img/favicon.ico",
+ "name": "Fox eBook",
+ "triggers": [
+ "foxebook"
+ ],
+ "regions": {
+ "default": "http://www.foxebook.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/android-chrome-192x192.png",
+ "name": "Fox News",
+ "triggers": [
+ "fox"
+ ],
+ "regions": {
+ "default": "http://www.foxnews.com/search-results/search?q={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://hamster.foxhollow.ca/ccd/favicon.ico",
+ "name": "FoxHollow CCD",
+ "triggers": [
+ "ccd"
+ ],
+ "regions": {
+ "default": "http://hamster.foxhollow.ca/ccd/index.php?keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://foxinsane.com/favicon.ico",
+ "name": "Foxinsane.com",
+ "triggers": [
+ "foxinsane"
+ ],
+ "regions": {
+ "default": "https://foxinsane.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//global.fncstatic.com/static/orion/styles/img/fox-news/favicons/android-chrome-192x192.png",
+ "name": "FoxNews",
+ "triggers": [
+ "foxnews"
+ ],
+ "regions": {
+ "default": "http://www.foxnews.com/search-results/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.foyles.co.uk/Images/favicon.ico",
+ "name": "Foyles",
+ "triggers": [
+ "foyles"
+ ],
+ "regions": {
+ "default": "http://www.foyles.co.uk/qsearch/All/All?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fpcomplete.com/hubfs/Website/Favicon%20Logo.png?t=1530633559216",
+ "name": "FP Complete hoogle",
+ "triggers": [
+ "fpch"
+ ],
+ "regions": {
+ "default": "https://www.fpcomplete.com/hoogle?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "fr.wikipedia.org",
+ "triggers": [
+ "wf"
+ ],
+ "regions": {
+ "default": "https://fr.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://frack.nl/favicon.ico",
+ "name": "Frack.nl Hackerspace",
+ "triggers": [
+ "frack"
+ ],
+ "regions": {
+ "default": "https://frack.nl/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.frag-caesar.de/favicon.ico",
+ "name": "Frag Caesar",
+ "triggers": [
+ "fgcs",
+ "frc",
+ "frcs"
+ ],
+ "regions": {
+ "default": "http://www.frag-caesar.de/lateinwoerterbuch/{{{term}}}-uebersetzung.html"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Frageee.de",
+ "triggers": [
+ "frageee"
+ ],
+ "regions": {
+ "default": "http://frageee.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://framabee.org/static/themes/framasoft/img/framabee_favicon.png",
+ "name": "Framabee",
+ "triggers": [
+ "framabee",
+ "fbee"
+ ],
+ "regions": {
+ "default": "https://framabee.org/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://framalibre.org/misc/favicon.ico",
+ "name": "Framalibre",
+ "triggers": [
+ "framal"
+ ],
+ "regions": {
+ "default": "https://framalibre.org/recherche-par-crit-res?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.france3.fr/images/favicons/favicon-192.png",
+ "name": "France 3",
+ "triggers": [
+ "f3"
+ ],
+ "regions": {
+ "default": "http://www.france3.fr/recherche?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://france-hydro.com/img/favicon.ico?1497273406",
+ "name": "France Hydro",
+ "triggers": [
+ "france-hydro"
+ ],
+ "regions": {
+ "default": "http://france-hydro.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.franceinter.fr/img/touch-icon-192x192.png",
+ "name": "France Inter",
+ "triggers": [
+ "fri"
+ ],
+ "regions": {
+ "default": "https://www.franceinter.fr/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.francesurf.net/favicon.ico",
+ "name": "FranceSurf",
+ "triggers": [
+ "francesurf"
+ ],
+ "regions": {
+ "default": "http://www.francesurf.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://frankerfacez.com/static/images/favicon-16.png",
+ "name": "FrankerFaceZ",
+ "triggers": [
+ "ffz"
+ ],
+ "regions": {
+ "default": "http://www.frankerfacez.com/emoticons/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.faz.net/favicon.ico",
+ "name": "Frankfurter Allgemeine",
+ "triggers": [
+ "faz"
+ ],
+ "regions": {
+ "default": "http://www.faz.net/suche/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.fraze.it/images/logo.ico",
+ "name": "FrazeIt",
+ "triggers": [
+ "frazeit"
+ ],
+ "regions": {
+ "default": "http://fraze.it/n_search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://research.stlouisfed.org/favicon.ico",
+ "name": "FRED Economic Data",
+ "triggers": [
+ "fred"
+ ],
+ "regions": {
+ "default": "https://research.stlouisfed.org/fred2/search?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://freedictionary.org/favicon.ico",
+ "name": "Free Dictionary",
+ "triggers": [
+ "freedict",
+ "fd",
+ "freedictionary"
+ ],
+ "regions": {
+ "default": "http://freedictionary.org/?Query={{{term}}}&button=Search"
+ }
+ },
+ {
+ "favicon": "http://freemusicarchive.org/img/generic/favicon.ico",
+ "name": "Free Music Archive",
+ "triggers": [
+ "fma"
+ ],
+ "regions": {
+ "default": "http://freemusicarchive.org/search/?quicksearch={{{term}}}&sort=track_interest"
+ }
+ },
+ {
+ "favicon": "https://directory.fsf.org/w/skins/favicon.ico",
+ "name": "Free Software Directory",
+ "triggers": [
+ "fsfd"
+ ],
+ "regions": {
+ "default": "https://directory.fsf.org/wiki?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://directory.fsf.org/w/skins/favicon.ico",
+ "name": "Free Software Directory",
+ "triggers": [
+ "fsd"
+ ],
+ "regions": {
+ "default": "https://directory.fsf.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fsf.org/favicon.ico",
+ "name": "Free Software Foundation",
+ "triggers": [
+ "fsf"
+ ],
+ "regions": {
+ "default": "https://www.fsf.org/search?SearchableText={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.freebsd.org/cgi/favicon.ico",
+ "name": "FreeBSD",
+ "triggers": [
+ "bsdman",
+ "fman"
+ ],
+ "regions": {
+ "default": "https://www.freebsd.org/cgi/man.cgi?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.freebsd.org/bugzilla/images/fbsd_favicon.ico",
+ "name": "FreeBSD Bugs",
+ "triggers": [
+ "fbugs"
+ ],
+ "regions": {
+ "default": "https://bugs.freebsd.org/bugzilla/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fxr.watson.org/favicon.ico",
+ "name": "FreeBSD Cross Reference",
+ "triggers": [
+ "fxr"
+ ],
+ "regions": {
+ "default": "http://fxr.watson.org/fxr/ident?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://man.freebsd.org/favicon.ico",
+ "name": "FreeBSD Man Pages",
+ "triggers": [
+ "freebsdman"
+ ],
+ "regions": {
+ "default": "https://man.freebsd.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freebsd.org/cgi/favicon.ico",
+ "name": "FreeBSD Ports",
+ "triggers": [
+ "freebsd"
+ ],
+ "regions": {
+ "default": "https://www.freebsd.org/cgi/ports.cgi?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freebsd.org/cgi/favicon.ico",
+ "name": "FreeBSD Ports",
+ "triggers": [
+ "fports"
+ ],
+ "regions": {
+ "default": "https://www.freebsd.org/cgi/ports.cgi?query={{{term}}}&stype=all"
+ }
+ },
+ {
+ "favicon": "https://bugs.freedesktop.org/images/favicon.ico",
+ "name": "freedesktop.org bugs",
+ "triggers": [
+ "fdobugs"
+ ],
+ "regions": {
+ "default": "https://bugs.freedesktop.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.freedommobile.ca/favicon.ico",
+ "name": "Freedom Mobile Support",
+ "triggers": [
+ "freedom"
+ ],
+ "regions": {
+ "default": "http://www.freedommobile.ca/my-account/support/faq-search-results?searchQuery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://freedom.press/static/icons/favicon.ico",
+ "name": "Freedom of the Press Foundation",
+ "triggers": [
+ "freedompress"
+ ],
+ "regions": {
+ "default": "https://freedom.press/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://free.com.tw/blog/wp-content/uploads/2017/03/ProfilePicture_WHITE_320x320_v2-300x300.png",
+ "name": "freeGROUP",
+ "triggers": [
+ "freeg",
+ "freegroup"
+ ],
+ "regions": {
+ "default": "https://free.com.tw/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freelancer.com/favicon.ico",
+ "name": "freelancer.com",
+ "triggers": [
+ "freelancer"
+ ],
+ "regions": {
+ "default": "https://www.freelancer.com/work/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://freelancinghacks.com/wp-content/uploads/2015/10/favicon.png",
+ "name": "Freelancing Hacks",
+ "triggers": [
+ "freelancinghacks"
+ ],
+ "regions": {
+ "default": "http://freelancinghacks.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://freemidi.org/images/favicon/xfavicon-16x16.png.pagespeed.ic.HbPujbsEVh.png",
+ "name": "freemidi.org",
+ "triggers": [
+ "midi"
+ ],
+ "regions": {
+ "default": "https://freemidi.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://webchat.freenode.net/static/beta/images/favicon.png",
+ "name": "Freenode",
+ "triggers": [
+ "freenode"
+ ],
+ "regions": {
+ "default": "https://webchat.freenode.net/?channels={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.freepascal.org/favicon.ico",
+ "name": "Freepascal",
+ "triggers": [
+ "freepascal"
+ ],
+ "regions": {
+ "default": "http://wiki.freepascal.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.freepatentsonline.com/images/favicon_1.ico",
+ "name": "freepatentsonline",
+ "triggers": [
+ "fpo"
+ ],
+ "regions": {
+ "default": "http://www.freepatentsonline.com/result.html?sort=relevance&srch=top&query_txt={{{term}}}&submit=&patents=on"
+ }
+ },
+ {
+ "favicon": "https://www.freepik.com/favicon.png",
+ "name": "Freepik",
+ "triggers": [
+ "freepik"
+ ],
+ "regions": {
+ "default": "http://www.freepik.com/index.php?goto=2&searchform=1&k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freerepublic.com/l/favicon.ico",
+ "name": "Freerepublic",
+ "triggers": [
+ "freep"
+ ],
+ "regions": {
+ "default": "https://www.freerepublic.com/tag/{{{term}}}/index?tab=articles"
+ }
+ },
+ {
+ "favicon": "http://www.freesfx.co.uk/favicon.ico",
+ "name": "freeSFX",
+ "triggers": [
+ "freesfx"
+ ],
+ "regions": {
+ "default": "http://www.freesfx.co.uk/sfx/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freesound.org/favicon.ico",
+ "name": "Freesound",
+ "triggers": [
+ "freesound",
+ "frs"
+ ],
+ "regions": {
+ "default": "https://www.freesound.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freetutorials.us/wp-content/uploads/2017/10/cropped-01-1-192x192.png",
+ "name": "FreeTutorials.Us",
+ "triggers": [
+ "ftu"
+ ],
+ "regions": {
+ "default": "https://www.freetutorials.us/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.freeview.com.au/media/1778/favicon.ico",
+ "name": "Freeview Australia",
+ "triggers": [
+ "fviewau"
+ ],
+ "regions": {
+ "default": "http://www.freeview.com.au/tv-search/?search={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.freewave.at/wp-content/themes/freewave/images/favicon.png",
+ "name": "Freewave",
+ "triggers": [
+ "frw"
+ ],
+ "regions": {
+ "default": "http://www.freewave.at/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/french/img/favicon.ico?v=84e7746e8be1",
+ "name": "French Language and Usage",
+ "triggers": [
+ "french"
+ ],
+ "regions": {
+ "default": "http://french.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.frenchtorrentdb.com/favicon.ico",
+ "name": "FrenchTorrentDB",
+ "triggers": [
+ "ftdb"
+ ],
+ "regions": {
+ "default": "http://www.frenchtorrentdb.com/?section=TORRENTS&exact=1&name={{{term}}}&submit=GO"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/cdn.freshdesk.com/data/helpdesk/attachments/production/20816372/fav_icon/zPEgVoHxCmNa_gvJLFX76xBroVl-IULx2Q.png",
+ "name": "Freshdesk Support Home",
+ "triggers": [
+ "freshdesk"
+ ],
+ "regions": {
+ "default": "https://support.freshdesk.com/support/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.freshports.org/favicon.ico",
+ "name": "FreshPorts",
+ "triggers": [
+ "freshports"
+ ],
+ "regions": {
+ "default": "https://www.freshports.org/search.php?query={{{term}}}&search=go&num=10&stype=name&method=match&deleted=excludedeleted&start=1&casesensitivity=caseinsensitive"
+ }
+ },
+ {
+ "favicon": "https://www.fressnapf.de/_ui/jbs/img/favicons/favicon.ico",
+ "name": "fressnapf.de",
+ "triggers": [
+ "friss"
+ ],
+ "regions": {
+ "default": "https://www.fressnapf.de/s/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.futureboy.us/images/futureboyicon.png",
+ "name": "Frink Web Interface",
+ "triggers": [
+ "frink"
+ ],
+ "regions": {
+ "default": "https://www.futureboy.us/fsp/frink.fsp?fromVal={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://frinkiac.com/favicon-228.png",
+ "name": "Frinkiac",
+ "triggers": [
+ "frinkiac"
+ ],
+ "regions": {
+ "default": "https://frinkiac.com/?p=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fy.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Frisian Wikipedia",
+ "triggers": [
+ "wfy"
+ ],
+ "regions": {
+ "default": "https://fy.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/media.friskyradio.com/favicon.png",
+ "name": "FRISKY Radio",
+ "triggers": [
+ "frisky"
+ ],
+ "regions": {
+ "default": "https://www.friskyradio.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fabienm.eu/favicon.ico",
+ "name": "Front de Libération des FPGA",
+ "triggers": [
+ "flf"
+ ],
+ "regions": {
+ "default": "http://www.fabienm.eu/flf/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.frontlinedefenders.org/favicon.ico",
+ "name": "Front Line Defenders",
+ "triggers": [
+ "fld"
+ ],
+ "regions": {
+ "default": "https://www.frontlinedefenders.org/en/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://3718aeafc638f96f5bd6-d4a9ca15fc46ba40e71f94dec0aad28c.ssl.cf1.rackcdn.com/favicon_16x16.ico",
+ "name": "Frontiers",
+ "triggers": [
+ "frontiers",
+ "loop"
+ ],
+ "regions": {
+ "default": "http://www.frontiersin.org/SearchData.aspx?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://frugalware.org/images/favicon.ico",
+ "name": "Frugalware packages",
+ "triggers": [
+ "fwpkg"
+ ],
+ "regions": {
+ "default": "https://frugalware.org/packages?op=pkg&arch=all&ver=current&srch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://frutke.com/wp-content/uploads/2015/01/Frutke-Logo-54a572d2v1_site_icon-256x256.png",
+ "name": "Frutke",
+ "triggers": [
+ "frutke"
+ ],
+ "regions": {
+ "default": "http://frutke.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.frys.com/favicon.ico",
+ "name": "Fry's Electronics",
+ "triggers": [
+ "frys"
+ ],
+ "regions": {
+ "default": "http://www.frys.com/search?search_type=regular&sqxts=1&query_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/ftl/images/6/64/Favicon.ico/revision/latest?cb=20120618052117",
+ "name": "Ftl: Faster Than Light Wiki",
+ "triggers": [
+ "ftl"
+ ],
+ "regions": {
+ "default": "http://ftl.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fuckyeah.herokuapp.com/favicon.ico",
+ "name": "Fuck Yeah",
+ "triggers": [
+ "fy"
+ ],
+ "regions": {
+ "default": "https://fuckyeah.herokuapp.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://app.fullcontact.com/favicon.ico",
+ "name": "FullContact",
+ "triggers": [
+ "fullcontact"
+ ],
+ "regions": {
+ "default": "https://app.fullcontact.com/#/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.fullforms.com/images/favicons/favicon-96x96.png",
+ "name": "FullForms",
+ "triggers": [
+ "fullforms"
+ ],
+ "regions": {
+ "default": "http://fullforms.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://fulltextrssfeed.com/images/general-elements/favicon/favicon.png",
+ "name": "Fulltext RSS",
+ "triggers": [
+ "ftrss"
+ ],
+ "regions": {
+ "default": "http://fulltextrssfeed.com/feed.php?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://portal.fultonschools.org/favicon.ico",
+ "name": "Fulton County Schools",
+ "triggers": [
+ "fcs"
+ ],
+ "regions": {
+ "default": "http://portal.fultonschools.org/_layouts/OSSSearchResults.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.fstatic.nl/master_1257/assets/favicon.ico",
+ "name": "Funda",
+ "triggers": [
+ "funda"
+ ],
+ "regions": {
+ "default": "http://www.funda.nl/koop/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fundeu.es/wp-content/themes/fundeu_v2/favicon3.ico",
+ "name": "Fundéu BBVA",
+ "triggers": [
+ "fbbva"
+ ],
+ "regions": {
+ "default": "http://www.fundeu.es/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.funimation.com/favicon.ico",
+ "name": "FUNimation",
+ "triggers": [
+ "funimation"
+ ],
+ "regions": {
+ "default": "http://www.funimation.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://goodmemes.fjcdn.com/site/funnyjunk/favicon.ico",
+ "name": "Funnyjunk",
+ "triggers": [
+ "fj"
+ ],
+ "regions": {
+ "default": "http://funnyjunk.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s1.wp.com/i/favicon.ico",
+ "name": "FunTechBlog",
+ "triggers": [
+ "funtechblog"
+ ],
+ "regions": {
+ "default": "https://funtechblog.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.funtoo.org/favicon.png",
+ "name": "Funtoo",
+ "triggers": [
+ "funtoo"
+ ],
+ "regions": {
+ "default": "http://www.funtoo.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.furaffinity.net/themes/classic/img/favicon.ico",
+ "name": "FurAffinity",
+ "triggers": [
+ "furaffinity"
+ ],
+ "regions": {
+ "default": "https://www.furaffinity.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.furet.com/skin/frontend/default/furet/favicon.ico",
+ "name": "Furet du Nord",
+ "triggers": [
+ "furet"
+ ],
+ "regions": {
+ "default": "http://www.furet.com/catalogsearch/result/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/fusionfall/images/6/64/Favicon.ico/revision/latest?cb=20121026153532",
+ "name": "FusionFall Wikia",
+ "triggers": [
+ "fusionfall"
+ ],
+ "regions": {
+ "default": "http://fusionfall.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fuska.nu/favicon.ico",
+ "name": "Fuska.nu",
+ "triggers": [
+ "fuskanu"
+ ],
+ "regions": {
+ "default": "http://fuska.nu/sok/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fuska.nu/favicon.ico",
+ "name": "Fuska.nu forum",
+ "triggers": [
+ "fuskanuforum"
+ ],
+ "regions": {
+ "default": "http://fuska.nu/forum/sok.php?sok={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.fussball.de/static/por/6.92.29.3208/icon/favicon.ico",
+ "name": "Fussball.de",
+ "triggers": [
+ "fussball"
+ ],
+ "regions": {
+ "default": "http://www.fussball.de/suche/-/text/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://storage.fussballdaten.de/source/favicon.ico",
+ "name": "Fussballdaten",
+ "triggers": [
+ "fussballdaten"
+ ],
+ "regions": {
+ "default": "http://www.fussballdaten.de/suche/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://futhead.cursecdn.com/static/img/favicon.png",
+ "name": "Futhead",
+ "triggers": [
+ "futhead"
+ ],
+ "regions": {
+ "default": "http://www.futhead.com/16/players/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "http://www.futura-sciences.com/favicon-16x16.png",
+ "name": "Futura Sciences",
+ "triggers": [
+ "fsc"
+ ],
+ "regions": {
+ "default": "http://www.futura-sciences.com/magazines/sciences/recherche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//futurism.com/wp-content/themes/futurism/images/favicon.png?v=6",
+ "name": "Futurism",
+ "triggers": [
+ "fsm"
+ ],
+ "regions": {
+ "default": "http://futurism.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fuzzfind.com/favicon.ico",
+ "name": "FuzzFind",
+ "triggers": [
+ "fuzz"
+ ],
+ "regions": {
+ "default": "http://www.fuzzfind.com/v2/searcher.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d33utfl382x3hu.cloudfront.net/modules/core/client/img/fwtv-icon.ico",
+ "name": "FWTV",
+ "triggers": [
+ "fwtv"
+ ],
+ "regions": {
+ "default": "http://www.fwtv.tv/buscar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fye.com/on/demandware.static/Sites-FYE-Site/-/default/dw44609eab/images/android-icon-192x192.png",
+ "name": "FYE",
+ "triggers": [
+ "fye"
+ ],
+ "regions": {
+ "default": "https://www.fye.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fyndiq.se/favicon.ico",
+ "name": "Fyndiq",
+ "triggers": [
+ "fyndiq"
+ ],
+ "regions": {
+ "default": "https://fyndiq.se/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fyyd.de/favicon.png",
+ "name": "fyyd",
+ "triggers": [
+ "fyyd"
+ ],
+ "regions": {
+ "default": "https://fyyd.de/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fz.se/favicon-16x16.png",
+ "name": "FZ",
+ "triggers": [
+ "fz"
+ ],
+ "regions": {
+ "default": "http://www.fz.se/sok/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.focloir.ie/external/images/favicon.ico?version=1.9.12",
+ "name": "Fóclair.ie New English-Irish Dictionary",
+ "triggers": [
+ "gael"
+ ],
+ "regions": {
+ "default": "https://www.focloir.ie/en/spellcheck/ei/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/428858b31a9b9cf08896cdd8e582ee37?s=32",
+ "name": "Fürstenfeldbruck ist bunt!",
+ "triggers": [
+ "ffbbunt"
+ ],
+ "regions": {
+ "default": "https://ffbbunt.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.gadventures.com/media-server/static/gadventures/images/apple-touch-icon-180x180.png",
+ "name": "G Adventures",
+ "triggers": [
+ "gadv"
+ ],
+ "regions": {
+ "default": "https://www.gadventures.com/search/?q={{{term}}}&ref=ddgsearch"
+ }
+ },
+ {
+ "favicon": "https://cdn.gsport.no/gmax/favicon.ico",
+ "name": "G-Sport",
+ "triggers": [
+ "gsport"
+ ],
+ "regions": {
+ "default": "https://www.gsport.no/magento/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.g2a.com/en/assets/favicon.ico",
+ "name": "G2A",
+ "triggers": [
+ "g2a"
+ ],
+ "regions": {
+ "default": "https://www.g2a.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdns.kinguin.net/media/favicon/stores/34/1.png",
+ "name": "G2play",
+ "triggers": [
+ "g2play",
+ "g2p"
+ ],
+ "regions": {
+ "default": "https://www.g2play.net/catalogsearch/result/index/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.g4tv.com/favicon.ico",
+ "name": "G4TV",
+ "triggers": [
+ "g4tv"
+ ],
+ "regions": {
+ "default": "http://www.g4tv.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wildlifepartners.com/wp-content/themes/wildlifepartners/images/favicon/favicon.ico",
+ "name": "G5 Hunting Ranch",
+ "triggers": [
+ "g5hunting"
+ ],
+ "regions": {
+ "default": "http://texasexotichunting.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://css375.gaanacdn.com/images/favicon.ico",
+ "name": "Gaana",
+ "triggers": [
+ "gaana"
+ ],
+ "regions": {
+ "default": "https://www.gaana.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gab.ai/assets/icon/favicon-16x16.png",
+ "name": "Gab",
+ "triggers": [
+ "gab"
+ ],
+ "regions": {
+ "default": "https://gab.ai/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gadgetsdirect.com.au/favicon.ico",
+ "name": "Gadgets Direct",
+ "triggers": [
+ "gadgetsdirect"
+ ],
+ "regions": {
+ "default": "http://www.gadgetsdirect.com.au/index.php?main_page=advanced_search_result&search_in_description=1&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lexilogos.com/latin/favicon.ico",
+ "name": "Gaffiot latin -> français",
+ "triggers": [
+ "gaf"
+ ],
+ "regions": {
+ "default": "http://www.lexilogos.com/latin/gaffiot.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.galaxus.ch/portalimage/22/favicon-32x32.png?lang=de",
+ "name": "Galaxus.ch",
+ "triggers": [
+ "galaxus"
+ ],
+ "regions": {
+ "default": "https://www.galaxus.ch/de/Search?searchSectors=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Galipedia",
+ "triggers": [
+ "wgal",
+ "wgl"
+ ],
+ "regions": {
+ "default": "https://gl.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gallica.bnf.fr/accueil/sites/default/files/index.ico",
+ "name": "Gallica",
+ "triggers": [
+ "gallica",
+ "gallica.bnf"
+ ],
+ "regions": {
+ "default": "http://gallica.bnf.fr/Search?ArianeWireIndex=index&p=1&lang=FR&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamasutra.com/favicon.ico",
+ "name": "Gamasutra",
+ "triggers": [
+ "gamasutra"
+ ],
+ "regions": {
+ "default": "http://www.gamasutra.com/search/?search_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.game.net/img/favicon.ico",
+ "name": "Game",
+ "triggers": [
+ "game"
+ ],
+ "regions": {
+ "default": "https://www.game.co.uk/webapp/wcs/stores/servlet/AjaxCatalogSearch?storeId=10151&catalogId=10201&langId=44&pageSize=&beginIndex=0&sType=SimpleSearch&resultCatEntryType=2&showResultsPage=true&pageView=image&predictiveSearchURL=&searchTerm={{{term}}}&searchBtn=z"
+ }
+ },
+ {
+ "favicon": "http://www.gwct.org.uk/images/favicon.png",
+ "name": "Game & Wildlife Conservation Trust",
+ "triggers": [
+ "gwct"
+ ],
+ "regions": {
+ "default": "http://www.gwct.org.uk/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "Game Grumps",
+ "triggers": [
+ "grumps"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/user/GameGrumps/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamejaunt.com/favicon.ico",
+ "name": "Game Jaunt",
+ "triggers": [
+ "gamejaunt"
+ ],
+ "regions": {
+ "default": "http://www.gamejaunt.com/search.php?u=posts&keywords_include={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://files.gamebanana.com/static/img/favicon/128x128.png",
+ "name": "GameBanana",
+ "triggers": [
+ "gamebanana",
+ "gban"
+ ],
+ "regions": {
+ "default": "http://gamebanana.com/skins/search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://files.gamebanana.com/static/img/favicon/128x128.png",
+ "name": "GAMEBANANA",
+ "triggers": [
+ "gbn"
+ ],
+ "regions": {
+ "default": "http://gamebanana.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamefaqs.com/favicon.ico",
+ "name": "GameFAQs",
+ "triggers": [
+ "gfaq"
+ ],
+ "regions": {
+ "default": "https://www.gamefaqs.com/search/index.html?game={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamefaqs.com/favicon.ico",
+ "name": "GameFAQS.com",
+ "triggers": [
+ "gfaqs",
+ "gamefaqs"
+ ],
+ "regions": {
+ "default": "https://www.gamefaqs.com/search/index.html?game={{{term}}}&platform=0"
+ }
+ },
+ {
+ "favicon": "https://www.gamefly.com/favicon.ico",
+ "name": "Gamefly",
+ "triggers": [
+ "gamefly"
+ ],
+ "regions": {
+ "default": "https://www.gamefly.com/#!/search/all?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gameinformer.com/sites/default/files/favicons/favicon-16x16.png",
+ "name": "GameInformer",
+ "triggers": [
+ "gameinformer"
+ ],
+ "regions": {
+ "default": "https://www.gameinformer.com/search/searchresults.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.gjcdn.net/favicon.png",
+ "name": "Gamejolt",
+ "triggers": [
+ "gamejolt"
+ ],
+ "regions": {
+ "default": "http://gamejolt.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamekings.tv/wp-content/themes/gamekings2016/img/favicons/favicon-16x16.png",
+ "name": "Gamekings",
+ "triggers": [
+ "gamekings"
+ ],
+ "regions": {
+ "default": "http://www.gamekings.tv/index.php?cat=3&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamekult.com/favicon.ico",
+ "name": "Gamekult",
+ "triggers": [
+ "gamekult",
+ "gk"
+ ],
+ "regions": {
+ "default": "https://www.gamekult.com/rechercher-jeu.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/help_gamepedia/6/64/Favicon.ico?version=e699b664a64aa201db60873d761926b9",
+ "name": "Gamepedia Help Wiki",
+ "triggers": [
+ "gphelp"
+ ],
+ "regions": {
+ "default": "https://help.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamepressure.com/favicon.png",
+ "name": "Gamepressure",
+ "triggers": [
+ "gamepressure"
+ ],
+ "regions": {
+ "default": "http://games.gamepressure.com/games_encyclopedia.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamepro.com/www.idgcsmb.pcw/favicon.ico",
+ "name": "GamePro",
+ "triggers": [
+ "gamepro"
+ ],
+ "regions": {
+ "default": "http://www.gamepro.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamerankings.com/favicon.ico",
+ "name": "GameRankings.com",
+ "triggers": [
+ "gamerankings"
+ ],
+ "regions": {
+ "default": "http://www.gamerankings.com/browse.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ffxiv.gamerescape.com/favicon.ico",
+ "name": "GamerEscape",
+ "triggers": [
+ "arr",
+ "gearr"
+ ],
+ "regions": {
+ "default": "http://ffxiv.gamerescape.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.gamergen.com/img/gamergen-128x128.png",
+ "name": "GAMERGEN",
+ "triggers": [
+ "gamergen"
+ ],
+ "regions": {
+ "default": "http://www.gamergen.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamersgate.com/favicon.ico",
+ "name": "GamersGate",
+ "triggers": [
+ "gamersgate"
+ ],
+ "regions": {
+ "default": "http://gamersgate.com/games?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamershell.com/favicon.ico",
+ "name": "GamersHell",
+ "triggers": [
+ "gamershell"
+ ],
+ "regions": {
+ "default": "http://www.gamershell.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamesandgeeks.com/favicon.ico",
+ "name": "Games and Geeks",
+ "triggers": [
+ "gamesandgeeks"
+ ],
+ "regions": {
+ "default": "http://www.gamesandgeeks.com/blog/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamespot.com/favicon.ico",
+ "name": "GameSpot",
+ "triggers": [
+ "gamespot"
+ ],
+ "regions": {
+ "default": "https://www.gamespot.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vanilla.futurecdn.net/gamesradar/20180626/favicon.ico",
+ "name": "GamesRadar",
+ "triggers": [
+ "gamesradar"
+ ],
+ "regions": {
+ "default": "http://www.gamesradar.com/search?keywords={{{term}}}&x=0&y=0&platform=all&content=all"
+ }
+ },
+ {
+ "favicon": "https://static.cgames.de/img/gamestar/ico/favicon.ico",
+ "name": "GameStar",
+ "triggers": [
+ "gamestar"
+ ],
+ "regions": {
+ "default": "http://www.gamestar.de/index.cfm?pid=109&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gamestop.com/favicon.ico",
+ "name": "Gamestop",
+ "triggers": [
+ "gamestop"
+ ],
+ "regions": {
+ "default": "http://www.gamestop.com/browse?nav=16k-3-{{{term}}};"
+ }
+ },
+ {
+ "favicon": "http://www.gametrailers.com/yts/img/favicon_144-vfliLAfaB.png",
+ "name": "Gametrailers",
+ "triggers": [
+ "gametrailers"
+ ],
+ "regions": {
+ "default": "http://www.gametrailers.com/search.php?str_type=games&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamezebo.com/wp-content/themes/gamezebo/favicon.ico",
+ "name": "Gamezebo",
+ "triggers": [
+ "gamezebo"
+ ],
+ "regions": {
+ "default": "https://www.gamezebo.com/search/games?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamingonlinux.com/templates/default/images/favicons/favicon.ico",
+ "name": "GamingOnLinux",
+ "triggers": [
+ "gol"
+ ],
+ "regions": {
+ "default": "https://www.gamingonlinux.com/index.php?module=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gamma.nl/FE/1945/pw/images/gamma_nl/logos/favicon.ico",
+ "name": "Gamma",
+ "triggers": [
+ "gamma"
+ ],
+ "regions": {
+ "default": "https://www.gamma.nl/assortiment/zoeken?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gandi.net/assets/img/favicon/favicon-d98661ca.ico",
+ "name": "Gandi.net",
+ "triggers": [
+ "gandi"
+ ],
+ "regions": {
+ "default": "https://www.gandi.net/domain/suggest?domain_list={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//dj4i04i24axgu.cloudfront.net/statics/1.3.174/images/favicon_app.png",
+ "name": "Garbarino",
+ "triggers": [
+ "garbarino"
+ ],
+ "regions": {
+ "default": "https://www.garbarino.com/productos?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.garden-en.com/favicon.ico",
+ "name": "Garden-en.com",
+ "triggers": [
+ "garden"
+ ],
+ "regions": {
+ "default": "http://www.garden-en.com/s/en/?type=sfd&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.immediate.co.uk/volatile/sites/10/2017/11/favicon-6ce6e2e.png?quality=90&resize=192,192",
+ "name": "Gardeners' World",
+ "triggers": [
+ "gardenersworld"
+ ],
+ "regions": {
+ "default": "http://www.gardenersworld.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://garoa.net.br/favicon.ico",
+ "name": "Garoa Hacker Clube",
+ "triggers": [
+ "garoa"
+ ],
+ "regions": {
+ "default": "https://garoa.net.br/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gatherer.wizards.com/Images/favicon.ico",
+ "name": "Gatherer",
+ "triggers": [
+ "gatherer",
+ "magic",
+ "mtgg"
+ ],
+ "regions": {
+ "default": "http://gatherer.wizards.com/Pages/Search/Default.aspx?name=+[{{{term}}}]"
+ }
+ },
+ {
+ "favicon": "https://gathering.tweakers.net/favicon.ico",
+ "name": "Gathering of Tweakers",
+ "triggers": [
+ "got"
+ ],
+ "regions": {
+ "default": "http://gathering.tweakers.net/forum/find?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://futhead.cursecdn.com/static/img/favicon.png",
+ "name": "Gautam.co",
+ "triggers": [
+ "gautam"
+ ],
+ "regions": {
+ "default": "http://www.futhead.com/15/players/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2.bp.blogspot.com/-qxNIV1PgbAE/WEGw78FgY-I/AAAAAAACPio/s5qUejfF4dAx89rbGrwGWuTSZsSdO7xYwCLcB/s1600/32.png",
+ "name": "Gayburg",
+ "triggers": [
+ "gayburg"
+ ],
+ "regions": {
+ "default": "https://gayburg.blogspot.com/search?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://gazellegames.net/favicon.ico",
+ "name": "Gazelle Games",
+ "triggers": [
+ "ggn"
+ ],
+ "regions": {
+ "default": "https://gazellegames.net/torrents.php?searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.blogsmithmedia.com/www.engadget.com/assets-h9ff82d06157f8717c2258c067024d4d8/images/favicon-160x160.png?h=1638b0a8bbe7effa8f85c3ecabb63620",
+ "name": "gdgt",
+ "triggers": [
+ "gdgt"
+ ],
+ "regions": {
+ "default": "http://gdgt.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/gdgts.de/wp-content/uploads/2015/12/cropped-gdgts_gdgts-web-icon.jpg?fit=192,192&quality=78&strip=all&ssl=1",
+ "name": "Gdgts",
+ "triggers": [
+ "gadgets"
+ ],
+ "regions": {
+ "default": "http://gdgts.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://css.gbtcdn.com/imagecache/gbw/img/ico/favicon@.ico",
+ "name": "GearBest",
+ "triggers": [
+ "gearbest"
+ ],
+ "regions": {
+ "default": "http://www.gearbest.com/{{{term}}} -_gear/"
+ }
+ },
+ {
+ "favicon": "http://www.geekbuying.com/favicon.ico",
+ "name": "GeekBuying",
+ "triggers": [
+ "geekbuying"
+ ],
+ "regions": {
+ "default": "http://www.geekbuying.com/Search/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://geekcurrent.com/favicon.ico",
+ "name": "GeekCurrent",
+ "triggers": [
+ "geekcurrent"
+ ],
+ "regions": {
+ "default": "http://geekcurrent.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geekli.st/favicon.ico",
+ "name": "Geeklist",
+ "triggers": [
+ "geeklist"
+ ],
+ "regions": {
+ "default": "https://geekli.st/search?type=all&facet=all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://geekmps.fr/templates/geekmps-2016/favicon.ico",
+ "name": "GeekMPS",
+ "triggers": [
+ "gmps"
+ ],
+ "regions": {
+ "default": "http://geekmps.fr/component/search/?searchword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.fansided.com/wp-content/assets/site_images/geeksided/logo_geeksided-com__300x300.png",
+ "name": "GeekSided",
+ "triggers": [
+ "geeksided"
+ ],
+ "regions": {
+ "default": "http://geeksided.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geektimes.ru/images/favicon-16x16.png",
+ "name": "Geektimes",
+ "triggers": [
+ "geekt",
+ "gtmz"
+ ],
+ "regions": {
+ "default": "https://geektimes.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.geekzone.fr/wp-content/uploads/2015/07/Geekzone_sigle_500x500_carre-300x300.png",
+ "name": "GeekZone",
+ "triggers": [
+ "gz"
+ ],
+ "regions": {
+ "default": "http://www.geekzone.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.geenstijl.nl/favicon.ico",
+ "name": "Geenstijl",
+ "triggers": [
+ "geenstijl"
+ ],
+ "regions": {
+ "default": "https://www.geenstijl.nl/fastsearch?query={{{term}}}&zoek=zoek"
+ }
+ },
+ {
+ "favicon": "https://geevv.com/assets/img/fav/icon-144.png",
+ "name": "Geevv",
+ "triggers": [
+ "geevv"
+ ],
+ "regions": {
+ "default": "https://geevv.com/search?q={{{term}}}&type=web"
+ }
+ },
+ {
+ "favicon": "https://geizhals.de/favicon.ico",
+ "name": "Geizhals",
+ "triggers": [
+ "ghde"
+ ],
+ "regions": {
+ "default": "https://geizhals.de/?fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geizhals.eu/favicon.ico",
+ "name": "Geizhals",
+ "triggers": [
+ "geiz"
+ ],
+ "regions": {
+ "default": "https://geizhals.eu/?fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geizhals.at/favicon.ico",
+ "name": "Geizhals",
+ "triggers": [
+ "geizhals",
+ "giez",
+ "giezhals"
+ ],
+ "regions": {
+ "default": "https://geizhals.at/eu/?in=&fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.geizhals.at/favicon.ico",
+ "name": "Geizhals",
+ "triggers": [
+ "gzh"
+ ],
+ "regions": {
+ "default": "https://www.geizhals.at/eu/?such={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geizhals.at/favicon.ico",
+ "name": "Geizhals Österreich",
+ "triggers": [
+ "ghat"
+ ],
+ "regions": {
+ "default": "https://geizhals.at/?in=&fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geizhals.de/favicon.ico",
+ "name": "geizhals.de",
+ "triggers": [
+ "geizhalsde"
+ ],
+ "regions": {
+ "default": "https://geizhals.de/?fs={{{term}}}&in="
+ }
+ },
+ {
+ "favicon": "http://www.gelbooru.com/favicon.ico",
+ "name": "Gelbooru",
+ "triggers": [
+ "gelbooru"
+ ],
+ "regions": {
+ "default": "http://www.gelbooru.com/index.php?page=post&s=list&tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "GenBank Database",
+ "triggers": [
+ "genbank"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/nuccore/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.genealogieonline.nl/favicon.ico",
+ "name": "Genealogie Online",
+ "triggers": [
+ "genea"
+ ],
+ "regions": {
+ "default": "https://www.genealogieonline.nl/en/zoeken/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.genecards.org/favicon.ico",
+ "name": "GeneCards",
+ "triggers": [
+ "genecards"
+ ],
+ "regions": {
+ "default": "http://www.genecards.org/index.php?path=/Search/keyword/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.generalfanager.com/favicon.ico",
+ "name": "General Fanager",
+ "triggers": [
+ "genfan"
+ ],
+ "regions": {
+ "default": "http://www.generalfanager.com/players?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.generasia.com/favicon.ico",
+ "name": "generasia",
+ "triggers": [
+ "generasia"
+ ],
+ "regions": {
+ "default": "http://www.generasia.com/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.generation-nt.com/favicon.ico",
+ "name": "Generation Nouvelles Technologies",
+ "triggers": [
+ "gnt"
+ ],
+ "regions": {
+ "default": "http://www.generation-nt.com/s/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://genickbruch.com/favicon.ico",
+ "name": "Genickbruch.com",
+ "triggers": [
+ "genickbruch"
+ ],
+ "regions": {
+ "default": "http://genickbruch.com/index.php?befehl=suche&sname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.genieo.com/favicon.ico",
+ "name": "Genieo",
+ "triggers": [
+ "genieo"
+ ],
+ "regions": {
+ "default": "http://search.genieo.com/results.html?category=web&hp=1&v=&campaign=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://genius.com/favicon.ico",
+ "name": "Genius",
+ "triggers": [
+ "genius",
+ "gen"
+ ],
+ "regions": {
+ "default": "https://genius.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geniusfactory.fr/images/favicon.png?1516290324",
+ "name": "Genius Factory",
+ "triggers": [
+ "gfactory"
+ ],
+ "regions": {
+ "default": "http://geniusfactory.fr/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://onzetaal.nl/assets/icons/favicon.ico",
+ "name": "Genootschap Onze Taal",
+ "triggers": [
+ "onzetaal"
+ ],
+ "regions": {
+ "default": "https://onzetaal.nl/zoekresultaten/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gentoo.org/favicon.ico",
+ "name": "Gentoo Packages",
+ "triggers": [
+ "emerge",
+ "genpkg",
+ "gentoopkg"
+ ],
+ "regions": {
+ "default": "https://packages.gentoo.org/packages/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gpo.zugaina.org/favicon.ico",
+ "name": "Gentoo Packages",
+ "triggers": [
+ "ebuilds",
+ "ebuild",
+ "gpo"
+ ],
+ "regions": {
+ "default": "https://gpo.zugaina.org/Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gentoo.org/favicon.ico",
+ "name": "Gentoo Packages",
+ "triggers": [
+ "gpackages"
+ ],
+ "regions": {
+ "default": "https://packages.gentoo.org/packages/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://wiki.gentoo.org/favicon.ico",
+ "name": "gentoo wiki",
+ "triggers": [
+ "gentoowiki",
+ "gentoo"
+ ],
+ "regions": {
+ "default": "https://wiki.gentoo.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.gentoo.org/favicon.ico",
+ "name": "Gentoo Wiki",
+ "triggers": [
+ "gw",
+ "gwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.gentoo.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://wiki.installgentoo.com/favicon.ico",
+ "name": "Gentoo Wiki",
+ "triggers": [
+ "installgentoo"
+ ],
+ "regions": {
+ "default": "https://wiki.installgentoo.com/index.php/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.gentoo.org/images/favicon.ico",
+ "name": "Gentoo's Bugzilla",
+ "triggers": [
+ "gbugs"
+ ],
+ "regions": {
+ "default": "https://bugs.gentoo.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://geoiptool.com/static/img/favicon.ico",
+ "name": "Geo IP Tool",
+ "triggers": [
+ "geoiptool"
+ ],
+ "regions": {
+ "default": "https://geoiptool.com/fr/?IP={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://geoawesomeness.com/wp-content/uploads/2016/07/favicon.ico",
+ "name": "Geoawesomeness",
+ "triggers": [
+ "geoawesome"
+ ],
+ "regions": {
+ "default": "http://geoawesomeness.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.geocaching.com/favicon.ico",
+ "name": "Geocaching.com",
+ "triggers": [
+ "geocaching",
+ "geocache"
+ ],
+ "regions": {
+ "default": "https://www.geocaching.com/seek/nearest.aspx?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.geogebra.org/favicon.ico",
+ "name": "Geogebra",
+ "triggers": [
+ "ggb"
+ ],
+ "regions": {
+ "default": "https://www.geogebra.org/cms/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tube.geogebra.org/favicon.ico",
+ "name": "geogebratube.org",
+ "triggers": [
+ "ggbtube"
+ ],
+ "regions": {
+ "default": "https://tube.geogebra.org/search/perform/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.geonames.org/geonames.ico",
+ "name": "GeoNames",
+ "triggers": [
+ "geonames"
+ ],
+ "regions": {
+ "default": "http://www.geonames.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.uni-goettingen.de/img/redesign/favicons/favicon-16x16.png",
+ "name": "Georg-August-Universität Göttingen",
+ "triggers": [
+ "unigö"
+ ],
+ "regions": {
+ "default": "https://www.uni-goettingen.de/de/suche.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://library.gwu.edu/sites/all/themes/libsite7b/favicon.ico",
+ "name": "George Washington University Libraries",
+ "triggers": [
+ "gwlib"
+ ],
+ "regions": {
+ "default": "http://library.gwu.edu/search-all?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iplookup.flagfox.net/favicon.ico",
+ "name": "Geotool",
+ "triggers": [
+ "geotool"
+ ],
+ "regions": {
+ "default": "https://iplookup.flagfox.net/?ip={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gephi.org/images/favicon.ico",
+ "name": "Gephi",
+ "triggers": [
+ "gephi"
+ ],
+ "regions": {
+ "default": "https://gephi.org/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dict.tu-chemnitz.de/favicon.ico",
+ "name": "German",
+ "triggers": [
+ "de"
+ ],
+ "regions": {
+ "default": "http://dict.tu-chemnitz.de/dings.cgi?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_de_gamepedia/6/64/Favicon.ico?version=1bbb54630675203f5a5aeccb236457fc",
+ "name": "German Minecraft Wiki",
+ "triggers": [
+ "mcwikide"
+ ],
+ "regions": {
+ "default": "http://de.minecraftwiki.net/index.php?title=Spezial%3ASuche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://german-bash.org/favicon.ico",
+ "name": "German-Bash.org",
+ "triggers": [
+ "gbo"
+ ],
+ "regions": {
+ "default": "http://german-bash.org/?searchtext={{{term}}}&search_in=both&action=search_"
+ }
+ },
+ {
+ "favicon": "http://www.gesformacion.es/img/favicon.ico",
+ "name": "Ges Formacion",
+ "triggers": [
+ "cursos"
+ ],
+ "regions": {
+ "default": "http://www.gesformacion.es/buscar?controller=search&search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gesetze-im-internet.de/favicon.ico",
+ "name": "Gesetze im Internet",
+ "triggers": [
+ "gii"
+ ],
+ "regions": {
+ "default": "https://www.gesetze-im-internet.de/cgi-bin/htsearch?config=Gesamt_bmjhome2005&method=and&words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.getawaygear.com/favicon.ico",
+ "name": "Get Away Gear",
+ "triggers": [
+ "away"
+ ],
+ "regions": {
+ "default": "https://www.getawaygear.com/index.php?page=search&sPattern={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.getabstract.com/favicon.ico",
+ "name": "getAbstract",
+ "triggers": [
+ "getabstract"
+ ],
+ "regions": {
+ "default": "https://www.getabstract.com/en/search?initial=true&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.getchu.com/favicon.ico",
+ "name": "Getchu.com",
+ "triggers": [
+ "getchu"
+ ],
+ "regions": {
+ "default": "http://www.getchu.com/php/nsearch.phtml?search_keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/getcomics.info/share/uploads/2017/01/cropped-GetComics.jpg?fit=192,192&ssl=1",
+ "name": "GetComics",
+ "triggers": [
+ "getcomics"
+ ],
+ "regions": {
+ "default": "http://getcomics.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.gethuman.com/img/logo-32-cropped.png",
+ "name": "GetHuman",
+ "triggers": [
+ "gethuman"
+ ],
+ "regions": {
+ "default": "http://gethuman.com/phone-number/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.gethuman.com/img/logo-32-cropped.png",
+ "name": "GetHuman",
+ "triggers": [
+ "gah"
+ ],
+ "regions": {
+ "default": "https://gethuman.com/phone-number/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.getlinkinfo.com/favicon.gif",
+ "name": "GetLinkInfo",
+ "triggers": [
+ "getlinkinfo"
+ ],
+ "regions": {
+ "default": "http://www.getlinkinfo.com/info?link={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gettyimages.com/favicon.ico",
+ "name": "Getty Images",
+ "triggers": [
+ "gettyimages"
+ ],
+ "regions": {
+ "default": "http://www.gettyimages.com/Search/Search.aspx?src=quick&contractUrl=1&family=creative&phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gfycat.com/static/favicons/favicon.ico",
+ "name": "Gfycat",
+ "triggers": [
+ "gfy"
+ ],
+ "regions": {
+ "default": "https://gfycat.com/fetch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dejure.org/favicon.ico",
+ "name": "GG - dejure.org",
+ "triggers": [
+ "dgg"
+ ],
+ "regions": {
+ "default": "http://dejure.org/gesetze/GG/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.ghacks.net/favicon.ico",
+ "name": "Ghacks",
+ "triggers": [
+ "ghacks"
+ ],
+ "regions": {
+ "default": "https://www.ghacks.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gia.edu/img/favicon.ico",
+ "name": "GIA",
+ "triggers": [
+ "gia"
+ ],
+ "regions": {
+ "default": "http://www.gia.edu/cs/Satellite?pagename=GST%2FDispatcher&childpagename=GIA%2FPage%2FReportCheck&c=Page&cid=1355954554547&reportno={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.giallozafferano.it/icona.ico",
+ "name": "Giallo Zafferano",
+ "triggers": [
+ "gzric"
+ ],
+ "regions": {
+ "default": "http://www.giallozafferano.it/ricerca-ricette/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.giantbomb.com/favicon.ico",
+ "name": "GiantBomb",
+ "triggers": [
+ "giantbomb"
+ ],
+ "regions": {
+ "default": "http://www.giantbomb.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gibbon.co/assets/images/favicon.95046.png",
+ "name": "Gibbon",
+ "triggers": [
+ "gibbon"
+ ],
+ "regions": {
+ "default": "https://gibbon.co/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gibertjoseph.com/catalogsearch/result/images/favicon.ico",
+ "name": "GibertJoseph.com",
+ "triggers": [
+ "gibertj"
+ ],
+ "regions": {
+ "default": "http://www.gibertjoseph.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gibiru.com/favicon.ico",
+ "name": "Gibiru",
+ "triggers": [
+ "gib"
+ ],
+ "regions": {
+ "default": "http://gibiru.com/?cx=partner-pub-5956360965567042%3A8627692578&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&sa=Anon+Web+Search&siteurl="
+ }
+ },
+ {
+ "favicon": "https://giphy.com/static/img/favicon.png",
+ "name": "Gif Bin",
+ "triggers": [
+ "gif"
+ ],
+ "regions": {
+ "default": "https://giphy.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gifcities.org/favicon.ico",
+ "name": "Gifcities",
+ "triggers": [
+ "gifcities"
+ ],
+ "regions": {
+ "default": "http://gifcities.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.giffgaff.com/html/assets/favicon.ico",
+ "name": "GiffGaff",
+ "triggers": [
+ "giffgaff"
+ ],
+ "regions": {
+ "default": "https://community.giffgaff.com/t5/forums/searchpage/tab/message?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.giftinformation.se/assets/images/favicon.ico",
+ "name": "Giftinformationscentralen",
+ "triggers": [
+ "giftinfo"
+ ],
+ "regions": {
+ "default": "http://www.giftinformation.se/searchpage/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.giga-cultures.com/img/favicon-1.ico?1454099222",
+ "name": "Giga Cultures",
+ "triggers": [
+ "giga-cultures"
+ ],
+ "regions": {
+ "default": "http://giga-cultures.com/recherche?controller=search&search_query={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.gigablast.com/favicon.ico",
+ "name": "GIGABLAST",
+ "triggers": [
+ "giga",
+ "gigablast"
+ ],
+ "regions": {
+ "default": "http://www.gigablast.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gigablast.com/favicon.ico",
+ "name": "Gigablast",
+ "triggers": [
+ "gblast"
+ ],
+ "regions": {
+ "default": "http://gigablast.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://gigablast.com/favicon.ico",
+ "name": "Gigablast Encrypted",
+ "triggers": [
+ "gbs"
+ ],
+ "regions": {
+ "default": "https://gigablast.com/search?c=main&index=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gigantti.fi/INTERSHOP/static/WFS/store-gigantti-Site/-/-/fi_FI/images/favicon/favicon.ico?v=Nm5AbKBAb0",
+ "name": "Gigantti Finland",
+ "triggers": [
+ "gigantti"
+ ],
+ "regions": {
+ "default": "https://www.gigantti.fi/search?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gigaom.com/wp-content/themes/go-ossein/favicon.png",
+ "name": "GigaOM",
+ "triggers": [
+ "gigaom"
+ ],
+ "regions": {
+ "default": "https://gigaom.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.info.univ-angers.fr/favicon.ico",
+ "name": "Giluno",
+ "triggers": [
+ "giluno"
+ ],
+ "regions": {
+ "default": "http://www.info.univ-angers.fr/~gh/ {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gimptalk.com/favicon.ico",
+ "name": "Gimptalk",
+ "triggers": [
+ "gimptalk"
+ ],
+ "regions": {
+ "default": "http://www.gimptalk.com/index.php?app=core&module=search&do=search&fromMainBar=1&search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gineipaedia.com/favicon.png",
+ "name": "Gineipaedia",
+ "triggers": [
+ "logh"
+ ],
+ "regions": {
+ "default": "https://gineipaedia.com/w/index.php?title=Special:Search&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://giphy.com/static/img/favicon.png",
+ "name": "Giphy",
+ "triggers": [
+ "giphy"
+ ],
+ "regions": {
+ "default": "https://giphy.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://tv.giphy.com/img/favicon.png",
+ "name": "Giphy TV",
+ "triggers": [
+ "giphytv"
+ ],
+ "regions": {
+ "default": "https://tv.giphy.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/gis/img/favicon.ico?v=c4fb15381c2d",
+ "name": "GIS StackExchange",
+ "triggers": [
+ "gisstackexchange"
+ ],
+ "regions": {
+ "default": "http://gis.stackexchange.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://git-scm.com/favicon.ico",
+ "name": "Git",
+ "triggers": [
+ "git-scm",
+ "gitdocs"
+ ],
+ "regions": {
+ "default": "https://git-scm.com/search/results?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "GitHub",
+ "triggers": [
+ "ghuser"
+ ],
+ "regions": {
+ "default": "https://github.com/search?type=Users&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Github",
+ "triggers": [
+ "ghr",
+ "ghrepo"
+ ],
+ "regions": {
+ "default": "https://github.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Github (code search)",
+ "triggers": [
+ "ghcode"
+ ],
+ "regions": {
+ "default": "https://github.com/search?utf8=✓&q={{{term}}}&type=Code"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Github - Trending",
+ "triggers": [
+ "ght"
+ ],
+ "regions": {
+ "default": "https://github.com/trending/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Github Gists",
+ "triggers": [
+ "gist"
+ ],
+ "regions": {
+ "default": "https://gist.github.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.github.com/assets/images/site/favicon.ico",
+ "name": "GitHub Help",
+ "triggers": [
+ "githubhelp"
+ ],
+ "regions": {
+ "default": "https://help.github.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Github User",
+ "triggers": [
+ "ghus"
+ ],
+ "regions": {
+ "default": "https://github.com/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.gitignore.io/favicon.ico",
+ "name": "gitignore.io",
+ "triggers": [
+ "gitignore"
+ ],
+ "regions": {
+ "default": "https://www.gitignore.io/api/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gitlab.com/ico/favicon-32x32.png",
+ "name": "gitlab",
+ "triggers": [
+ "glab"
+ ],
+ "regions": {
+ "default": "https://gitlab.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gitlab.com/ico/favicon-32x32.png",
+ "name": "GitLab",
+ "triggers": [
+ "gitlab"
+ ],
+ "regions": {
+ "default": "https://gitlab.com/search?utf8=%E2%9C%93&search={{{term}}}&group_id=&repository_ref="
+ }
+ },
+ {
+ "favicon": "https://gitorious.org/favicon.ico",
+ "name": "Gitorious",
+ "triggers": [
+ "gitorious"
+ ],
+ "regions": {
+ "default": "https://gitorious.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--O07tru6M--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/fdj3buryz5nuzyf2k620.png",
+ "name": "Gizmodo",
+ "triggers": [
+ "gizmodo"
+ ],
+ "regions": {
+ "default": "https://gizmodo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--9Ru8oTLQ--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/192oytk94dk4cpng.png",
+ "name": "Gizmodo en español",
+ "triggers": [
+ "gizes"
+ ],
+ "regions": {
+ "default": "https://es.gizmodo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gizoogle.net/favicon.ico",
+ "name": "Gizoogle",
+ "triggers": [
+ "gizoogle"
+ ],
+ "regions": {
+ "default": "http://www.gizoogle.net/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gjensidige.no/_public/gjensidigewww/gfx/favicon.ico",
+ "name": "Gjensidige",
+ "triggers": [
+ "gjensidige"
+ ],
+ "regions": {
+ "default": "https://www.gjensidige.no/s%C3%B8k?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gladrys.com/application/images/favicon.ico",
+ "name": "gladrys",
+ "triggers": [
+ "gladrys"
+ ],
+ "regions": {
+ "default": "http://gladrys.com/search0results-plant{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.glassdoor.co.uk/favicon.ico",
+ "name": "Glassdoor",
+ "triggers": [
+ "gld"
+ ],
+ "regions": {
+ "default": "https://www.glassdoor.co.uk/Reviews/{{{term}}}-reviews-SRCH_KE0,7.htm"
+ }
+ },
+ {
+ "favicon": "http://www.booksinprint.com/Images/pq-favicon.ico?4.0.4.112",
+ "name": "Global books in print",
+ "triggers": [
+ "gbip"
+ ],
+ "regions": {
+ "default": "http://www.booksinprint.com/Search/Results?q=quicksearch-all%3A{{{term}}}&op=1&qs=1"
+ }
+ },
+ {
+ "favicon": "https://globalgamejam.org/sites/all/themes/globalgamejam_theme/favicon.ico",
+ "name": "Global Game Jam",
+ "triggers": [
+ "ggj"
+ ],
+ "regions": {
+ "default": "http://globalgamejam.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.globalresearch.ca/favicon.ico",
+ "name": "Global Research",
+ "triggers": [
+ "global"
+ ],
+ "regions": {
+ "default": "http://www.globalresearch.ca/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.global-regulation.com/img/favicon.png",
+ "name": "Global-Regulation.com",
+ "triggers": [
+ "laws"
+ ],
+ "regions": {
+ "default": "https://www.global-regulation.com/search.php?year&country&province&d=1&start&q={{{term}}}&advanced=false"
+ }
+ },
+ {
+ "favicon": "http://globaledge.msu.edu/favicon-16x16.png",
+ "name": "globalEDGE",
+ "triggers": [
+ "globaledge"
+ ],
+ "regions": {
+ "default": "http://globaledge.msu.edu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theglobeandmail.com/resources/assets/meta/favicon.ico",
+ "name": "Globe and Mail",
+ "triggers": [
+ "globeandmail"
+ ],
+ "regions": {
+ "default": "https://www.theglobeandmail.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.globetrotter.de/4ea9bb5ae29d82f2cbf8030e52230726d0082e63/assets/base/globetrotter/images/browser/favicon.ico",
+ "name": "Globetrotter",
+ "triggers": [
+ "globetrotter"
+ ],
+ "regions": {
+ "default": "https://www.globetrotter.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s2.glbimg.com/Ijlo2tGymFGuef_-Ixumzp9i1iA=/16x16/smart/filters:strip_icc()/i.s3.glbimg.com/v1/AUTH_bc8228b6673f488aa253bbcb03c80ec5/internal_photos/bs/2018/f/L/FlDVTgTqe0Xif1LlZH9A/favicon.png",
+ "name": "GloboEsporte.com",
+ "triggers": [
+ "globoesporte"
+ ],
+ "regions": {
+ "default": "http://www.globoesporte.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gloria.tv/image/favicon-16x16.png?C5AgeXJt",
+ "name": "Gloria.tv",
+ "triggers": [
+ "gloriatv"
+ ],
+ "regions": {
+ "default": "http://gloria.tv/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://glosbe.com/resources/favicon-16x16.png?v=2",
+ "name": "Glosbe",
+ "triggers": [
+ "gip"
+ ],
+ "regions": {
+ "default": "http://glosbe.com/it/pl/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://glosbe.com/resources/favicon-16x16.png?v=2",
+ "name": "Glosbe",
+ "triggers": [
+ "gpi"
+ ],
+ "regions": {
+ "default": "http://glosbe.com/pl/it/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.glosbe.com/resources/favicon-16x16.png?v=2",
+ "name": "Glosbe",
+ "triggers": [
+ "gbeo"
+ ],
+ "regions": {
+ "default": "https://en.glosbe.com/en/eo/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://glosbe.com/resources/favicon-16x16.png?v=2",
+ "name": "Glosbe (Arabic-English)",
+ "triggers": [
+ "garen"
+ ],
+ "regions": {
+ "default": "https://glosbe.com/ar/en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://glodls.to/themes/NB-GloSite/images/favicon.ico",
+ "name": "GloTorrents",
+ "triggers": [
+ "glodls"
+ ],
+ "regions": {
+ "default": "http://glodls.to/search.php?search={{{term}}}&incldead=Search"
+ }
+ },
+ {
+ "favicon": "http://glottolog.org/static/favicon.ico?v=9f3f8cd893876bfacc0f4dc9f16a9c19",
+ "name": "Glottolog",
+ "triggers": [
+ "glottolog"
+ ],
+ "regions": {
+ "default": "http://glottolog.org/glottolog?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gls-italy.com/templates/glstemplate/favicon.ico",
+ "name": "GLS Italia (spedizione internazionale)",
+ "triggers": [
+ "glsitint"
+ ],
+ "regions": {
+ "default": "http://www.gls-italy.com/tracktrace.asp?tiporicerca=numint&numint={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://glyde.com/favicon.ico",
+ "name": "Glyde",
+ "triggers": [
+ "glyde"
+ ],
+ "regions": {
+ "default": "http://glyde.com/stores/glyde#!display_as=2&s_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gmlforlag.se/favicon.ico?v=20170320160859",
+ "name": "GML Förlag Bokhandel",
+ "triggers": [
+ "gml"
+ ],
+ "regions": {
+ "default": "http://www.gmlforlag.se/advanced_search_result.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.garrysmod.com/favicon.ico",
+ "name": "GMod wiki",
+ "triggers": [
+ "gmod"
+ ],
+ "regions": {
+ "default": "http://wiki.garrysmod.com/page/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://ssl-gumtree.classistatic.com/master-a66950d403eb951f20851df6d84fb9081756b9bf/img/au/gumtreeFavicon.ico",
+ "name": "gmtr",
+ "triggers": [
+ "gumtree"
+ ],
+ "regions": {
+ "default": "https://www.gumtree.com.au/s-melbourne/{{{term}}} /k0l3001317"
+ }
+ },
+ {
+ "favicon": "https://bugzilla.gnome.org/images/favicon.ico",
+ "name": "GNOME Bugzilla",
+ "triggers": [
+ "gnomebugs"
+ ],
+ "regions": {
+ "default": "https://bugzilla.gnome.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://live.gnome.org/favicon.ico",
+ "name": "GNOME Live",
+ "triggers": [
+ "gnome"
+ ],
+ "regions": {
+ "default": "https://live.gnome.org/Home?action=fullsearch&context=180&value={{{term}}}&titlesearch=Titles"
+ }
+ },
+ {
+ "favicon": "https://wiki.gnome.org/favicon.ico",
+ "name": "GNOME Wiki",
+ "triggers": [
+ "gnomewiki"
+ ],
+ "regions": {
+ "default": "https://wiki.gnome.org/Home?action=fullsearch&context=180&value={{{term}}}&titlesearch=Titles"
+ }
+ },
+ {
+ "favicon": "https://www.gnu.org/graphics/gnu-head-mini.png",
+ "name": "GNU",
+ "triggers": [
+ "gnu"
+ ],
+ "regions": {
+ "default": "https://www.gnu.org/cgi-bin/estseek.cgi?phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://golivelively.com/wp-content/uploads/2016/10/cropped-wordcloud_opensource_music-192x192.png",
+ "name": "Go Live Lively",
+ "triggers": [
+ "golivelively"
+ ],
+ "regions": {
+ "default": "http://golivelively.com/tag/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://golang.org/favicon.ico",
+ "name": "Go Programming Language",
+ "triggers": [
+ "golang"
+ ],
+ "regions": {
+ "default": "https://golang.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://go-search.org/images/logo-16.png",
+ "name": "Go Search",
+ "triggers": [
+ "go-search"
+ ],
+ "regions": {
+ "default": "http://go-search.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gowifi.co.nz/favicon.ico",
+ "name": "Go Wireless NZ",
+ "triggers": [
+ "gowifi"
+ ],
+ "regions": {
+ "default": "http://www.gowifi.co.nz/product-search.html?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goatbots.com/favicon.ico",
+ "name": "Goatbots",
+ "triggers": [
+ "goat"
+ ],
+ "regions": {
+ "default": "https://www.goatbots.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gobblerpedia.org/w/images/favicon.png",
+ "name": "Gobblerpedia",
+ "triggers": [
+ "gopd"
+ ],
+ "regions": {
+ "default": "https://gobblerpedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.buenosaires.gob.ar/sites/gcaba/files/favicon.png",
+ "name": "Gobierno de la Ciudad de Buenos Aires",
+ "triggers": [
+ "gcba"
+ ],
+ "regions": {
+ "default": "http://www.buenosaires.gob.ar/bweb/search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gocomics.com/assets/favicons/favicon-16x16.png",
+ "name": "GoComics",
+ "triggers": [
+ "gocomics"
+ ],
+ "regions": {
+ "default": "http://www.gocomics.com/features/search?search_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gocompare.com/resources/assets/images/favicon.ico",
+ "name": "Gocompare.com",
+ "triggers": [
+ "gocompare"
+ ],
+ "regions": {
+ "default": "http://www.gocompare.com/searchresults/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//img1.wsimg.com/ux/favicon/favicon-16x16.png",
+ "name": "GoDaddy",
+ "triggers": [
+ "godaddy"
+ ],
+ "regions": {
+ "default": "https://www.godaddy.com/dpp/find?checkAvail=1%2c1&isc=daytona08&ci=8962&domainToCheck={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.godht.com/favicon.ico",
+ "name": "GoDHT",
+ "triggers": [
+ "godht"
+ ],
+ "regions": {
+ "default": "http://www.godht.com/s/?wd={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://godoc.org/favicon.ico",
+ "name": "GoDoc",
+ "triggers": [
+ "godoc"
+ ],
+ "regions": {
+ "default": "https://godoc.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.godvillegame.com/images/fav32.png",
+ "name": "Godville Wiki",
+ "triggers": [
+ "godville"
+ ],
+ "regions": {
+ "default": "http://wiki.godvillegame.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//funds.gofundme.com/favicon/4.ico",
+ "name": "GoFundMe",
+ "triggers": [
+ "gofundme"
+ ],
+ "regions": {
+ "default": "https://www.gofundme.com/mvc.php?route=search&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gog.com/favicon.ico?3",
+ "name": "GOG.com",
+ "triggers": [
+ "gog"
+ ],
+ "regions": {
+ "default": "https://www.gog.com/games?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gogoanime.com/fav.ico",
+ "name": "gogoanime",
+ "triggers": [
+ "gga"
+ ],
+ "regions": {
+ "default": "http://www.gogoanime.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gokifu.com/favicon.ico",
+ "name": "gokifu.com",
+ "triggers": [
+ "gokifu"
+ ],
+ "regions": {
+ "default": "http://gokifu.com/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.goldenmoustache.com/wp-content/themes/wp-gm/favicon.ico",
+ "name": "Golden Moustache",
+ "triggers": [
+ "goldenmoustache"
+ ],
+ "regions": {
+ "default": "http://www.goldenmoustache.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goldenline.pl/favicon.ico",
+ "name": "GoldenLine",
+ "triggers": [
+ "goldenline"
+ ],
+ "regions": {
+ "default": "https://www.goldenline.pl/szukaj/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://suche.golem.de/favicon.ico",
+ "name": "Golem.de",
+ "triggers": [
+ "golem"
+ ],
+ "regions": {
+ "default": "https://suche.golem.de/search.php?l=10&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gonutss.com/res/favicon.png",
+ "name": "gonutss.com",
+ "triggers": [
+ "gonutss"
+ ],
+ "regions": {
+ "default": "https://www.gonutss.com/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.goo.ne.jp/favicon.ico",
+ "name": "Goo Jisho",
+ "triggers": [
+ "gooj"
+ ],
+ "regions": {
+ "default": "http://dictionary.goo.ne.jp/srch/all/{{{term}}}/m0u/"
+ }
+ },
+ {
+ "favicon": "http://www.gooddrama.to/favicon.gif",
+ "name": "Good drama",
+ "triggers": [
+ "drama"
+ ],
+ "regions": {
+ "default": "http://www.gooddrama.net/drama/search?key={{{term}}}&stype=drama&search_submit=Go"
+ }
+ },
+ {
+ "favicon": "https://d4fuqqd5l3dbz.cloudfront.net/static/images/favicon.ico",
+ "name": "Good RX",
+ "triggers": [
+ "goodrx"
+ ],
+ "regions": {
+ "default": "http://www.goodrx.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://goodfil.ms/favicon.ico",
+ "name": "Goodfil.ms",
+ "triggers": [
+ "goodfilms"
+ ],
+ "regions": {
+ "default": "http://goodfil.ms/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goodgopher.com/images/icon-normal.png",
+ "name": "GoodGopher",
+ "triggers": [
+ "gogo"
+ ],
+ "regions": {
+ "default": "http://www.goodgopher.com/SearchResults.asp?query={{{term}}}&pr=GG"
+ }
+ },
+ {
+ "favicon": "https://www.goodgopher.com/images/icon-normal.png",
+ "name": "GoodGopher",
+ "triggers": [
+ "goodg"
+ ],
+ "regions": {
+ "default": "http://goodgopher.com/SearchResults.asp?query={{{term}}}&pr=GG"
+ }
+ },
+ {
+ "favicon": "https://www.goodreads.com/favicon.ico",
+ "name": "GoodReads",
+ "triggers": [
+ "goodreads"
+ ],
+ "regions": {
+ "default": "https://www.goodreads.com/search/search?search_type=books&search[query]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goodreads.com/favicon.ico",
+ "name": "goodreads",
+ "triggers": [
+ "greads"
+ ],
+ "regions": {
+ "default": "https://www.goodreads.com/search?utf8=✓&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goodreads.com/favicon.ico",
+ "name": "Goodreads",
+ "triggers": [
+ "gr"
+ ],
+ "regions": {
+ "default": "https://www.goodreads.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.goodreads.com/favicon.ico",
+ "name": "Goodreads Lists",
+ "triggers": [
+ "goodreadslist"
+ ],
+ "regions": {
+ "default": "https://www.goodreads.com/search?search_type=lists&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://res.cloudinary.com/goodsearch/static/favicon.ico",
+ "name": "GoodSearch",
+ "triggers": [
+ "goodsearch",
+ "gds"
+ ],
+ "regions": {
+ "default": "http://www.goodsearch.com/search-web?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://googol.warriordudimanche.net/favicon.png",
+ "name": "Googol",
+ "triggers": [
+ "googol"
+ ],
+ "regions": {
+ "default": "http://googol.warriordudimanche.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://goosh.org/favicon.ico",
+ "name": "Goosh",
+ "triggers": [
+ "goosh"
+ ],
+ "regions": {
+ "default": "http://goosh.org/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.goo.ne.jp/favicon.ico",
+ "name": "Goo国語辞典検索",
+ "triggers": [
+ "gookokugo"
+ ],
+ "regions": {
+ "default": "http://dictionary.goo.ne.jp/srch/jn/{{{term}}} /m0u/"
+ }
+ },
+ {
+ "favicon": "http://search.goo.ne.jp/favicon.ico",
+ "name": "goo検索",
+ "triggers": [
+ "goo"
+ ],
+ "regions": {
+ "default": "http://search.goo.ne.jp/web.jsp?MT={{{term}}}&IE=UTF-8&OE=UTF-8"
+ }
+ },
+ {
+ "favicon": "http://go.pkgdoc.org/favicon.ico",
+ "name": "GoPkgDoc",
+ "triggers": [
+ "gopkg",
+ "gpd"
+ ],
+ "regions": {
+ "default": "http://go.pkgdoc.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gorila.sk/i/favicon_g.ico",
+ "name": "Gorila",
+ "triggers": [
+ "gorila"
+ ],
+ "regions": {
+ "default": "http://www.gorila.sk/t/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/deliver.gospell.org/wp-content/uploads/2016/09/20063310/cropped-gospelltopicon.png?fit=192,192&ssl=1",
+ "name": "Gospell",
+ "triggers": [
+ "gospell"
+ ],
+ "regions": {
+ "default": "http://www.gospell.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gossiponthis.com/favicon.ico",
+ "name": "Gossip on This",
+ "triggers": [
+ "gonthis"
+ ],
+ "regions": {
+ "default": "http://gossiponthis.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gotati.com/images/logo_icon.png",
+ "name": "gotati.com",
+ "triggers": [
+ "gotati"
+ ],
+ "regions": {
+ "default": "http://www.gotati.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gothere.sg/favicon.ico",
+ "name": "gothere.sg",
+ "triggers": [
+ "gothere"
+ ],
+ "regions": {
+ "default": "https://gothere.sg/maps#q:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gotquestions.org/favicon.ico",
+ "name": "GotQuestions",
+ "triggers": [
+ "gotquestions"
+ ],
+ "regions": {
+ "default": "https://www.gotquestions.org/search.php?zoom_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/2603/2528/files/favicon_32x32.png?v=1517934282",
+ "name": "Goulet Pens",
+ "triggers": [
+ "gouletpens"
+ ],
+ "regions": {
+ "default": "http://www.gouletpens.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/2603/2528/files/favicon_32x32.png?v=1517934282",
+ "name": "gouletpens.com",
+ "triggers": [
+ "gpens"
+ ],
+ "regions": {
+ "default": "https://www.gouletpens.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.publishing.service.gov.uk/static/favicon-8d811b8c3badbc0b0e2f6e25d3660a96cc0cca7993e6f32e98785f205fc40907.ico",
+ "name": "GOV.UK",
+ "triggers": [
+ "gov.uk"
+ ],
+ "regions": {
+ "default": "https://www.gov.uk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.publishing.service.gov.uk/static/favicon-8d811b8c3badbc0b0e2f6e25d3660a96cc0cca7993e6f32e98785f205fc40907.ico",
+ "name": "GOV.UK",
+ "triggers": [
+ "govuk"
+ ],
+ "regions": {
+ "default": "https://www.gov.uk/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ontario.ca/img/favicon.png",
+ "name": "Government of Ontario",
+ "triggers": [
+ "on"
+ ],
+ "regions": {
+ "default": "https://www.ontario.ca/search/search-results?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.govtrack.us/favicon.ico",
+ "name": "govtrack.us",
+ "triggers": [
+ "govtrack"
+ ],
+ "regions": {
+ "default": "https://www.govtrack.us/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gowatchit.com/gwi-assets/favicons/favicon.ico",
+ "name": "Gowatchit",
+ "triggers": [
+ "gwi"
+ ],
+ "regions": {
+ "default": "https://gowatchit.com/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://http-keys.gnupg.net/favicon.ico",
+ "name": "GPG Key search",
+ "triggers": [
+ "gpg"
+ ],
+ "regions": {
+ "default": "http://http-keys.gnupg.net/pks/lookup?op=vindex&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gpodder.net/favicon.png",
+ "name": "gpodder.net",
+ "triggers": [
+ "gpdr"
+ ],
+ "regions": {
+ "default": "https://gpodder.net/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.gpsies.com/favicon/favicon-128x128.png",
+ "name": "GPSies.de",
+ "triggers": [
+ "gpsies"
+ ],
+ "regions": {
+ "default": "http://gpsies.de/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gq.com/static/favicons/favicon.png",
+ "name": "GQ",
+ "triggers": [
+ "gq"
+ ],
+ "regions": {
+ "default": "https://www.gq.com/search?qt=dismax&sort=score+desc&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1pspl52z5rk07.cloudfront.net/assets/production/app/gc-favicon-a72626818daa8e9ba228f4c4a946812925c13c5bd42d8168c875447a1be927fa.ico",
+ "name": "GrabCAD",
+ "triggers": [
+ "grabcad"
+ ],
+ "regions": {
+ "default": "https://grabcad.com/library?per_page=20&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://thegradcafe.com/favicon.ico",
+ "name": "Grad Cafe",
+ "triggers": [
+ "gradcafe"
+ ],
+ "regions": {
+ "default": "http://thegradcafe.com/survey/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gradesource.com/favicon.ico",
+ "name": "Gradesource",
+ "triggers": [
+ "gsrc"
+ ],
+ "regions": {
+ "default": "http://www.gradesource.com/findcourse.asp?sb=C&name={{{term}}}&st=0&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.graffx.fr/favicon.ico",
+ "name": "Graffx",
+ "triggers": [
+ "gfx"
+ ],
+ "regions": {
+ "default": "http://www.graffx.fr/blabla/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.grafikart.fr/favicon-16x16.png",
+ "name": "Grafikart",
+ "triggers": [
+ "grafikart"
+ ],
+ "regions": {
+ "default": "http://www.grafikart.fr/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.grafikart.fr/favicon-16x16.png",
+ "name": "grafikart",
+ "triggers": [
+ "gfk"
+ ],
+ "regions": {
+ "default": "https://www.grafikart.fr/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.grailed.com/assets/favicon_16x16_grailed-641d22206cc851186493ae2f511337740f620cb3aaf7e66979f4f17460967e74.png",
+ "name": "grailed",
+ "triggers": [
+ "grailed"
+ ],
+ "regions": {
+ "default": "http://www.grailed.com/search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.grainger.com/favicon.ico",
+ "name": "Grainger",
+ "triggers": [
+ "grainger"
+ ],
+ "regions": {
+ "default": "http://www.grainger.com/search?nls=1&searchQuery={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://gramota.ru/slovari/dic/img/favicon.ico",
+ "name": "gramota.ru",
+ "triggers": [
+ "gramota"
+ ],
+ "regions": {
+ "default": "http://gramota.ru/slovari/dic/?word={{{term}}}&all=x"
+ }
+ },
+ {
+ "favicon": "http://www.diccionari.cat/favicon.ico",
+ "name": "Gran diccionari de la llengua catalana",
+ "triggers": [
+ "gdlc"
+ ],
+ "regions": {
+ "default": "http://www.diccionari.cat/cgi-bin/AppDLC3.exe?APP=CERCADLC&GECART={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://gdt.oqlf.gouv.qc.ca/favicon.ico",
+ "name": "Grand Dictionnaire Terminologique",
+ "triggers": [
+ "gdt"
+ ],
+ "regions": {
+ "default": "http://gdt.oqlf.gouv.qc.ca/resultat.aspx?terme={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s3.amazonaws.com/graphtv/favicon.ico",
+ "name": "Graph TV",
+ "triggers": [
+ "graphtv"
+ ],
+ "regions": {
+ "default": "http://graphtv.kevinformatics.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://graph.tk/favicon.ico",
+ "name": "Graph.tk",
+ "triggers": [
+ "graph"
+ ],
+ "regions": {
+ "default": "http://graph.tk/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://graphemica.com/assets/touch/apple-touch-icon-206fc78ca353cc7cd0c31bbff38dd8e03ae5b642171da564b045bc64d6210841.png",
+ "name": "Graphemica",
+ "triggers": [
+ "graphemica"
+ ],
+ "regions": {
+ "default": "http://graphemica.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://graphhopper.com/favicon.ico",
+ "name": "GraphHopper Maps",
+ "triggers": [
+ "graphhopper"
+ ],
+ "regions": {
+ "default": "https://graphhopper.com/maps/?point={{{term}}}&point=eehjhllgdmbbi"
+ }
+ },
+ {
+ "favicon": "http://graphicriver.net/favicon.ico",
+ "name": "GraphicRiver",
+ "triggers": [
+ "graphicriver"
+ ],
+ "regions": {
+ "default": "http://graphicriver.net/search?utf8=%E2%9C%93&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://archive.org/favicon.ico",
+ "name": "Grateful Dead Concerts",
+ "triggers": [
+ "gratefuldead"
+ ],
+ "regions": {
+ "default": "https://archive.org/search.php?query={{{term}}}%20AND%20collection%3AGratefulDead"
+ }
+ },
+ {
+ "favicon": "https://www.grc.com/favicon.ico",
+ "name": "GRC Port Authority",
+ "triggers": [
+ "grcp"
+ ],
+ "regions": {
+ "default": "https://www.grc.com/port_{{{term}}}.htm"
+ }
+ },
+ {
+ "favicon": "https://wiki.greasespot.net/favicon.ico",
+ "name": "GreaseSpot Wiki",
+ "triggers": [
+ "gsw"
+ ],
+ "regions": {
+ "default": "https://wiki.greasespot.net/index.php?title=Special%3ASearch&fulltext=Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://greasyfork.org/assets/blacklogo16-bc64b9f7afdc9be4cbfa58bdd5fc2e5c098ad4bca3ad513a27b15602083fd5bc.png",
+ "name": "Greasy Fork",
+ "triggers": [
+ "greasyfork"
+ ],
+ "regions": {
+ "default": "https://greasyfork.org/scripts/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.greatbritishchefs.com/Content/Favicon/favicon.ico",
+ "name": "Great British Chefs",
+ "triggers": [
+ "gbc"
+ ],
+ "regions": {
+ "default": "http://www.greatbritishchefs.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gcmap.com/favicon.ico",
+ "name": "Great Circle Mapper",
+ "triggers": [
+ "gcm"
+ ],
+ "regions": {
+ "default": "http://www.gcmap.com/mapui?P={{{term}}}&MS=wls&DU=nm"
+ }
+ },
+ {
+ "favicon": "http://www.gcmap.com/favicon.ico",
+ "name": "Great Circle Mapper",
+ "triggers": [
+ "gcmap"
+ ],
+ "regions": {
+ "default": "http://www.gcmap.com/mapui?P={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bigenc.ru/favicon.ico",
+ "name": "Great Russian Encyclopedia",
+ "triggers": [
+ "gre",
+ "bigenc"
+ ],
+ "regions": {
+ "default": "https://bigenc.ru/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.comparitech.com/wp-content/uploads/2017/03/cropped-favicon-192x192.png",
+ "name": "greatfirewallofchina.org",
+ "triggers": [
+ "gfc"
+ ],
+ "regions": {
+ "default": "http://greatfirewallofchina.org/index.php?siteurl={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.greeksubtitles.info/favicon.ico",
+ "name": "Greek Subtitles Project",
+ "triggers": [
+ "greeksubtitles",
+ "gsub"
+ ],
+ "regions": {
+ "default": "http://www.greeksubtitles.info/search.php?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://el.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Greek Wikipedia",
+ "triggers": [
+ "wel"
+ ],
+ "regions": {
+ "default": "https://el.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.perseus.tufts.edu/favicon.ico",
+ "name": "Greek Word Studies",
+ "triggers": [
+ "greek"
+ ],
+ "regions": {
+ "default": "http://www.perseus.tufts.edu/hopper/morph?l={{{term}}}&la=greek#lexicon"
+ }
+ },
+ {
+ "favicon": "https://images.greenmangaming.com/static/favicon.ico",
+ "name": "greenmangaming.com",
+ "triggers": [
+ "gmg",
+ "gmgf"
+ ],
+ "regions": {
+ "default": "https://www.greenmangaming.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace",
+ "triggers": [
+ "greenpeace"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/usa/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Africa",
+ "triggers": [
+ "gpafrica"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/africa/en/Search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Australia",
+ "triggers": [
+ "gpau"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/australia/en/System-templates/Site-Settings-Pages/Search/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Canada",
+ "triggers": [
+ "gpcan"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/canada/en/System-templates/Site-Settings-Pages/Search/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Canada (French)",
+ "triggers": [
+ "gpcanfr"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/canada/fr/System-templates/Site-Settings-Pages/Recherche/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace East Asia",
+ "triggers": [
+ "gpea"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/eastasia/system-templates/search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace EU Unit",
+ "triggers": [
+ "gpeu"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/eu-unit/en/System-templates/such-resultate/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace India",
+ "triggers": [
+ "gpindia"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/india/en/System-templates/Search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace New Zealand",
+ "triggers": [
+ "gpnz"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/new-zealand/en/System-templates/Search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Philippines",
+ "triggers": [
+ "gpphilip"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/seasia/ph/System-templates/Search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org/usa/wp-content/themes/greenpeace/img/favicon.png",
+ "name": "Greenpeace Southeast Asia",
+ "triggers": [
+ "gpseasia"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org/seasia/System-templates/Search-results/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.greenpeace.org.uk/wp-content/uploads/2017/05/3b231a5a-cropped-8fad72a8-favicon-192x192.png",
+ "name": "Greenpeace UK",
+ "triggers": [
+ "gpuk"
+ ],
+ "regions": {
+ "default": "http://www.greenpeace.org.uk/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://grepcode.com/favicon.ico",
+ "name": "GrepCode.com",
+ "triggers": [
+ "grepcode"
+ ],
+ "regions": {
+ "default": "http://grepcode.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://grical.org/m/favicon.ico",
+ "name": "GriCal",
+ "triggers": [
+ "gridcalendar",
+ "grical"
+ ],
+ "regions": {
+ "default": "http://grical.org/s/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/grimdawn/images/6/64/Favicon.ico/revision/latest?cb=20150113045804",
+ "name": "Grimdawn Wikia",
+ "triggers": [
+ "grimd"
+ ],
+ "regions": {
+ "default": "http://grimdawn.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.groklaw.net/favicon.ico",
+ "name": "Groklaw",
+ "triggers": [
+ "groklaw"
+ ],
+ "regions": {
+ "default": "http://www.groklaw.net/search.php?query={{{term}}}&keyType=phrase&datestart=&dateend=&topic=0&type=all&author=0&mode=search"
+ }
+ },
+ {
+ "favicon": "http://groovemp3.com/search/favicons/favicon-16x16.png",
+ "name": "Groovemp3",
+ "triggers": [
+ "gmp3"
+ ],
+ "regions": {
+ "default": "http://groovemp3.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.grosbill.com/favicon.ico",
+ "name": "GrosBill",
+ "triggers": [
+ "grosbill"
+ ],
+ "regions": {
+ "default": "https://www.grosbill.com/catv2.cgi?mode=recherche&recherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.grossoshop.net/image/data/Logo%20GS/favicon.png",
+ "name": "Grossoshop",
+ "triggers": [
+ "grossoshop"
+ ],
+ "regions": {
+ "default": "http://www.grossoshop.net/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.grottopress.com/app/uploads/2017/04/grottopress-icon.png",
+ "name": "GrottoPress",
+ "triggers": [
+ "grottopress"
+ ],
+ "regions": {
+ "default": "https://www.grottopress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gpsearch.azurewebsites.net/favicon.ico",
+ "name": "Group Policy Search",
+ "triggers": [
+ "gpsearch"
+ ],
+ "regions": {
+ "default": "http://gpsearch.azurewebsites.net/default.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://groupees.com/favicon.ico",
+ "name": "Groupees",
+ "triggers": [
+ "groupees"
+ ],
+ "regions": {
+ "default": "https://groupees.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www2.grouponcdn.com/layout/assets/grpn-favicon-966d694a73.ico",
+ "name": "Groupon",
+ "triggers": [
+ "groupon"
+ ],
+ "regions": {
+ "default": "https://www.groupon.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3u4yi5jwghfa.cloudfront.net/img/favicon.166db8108ab6.ico",
+ "name": "Grouvee",
+ "triggers": [
+ "grouvee"
+ ],
+ "regions": {
+ "default": "http://www.grouvee.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.grovabrac.com/favicon.ico",
+ "name": "Grovabrac",
+ "triggers": [
+ "grov"
+ ],
+ "regions": {
+ "default": "http://www.grovabrac.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.grubhub.com/favicon.ico",
+ "name": "Grubhub",
+ "triggers": [
+ "grub"
+ ],
+ "regions": {
+ "default": "https://www.grubhub.com/search/?cuisine={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://finanzas-simples.com/img/favicons/icon_1024x1024.png",
+ "name": "Grupo GIA",
+ "triggers": [
+ "grupogia"
+ ],
+ "regions": {
+ "default": "http://grupogia.com/buscar?razon_social={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.gsaadvantage.gov/favicon.ico",
+ "name": "GSA Advantage",
+ "triggers": [
+ "gsa"
+ ],
+ "regions": {
+ "default": "https://www.gsaadvantage.gov/advantage/s/search.do?q=0:0{{{term}}}&db=0&searchType=1"
+ }
+ },
+ {
+ "favicon": "https://www.gsmarena.com/i/favicon.ico",
+ "name": "GSM Arena",
+ "triggers": [
+ "gsma",
+ "gsm",
+ "gsmarena"
+ ],
+ "regions": {
+ "default": "https://www.gsmarena.com/results.php3?sName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.gsmpunt.nl/img/favicon-16x16.png",
+ "name": "GSMpunt",
+ "triggers": [
+ "gsmpunt"
+ ],
+ "regions": {
+ "default": "https://www.gsmpunt.nl/zoeken/?z={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.gta5-mods.com/icons/favicon.png",
+ "name": "GTA 5 Mods",
+ "triggers": [
+ "5mods"
+ ],
+ "regions": {
+ "default": "https://www.gta5-mods.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.gta5-mods.com/icons/favicon.png",
+ "name": "Gta5-mods",
+ "triggers": [
+ "gtm"
+ ],
+ "regions": {
+ "default": "https://fr.gta5-mods.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://guardianproject.info/wp-content/uploads/2014/11/cropped-gplogo-192x192.png",
+ "name": "Guardian Project",
+ "triggers": [
+ "guardianproject"
+ ],
+ "regions": {
+ "default": "https://guardianproject.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.guardiana.net/favicon.png",
+ "name": "Guardiana",
+ "triggers": [
+ "guardiana"
+ ],
+ "regions": {
+ "default": "http://www.guardiana.net/MDG-Database/Search/?search_value={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.guenstiger.de/favicon.ico?v=3",
+ "name": "guenstiger.de",
+ "triggers": [
+ "gue"
+ ],
+ "regions": {
+ "default": "http://www.guenstiger.de/Kategorie/Suche/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.gw2spidy.com/assets/v20150522v1/img/favicon.ico",
+ "name": "Guild Wars 2 Spidy",
+ "triggers": [
+ "gw2spidy"
+ ],
+ "regions": {
+ "default": "http://www.gw2spidy.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.guildwars2.com/favicon.ico",
+ "name": "Guild Wars 2 Wiki",
+ "triggers": [
+ "gw2"
+ ],
+ "regions": {
+ "default": "https://wiki.guildwars2.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.guildwars2.com/favicon.ico",
+ "name": "Guild Wars 2 Wiki",
+ "triggers": [
+ "gw2wiki"
+ ],
+ "regions": {
+ "default": "http://wiki.guildwars2.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://wiki-de.guildwars2.com/favicon.ico",
+ "name": "Guild Wars 2 Wiki Deutsch",
+ "triggers": [
+ "gw2de"
+ ],
+ "regions": {
+ "default": "https://wiki-de.guildwars2.com/index.php?search={{{term}}}&go=Seite"
+ }
+ },
+ {
+ "favicon": "http://wiki-fr.guildwars2.com/favicon.ico",
+ "name": "Guild Wars 2 Wiki Français",
+ "triggers": [
+ "gw2fr"
+ ],
+ "regions": {
+ "default": "http://wiki-fr.guildwars2.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/guildwiki_gamepedia/6/64/Favicon.ico?version=6e243a7c2442a3117848838a50ff52ac",
+ "name": "Guild Wiki",
+ "triggers": [
+ "guildwiki"
+ ],
+ "regions": {
+ "default": "http://www.guildwiki.org/index.php?title=Special%3ASearch&redirs=0&search={{{term}}}&fulltext=Search&ns0=1"
+ }
+ },
+ {
+ "favicon": "http://www.guinnessworldrecords.com/images/favicon.ico",
+ "name": "Guinness World Records",
+ "triggers": [
+ "gwr"
+ ],
+ "regions": {
+ "default": "http://www.guinnessworldrecords.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.guitartabsexplorer.com/images/favicon-16x16.png",
+ "name": "GuitarTabsExplorer.com",
+ "triggers": [
+ "guitartabs"
+ ],
+ "regions": {
+ "default": "http://www.guitartabsexplorer.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.eniro.com/img/profiles/no/favicon-32.png",
+ "name": "Gule Sider",
+ "triggers": [
+ "gulesider"
+ ],
+ "regions": {
+ "default": "https://www.gulesider.no/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl-gumtree.classistatic.com/master-a66950d403eb951f20851df6d84fb9081756b9bf/img/au/gumtreeFavicon.ico",
+ "name": "Gumtree",
+ "triggers": [
+ "gumau",
+ "gtau",
+ "gumtreeau"
+ ],
+ "regions": {
+ "default": "https://www.gumtree.com.au/s-{{{term}}}/k0"
+ }
+ },
+ {
+ "favicon": "https://securet9.classistatic.com/1.1.780/images/pl_PL/shortcut.png",
+ "name": "Gumtree Polska",
+ "triggers": [
+ "gumtreepl"
+ ],
+ "regions": {
+ "default": "https://www.gumtree.pl/s-{{{term}}}/v1q0p1"
+ }
+ },
+ {
+ "favicon": "https://www.gumtree.com/assets/favicon.ico",
+ "name": "Gumtree UK",
+ "triggers": [
+ "gumtreeuk"
+ ],
+ "regions": {
+ "default": "https://www.gumtree.com/search?search_category=all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gunbroker.com/favicon.ico",
+ "name": "GunBroker",
+ "triggers": [
+ "gunbroker"
+ ],
+ "regions": {
+ "default": "http://www.gunbroker.com/All/BI.aspx?Keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/gundam/images/6/64/Favicon.ico/revision/latest?cb=20070502145700",
+ "name": "Gundam Wikia",
+ "triggers": [
+ "gundam"
+ ],
+ "regions": {
+ "default": "http://gundam.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gunengine.com/favicon.ico?v16",
+ "name": "GunEngine",
+ "triggers": [
+ "gunengine"
+ ],
+ "regions": {
+ "default": "http://www.gunengine.com/guns?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gunwatcher.com/Content/images/gw-icon.png",
+ "name": "GunWatcher",
+ "triggers": [
+ "gunwatcher"
+ ],
+ "regions": {
+ "default": "https://gunwatcher.com/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://guruofsales.com/favicon.ico",
+ "name": "Guru Of Sales",
+ "triggers": [
+ "gos"
+ ],
+ "regions": {
+ "default": "http://guruofsales.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gutefrage.net/favicon.ico",
+ "name": "Gutefrage.net",
+ "triggers": [
+ "gutefrage"
+ ],
+ "regions": {
+ "default": "http://www.gutefrage.net/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bookmine.tesuji.eu/favicon.ico",
+ "name": "Gutenberg text content",
+ "triggers": [
+ "bookmine"
+ ],
+ "regions": {
+ "default": "http://bookmine.tesuji.eu/gutenberg/searchResults.do;jsessionid=2062F39F8CBD87219B51FFFFD933C4F9?query={{{term}}}&maxResult=30&offset=0"
+ }
+ },
+ {
+ "favicon": "http://www.gutsofdarkness.com/god/_global/_css/original/_d/favicon.gif",
+ "name": "Guts of Darkness",
+ "triggers": [
+ "god"
+ ],
+ "regions": {
+ "default": "http://www.gutsofdarkness.com/god/recherche.php?r1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-2.gutscheine.de/img/favicon.ico",
+ "name": "Gutscheine.de",
+ "triggers": [
+ "gutschein"
+ ],
+ "regions": {
+ "default": "http://www.gutscheine.de/suche?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gw2bltc.com/img/favicon.ico",
+ "name": "GW2BLTC",
+ "triggers": [
+ "gw2bltc"
+ ],
+ "regions": {
+ "default": "https://www.gw2bltc.com/en/tp/search?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gw2tp.com/favicon.ico",
+ "name": "GW2TP",
+ "triggers": [
+ "gw2tp"
+ ],
+ "regions": {
+ "default": "https://www.gw2tp.com/search?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-seawolf.cursecdn.com/avatars/1/245/636010657001068101.png",
+ "name": "GwentDB",
+ "triggers": [
+ "gwentdb"
+ ],
+ "regions": {
+ "default": "http://www.gwentdb.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gwentify.com/wp-content/plugins/under-construction-page/themes/images/favicon.png",
+ "name": "Gwentify",
+ "triggers": [
+ "gwentify"
+ ],
+ "regions": {
+ "default": "http://gwentify.com/cards/?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.gyakorikerdesek.hu/favicon.ico",
+ "name": "Gyakorikérdések.hu",
+ "triggers": [
+ "gyk"
+ ],
+ "regions": {
+ "default": "http://www.gyakorikerdesek.hu/kereses.php?keres={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.gyazo.com/favicon.ico",
+ "name": "Gyazo",
+ "triggers": [
+ "gyazo"
+ ],
+ "regions": {
+ "default": "https://gyazo.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gu-se-primo.hosted.exlibrisgroup.com/primo-explore/search?query=any,contains,aceggadib&tab=default_tab&search_scope=default_scope&vid=46GUB_VU1&lang=sv_SE&offset=0",
+ "name": "Göteborgs universitetsbibliotek / University of Gothenburg library",
+ "triggers": [
+ "ub"
+ ],
+ "regions": {
+ "default": "https://gu-se-primo.hosted.exlibrisgroup.com/primo-explore/search?query=any,contains,{{{term}}}&tab=default_tab&search_scope=default_scope&vid=46GUB_VU1&lang=sv_SE&offset=0"
+ }
+ },
+ {
+ "favicon": "http://gdz.sub.uni-goettingen.de/favicon.ico",
+ "name": "Göttinger Digitalsieriungszentrum",
+ "triggers": [
+ "gdz"
+ ],
+ "regions": {
+ "default": "http://gdz.sub.uni-goettingen.de/en/dms/suche/?tx_goobit3_search[formquery]={{{term}}}&tx_goobit3_search[order]=1&tx_goobit3_search[default]=METADATA&tx_goobit3_search[orderfield]=BYCREATOR&tx_goobit3_search[link]=0"
+ }
+ },
+ {
+ "favicon": "http://www.guenstiger.de/favicon.ico?v=3",
+ "name": "Günstiger.de",
+ "triggers": [
+ "guenstiger"
+ ],
+ "regions": {
+ "default": "http://www.guenstiger.de/Katalog/Preis.pl?suche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hpluspedia.org/favicon.ico",
+ "name": "H+Pedia",
+ "triggers": [
+ "hpp",
+ "hpluspedia"
+ ],
+ "regions": {
+ "default": "https://hpluspedia.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.h2g2.com/img/global/favicon.ico",
+ "name": "h2g2",
+ "triggers": [
+ "h2g2"
+ ],
+ "regions": {
+ "default": "http://www.h2g2.com/search?search_type=article_quick_search&searchstring={{{term}}}&approved_entries_only_chk=1"
+ }
+ },
+ {
+ "favicon": "http://www.h2olimpo.com/img/favicon.ico?1451779185",
+ "name": "H2Olimpo",
+ "triggers": [
+ "h2",
+ "h2o"
+ ],
+ "regions": {
+ "default": "http://www.h2olimpo.com/buscar?controller=search&orderby=position&orderway=desc&search_query={{{term}}}&submit_search="
+ }
+ },
+ {
+ "favicon": "http://h33t.to/favicon.ico",
+ "name": "h33t",
+ "triggers": [
+ "h33t"
+ ],
+ "regions": {
+ "default": "http://h33t.to/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.haaretz.co.il/htz/images/favicon-32x32.png",
+ "name": "Haaretz",
+ "triggers": [
+ "haaretz"
+ ],
+ "regions": {
+ "default": "http://www.haaretz.co.il/misc/search-results?searchType=textSearch&simpleSearch=simpleSearch&text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ruilwaarde.nl/images/favicon.ico",
+ "name": "Habbo Ruilwaarde",
+ "triggers": [
+ "habbotrading"
+ ],
+ "regions": {
+ "default": "http://www.ruilwaarde.nl/?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://habrahabr.ru/images/favicon-16x16.png",
+ "name": "HabraHabr",
+ "triggers": [
+ "habr",
+ "habra"
+ ],
+ "regions": {
+ "default": "https://habrahabr.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hack.chat/favicon-16x16.png",
+ "name": "Hack.chat",
+ "triggers": [
+ "hackchat"
+ ],
+ "regions": {
+ "default": "https://hack.chat/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hack42.nl/blog/wp-content/themes/yashfa/favicon.ico",
+ "name": "Hack42",
+ "triggers": [
+ "hack42"
+ ],
+ "regions": {
+ "default": "https://hack42.nl/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s2.wp.com/wp-content/themes/vip/hackaday-2/favicon.ico",
+ "name": "Hackaday",
+ "triggers": [
+ "had",
+ "hackaday"
+ ],
+ "regions": {
+ "default": "https://hackaday.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hackage.haskell.org/static/favicon.png",
+ "name": "Hackage",
+ "triggers": [
+ "hackage"
+ ],
+ "regions": {
+ "default": "https://hackage.haskell.org/packages/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hacktips.it/wp-content/uploads/2016/04/cropped-Logo-HK2-192x192.png",
+ "name": "HackTips",
+ "triggers": [
+ "hk"
+ ],
+ "regions": {
+ "default": "http://hacktips.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hahn-it.ch/assets/img/favicon.ico",
+ "name": "Hahn-IT",
+ "triggers": [
+ "hahn-it"
+ ],
+ "regions": {
+ "default": "https://www.hahn-it.ch/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hahwul.com/favicon.ico",
+ "name": "HAHWUL",
+ "triggers": [
+ "hahwul"
+ ],
+ "regions": {
+ "default": "http://www.hahwul.com/search?max-results=7&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hak5.org/wp-content/uploads/2017/10/favicon.png",
+ "name": "Hak5",
+ "triggers": [
+ "hak5"
+ ],
+ "regions": {
+ "default": "http://hak5.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forums.hak5.org/favicon.ico",
+ "name": "Hak5 Forums",
+ "triggers": [
+ "hak5f"
+ ],
+ "regions": {
+ "default": "https://forums.hak5.org/index.php?app=core&module=search&do=search&fromMainBar=1&search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hal.archives-ouvertes.fr/img/favicon.png",
+ "name": "HAL",
+ "triggers": [
+ "hal"
+ ],
+ "regions": {
+ "default": "https://hal.archives-ouvertes.fr/search/index/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pages.ebay.com/favicon.ico",
+ "name": "Half.com",
+ "triggers": [
+ "half"
+ ],
+ "regions": {
+ "default": "http://search.half.ebay.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://corporate.coolgames.com/wp-content/uploads/2017/10/favicon-16x16.png",
+ "name": "Hallpass",
+ "triggers": [
+ "hallpass"
+ ],
+ "regions": {
+ "default": "http://www.hallpass.com/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://halo.esportspedia.com/wikis/halo/config/favicon.ico",
+ "name": "Halo Esportspedia",
+ "triggers": [
+ "esphalo"
+ ],
+ "regions": {
+ "default": "http://halo.esportspedia.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.halopedia.org/favicon.ico",
+ "name": "Halopedia",
+ "triggers": [
+ "halopedia"
+ ],
+ "regions": {
+ "default": "http://www.halopedia.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://halo.umbc.edu/favicon.ico",
+ "name": "HaloWeb",
+ "triggers": [
+ "hw"
+ ],
+ "regions": {
+ "default": "http://halo.umbc.edu/cgi-bin/haloweb/nrc1.pl?display=json&operation=search&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://handmade-add.com/image/catalog/cart.png",
+ "name": "Handmade Add",
+ "triggers": [
+ "hadd",
+ "ha"
+ ],
+ "regions": {
+ "default": "https://handmade-add.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hansard.parliament.uk/Assets/img/favicon.ico",
+ "name": "Hansard (UK Parliament)",
+ "triggers": [
+ "hansard"
+ ],
+ "regions": {
+ "default": "https://hansard.parliament.uk/search?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hanzicraft.com/favicon.ico",
+ "name": "HanziCraft",
+ "triggers": [
+ "hanzicraft"
+ ],
+ "regions": {
+ "default": "http://www.hanzicraft.com/character/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.happycow.net/favicon.ico",
+ "name": "HappyCow",
+ "triggers": [
+ "happycow"
+ ],
+ "regions": {
+ "default": "https://www.happycow.net/searchmap?lat=&lng=&location={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.harald-nyborg.dk/graphics/favicon.ico",
+ "name": "Harald Nyborg (Denmark/Danmark)",
+ "triggers": [
+ "hndk"
+ ],
+ "regions": {
+ "default": "https://www.harald-nyborg.dk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.harald-nyborg.se/skin/frontend/harald/harald2/favicon.ico",
+ "name": "Harald Nyborg (Sweden/Sverige)",
+ "triggers": [
+ "hnse"
+ ],
+ "regions": {
+ "default": "http://www.harald-nyborg.se/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://shop.harborfreight.com/skin/frontend/enterprise/hft/favicon.ico",
+ "name": "Harbor Freight Tools",
+ "triggers": [
+ "hft"
+ ],
+ "regions": {
+ "default": "http://www.harborfreight.com/catalogsearch/result?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hardwarezone.com.sg/img/icons/hwz.ico",
+ "name": "Hardware Zone Forums",
+ "triggers": [
+ "hwz"
+ ],
+ "regions": {
+ "default": "http://www.hardwarezone.com.sg/search/forum/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.hwigroup.net/hardwareinfo/ui/siteicons/favicon-16x16.png",
+ "name": "Hardware.info",
+ "triggers": [
+ "hardwareinfo"
+ ],
+ "regions": {
+ "default": "https://us.hardware.info/#search:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hares.io/static/favicon/favicon-16x16.png",
+ "name": "Hares.io",
+ "triggers": [
+ "hares"
+ ],
+ "regions": {
+ "default": "http://hares.io/check/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.harptabs.com/favicon.ico",
+ "name": "HarpTabs",
+ "triggers": [
+ "harptabs"
+ ],
+ "regions": {
+ "default": "https://www.harptabs.com/searchsong.php?Name={{{term}}}&HarpType=0"
+ }
+ },
+ {
+ "favicon": "http://www.harrisgeospatial.com/favicon.ico",
+ "name": "Harris Geospatial",
+ "triggers": [
+ "idl"
+ ],
+ "regions": {
+ "default": "http://www.harrisgeospatial.com/docs/SearchResults.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/harrypotter/images/6/64/Favicon.ico/revision/latest?cb=20101229222641",
+ "name": "Harry Potter wiki",
+ "triggers": [
+ "harrypotter"
+ ],
+ "regions": {
+ "default": "http://harrypotter.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/harrypotter/images/6/64/Favicon.ico/revision/latest?cb=20101229222641",
+ "name": "Harry Potter Wikia",
+ "triggers": [
+ "hpwiki"
+ ],
+ "regions": {
+ "default": "http://harrypotter.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.courant.com/favicon.ico",
+ "name": "Hartford Courant",
+ "triggers": [
+ "courant"
+ ],
+ "regions": {
+ "default": "http://www.courant.com/search/dispatcher.front?target=article&sortby=display_time++descending&Query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://hollis.harvard.edu/primo_library/libweb/action/dlSearch.do?institution=HVD&vid=HVD&tab=everything&displayField=all&search_scope=everything&mode=Basic&onCampus=false&displayMode=full&query=any%2Ccontains%2Cidhhidfhh",
+ "name": "Harvard University Library",
+ "triggers": [
+ "harvardlib"
+ ],
+ "regions": {
+ "default": "http://hollis.harvard.edu/primo_library/libweb/action/dlSearch.do?institution=HVD&vid=HVD&tab=everything&displayField=all&search_scope=everything&mode=Basic&onCampus=false&displayMode=full&query=any%2Ccontains%2C{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hasitleaked.com/favicon/favicon-16.png",
+ "name": "Has It Leaked",
+ "triggers": [
+ "hasitleaked"
+ ],
+ "regions": {
+ "default": "http://hasitleaked.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.haskell.org/static/img/favicon.ico?etag=-4XQV6tt",
+ "name": "Haskell Wiki",
+ "triggers": [
+ "haskellwiki"
+ ],
+ "regions": {
+ "default": "https://www.haskell.org/haskellwiki/Special:Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.haskell.org/static/img/favicon.ico?etag=-4XQV6tt",
+ "name": "haskell.org/hoogle",
+ "triggers": [
+ "hgl",
+ "hgle",
+ "ho",
+ "hoogle",
+ "h"
+ ],
+ "regions": {
+ "default": "https://www.haskell.org/hoogle/?hoogle={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.trhastane.com/favicon.ico",
+ "name": "Hastane",
+ "triggers": [
+ "hastane"
+ ],
+ "regions": {
+ "default": "http://www.trhastane.com/arama.php?sehir=0&word={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.gohastings.com/favicon.ico",
+ "name": "Hastings",
+ "triggers": [
+ "gohastings"
+ ],
+ "regions": {
+ "default": "http://www.gohastings.com/catalog/search_all.cmd?form_state=global-search-form-form&keywords={{{term}}}&productType=0&query=&form_state=siteSearchForm&department=AllSearch&departmentName=AllSearch&dynamic=&search=true&source=global&condition=0"
+ }
+ },
+ {
+ "favicon": "http://www.hatbuzz.com/favicon.ico",
+ "name": "hatbuzz",
+ "triggers": [
+ "hatbuzz"
+ ],
+ "regions": {
+ "default": "http://www.hatbuzz.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//b.hatena.ne.jp/favicon.ico",
+ "name": "Hatena Bookmark",
+ "triggers": [
+ "hatebu"
+ ],
+ "regions": {
+ "default": "http://b.hatena.ne.jp/search/text?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://babel.hathitrust.org/favicon.ico",
+ "name": "HathiTrust",
+ "triggers": [
+ "hathi"
+ ],
+ "regions": {
+ "default": "https://babel.hathitrust.org/cgi/ls?field1=ocr;q1={{{term}}};a=srchls"
+ }
+ },
+ {
+ "favicon": "https://haveibeenpwned.com/favicon.ico",
+ "name": "Have I Been Pwned",
+ "triggers": [
+ "hibp",
+ "pwned",
+ "amipwned"
+ ],
+ "regions": {
+ "default": "https://haveibeenpwned.com/account/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/havenmaine/images/6/64/Favicon.ico/revision/latest?cb=20120908021048",
+ "name": "Haven",
+ "triggers": [
+ "haven"
+ ],
+ "regions": {
+ "default": "http://havenmaine.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lib.haxe.org/favicon.ico",
+ "name": "Haxelib",
+ "triggers": [
+ "haxelib"
+ ],
+ "regions": {
+ "default": "http://lib.haxe.org/search?v={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://holumbus.fh-wedel.de/favicon.ico",
+ "name": "Hayoo",
+ "triggers": [
+ "hayoo"
+ ],
+ "regions": {
+ "default": "http://holumbus.fh-wedel.de/hayoo/hayoo.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hazmeelchingadofavor.com/favicon.ico",
+ "name": "Hazme El Chingado Favor",
+ "triggers": [
+ "hecf"
+ ],
+ "regions": {
+ "default": "http://hazmeelchingadofavor.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hd-area.org/favicon.ico",
+ "name": "HD-Area.org",
+ "triggers": [
+ "hda"
+ ],
+ "regions": {
+ "default": "http://www.hd-area.org/?s=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hdtracks.com/skin/frontend/enterprise/hdtracks/favicon.ico",
+ "name": "HDtracks.com",
+ "triggers": [
+ "hdt"
+ ],
+ "regions": {
+ "default": "https://www.hdtracks.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.head-fi.org/assets/static/Head-Fi_Favicon_01b.png",
+ "name": "Head-Fi",
+ "triggers": [
+ "headfi",
+ "head-fi"
+ ],
+ "regions": {
+ "default": "https://www.head-fi.org/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://headtalker.com/wp-content/uploads/2016/07/cropped-headtalker-icon-192x192.png",
+ "name": "HeadTalker",
+ "triggers": [
+ "headtalker"
+ ],
+ "regions": {
+ "default": "https://headtalker.com/?s={{{term}}}&post_type[]=campaigns"
+ }
+ },
+ {
+ "favicon": "https://hooktube.com/favicon.ico",
+ "name": "HealthTap",
+ "triggers": [
+ "ht",
+ "yu",
+ "hkt"
+ ],
+ "regions": {
+ "default": "https://hooktube.com/results?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1ngqubzx882dn.cloudfront.net/static/favicon.png",
+ "name": "HealthUnlocked",
+ "triggers": [
+ "hu"
+ ],
+ "regions": {
+ "default": "https://healthunlocked.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.heartbowsmakeup.com/wp-content/uploads/2014/08/favicon-hbm.png",
+ "name": "Heart Bows & Makeup",
+ "triggers": [
+ "hbm"
+ ],
+ "regions": {
+ "default": "http://www.heartbowsmakeup.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://filippo.io/favicon.ico",
+ "name": "Heartbleed Test",
+ "triggers": [
+ "heartbleed"
+ ],
+ "regions": {
+ "default": "http://filippo.io/Heartbleed/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hearthhead.com/images/icons/favicon-16x16.png",
+ "name": "Hearthhead",
+ "triggers": [
+ "hearthhead"
+ ],
+ "regions": {
+ "default": "http://www.hearthhead.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-hearth.cursecdn.com/avatars/20/296/635048151495447007.png",
+ "name": "Hearthpwn",
+ "triggers": [
+ "hearthpwn"
+ ],
+ "regions": {
+ "default": "http://www.hearthpwn.com/search?search={{{term}}}#t1:cards"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/hearthstone_gamepedia/6/64/Favicon.ico?version=3b140a1ccc67d1e7d26b2179598d2f2c",
+ "name": "Hearthstone Wiki",
+ "triggers": [
+ "hearthstone"
+ ],
+ "regions": {
+ "default": "http://hearthstone.gamepedia.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/hearthstone_gamepedia/6/64/Favicon.ico?version=3b140a1ccc67d1e7d26b2179598d2f2c",
+ "name": "Hearthstone: Heroes of Warcraft Wiki",
+ "triggers": [
+ "hswiki"
+ ],
+ "regions": {
+ "default": "http://hearthstone.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.heatspring.com/assets/heatspring-favicon-9dc568e1988729a68a4bbbdb334a4564b896f4415706eac39a7e804e7ed373c4.png",
+ "name": "HeatSpring",
+ "triggers": [
+ "heatspring"
+ ],
+ "regions": {
+ "default": "https://www.heatspring.com/app/courses/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://he.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Hebrew Wikipedia",
+ "triggers": [
+ "hebwiki"
+ ],
+ "regions": {
+ "default": "https://he.wikipedia.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://he.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Hebrew wikipedia",
+ "triggers": [
+ "ויקי"
+ ],
+ "regions": {
+ "default": "https://he.wikipedia.org/w/index.php?search={{{term}}}&title=מיוחד%3Aחיפוש&go=לערך"
+ }
+ },
+ {
+ "favicon": "http://www.heeza.fr/img/favicon.ico?1518711918",
+ "name": "HEEZA - L'Univers du Cartoon",
+ "triggers": [
+ "heeza"
+ ],
+ "regions": {
+ "default": "http://www.heeza.fr/fr/recherche?orderby=position&orderway=desc&search_query={{{term}}}&submit_search=Rechercher"
+ }
+ },
+ {
+ "favicon": "http://heilkraeuter.de/favicon.ico",
+ "name": "Heilkraeuter",
+ "triggers": [
+ "heilkraeuter"
+ ],
+ "regions": {
+ "default": "http://heilkraeuter.de/cgi-bin/search.cgi?Terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nhd.heinle.com/favicon.ico",
+ "name": "Heinle's Newbury House Dictionary of American English",
+ "triggers": [
+ "nhd"
+ ],
+ "regions": {
+ "default": "http://nhd.heinle.com/Definition.aspx?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.heinzelnisse.info/favicon.ico",
+ "name": "Heinzelnisse",
+ "triggers": [
+ "heinzelnisse"
+ ],
+ "regions": {
+ "default": "http://www.heinzelnisse.info/dict?searchItem={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.heise.de/favicon.ico",
+ "name": "heise online",
+ "triggers": [
+ "heise"
+ ],
+ "regions": {
+ "default": "https://www.heise.de/suche/?q={{{term}}}&rm=search"
+ }
+ },
+ {
+ "favicon": "https://www.heise.de/favicon.ico",
+ "name": "Heise.de Preisvergleich",
+ "triggers": [
+ "hpv"
+ ],
+ "regions": {
+ "default": "https://www.heise.de/preisvergleich/?fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.helm.nu/favicon.ico",
+ "name": "Helm",
+ "triggers": [
+ "helm"
+ ],
+ "regions": {
+ "default": "http://www.helm.nu/Pages/Search.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://haku.helmet.fi:443/iii/encore/resources/gold/images/favicon.ico",
+ "name": "HelMet",
+ "triggers": [
+ "helmet"
+ ],
+ "regions": {
+ "default": "https://haku.helmet.fi/iii/encore/search/C__S{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.helping-kids-africa.at/favicon.ico",
+ "name": "Helping Kids Africa",
+ "triggers": [
+ "helping-kids-africa"
+ ],
+ "regions": {
+ "default": "http://www.helping-kids-africa.at/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hs.fi/assets/images/hs/platform-icons/hs_192x192.7c3d2b799c6ee7a6.png",
+ "name": "Helsingin Sanomat",
+ "triggers": [
+ "hesari"
+ ],
+ "regions": {
+ "default": "http://hs.fi/haku/?search-term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hsl.fi/sites/all/themes/custom/hsl/favicon.ico",
+ "name": "Helsingin Seudun Liikenne",
+ "triggers": [
+ "hsl"
+ ],
+ "regions": {
+ "default": "https://www.hsl.fi/search/solr?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.henrylibros.com/favicon.ico",
+ "name": "Henry Libros",
+ "triggers": [
+ "henrylibros"
+ ],
+ "regions": {
+ "default": "http://www.henrylibros.com/busquedaMultiple?sortBy=title&title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.hepsiburada.net/assets/sfstatic/Content/images/favicon.ico",
+ "name": "Hepsi Burada",
+ "triggers": [
+ "hepsib",
+ "hepsiburada"
+ ],
+ "regions": {
+ "default": "http://www.hepsiburada.com/ara?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wego.here.com/favicon.ico",
+ "name": "HERE maps",
+ "triggers": [
+ "hm"
+ ],
+ "regions": {
+ "default": "https://wego.here.com/search/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "https://wego.here.com/favicon.ico",
+ "name": "Here WeGo",
+ "triggers": [
+ "here"
+ ],
+ "regions": {
+ "default": "https://wego.here.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.herokucdn.com/favicon.ico",
+ "name": "Heroku Devcenter",
+ "triggers": [
+ "heroku"
+ ],
+ "regions": {
+ "default": "http://devcenter.heroku.com/articles?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://whoiz.herokuapp.com/favicon.ico",
+ "name": "Heroku Whoiz",
+ "triggers": [
+ "whoizh"
+ ],
+ "regions": {
+ "default": "https://whoiz.herokuapp.com/lookup?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://opac.hebib.de/favicon.ico",
+ "name": "hessen.OPAC",
+ "triggers": [
+ "hopac"
+ ],
+ "regions": {
+ "default": "http://opac.hebib.de/search?scope=R1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hln.be/favicon.ico",
+ "name": "Het Laatste Nieuws",
+ "triggers": [
+ "hln"
+ ],
+ "regions": {
+ "default": "http://www.hln.be/hln/nl/1/article/search.dhtml?searchValue={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nbofront.akamaized.net/extra/assets/img/favicons/favicon.png?v=20180703T152311",
+ "name": "Het Nieuwsblad",
+ "triggers": [
+ "nieuwsblad"
+ ],
+ "regions": {
+ "default": "http://www.nieuwsblad.be/Search/Index.aspx?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.heureka.cz/favicon.ico",
+ "name": "Heureka!",
+ "triggers": [
+ "heureka"
+ ],
+ "regions": {
+ "default": "https://www.heureka.cz/?h[fraze]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.heureka.sk/favicon.ico",
+ "name": "Heureka.sk",
+ "triggers": [
+ "heurekask"
+ ],
+ "regions": {
+ "default": "https://www.heureka.sk/?h[fraze]={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://hexdocs.pm/favicon.png",
+ "name": "Hex Docs",
+ "triggers": [
+ "hexdocs"
+ ],
+ "regions": {
+ "default": "http://hexdocs.pm/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hex.pm/favicon-acecbef334adb3141ce09929f639155c.png?vsn=d",
+ "name": "Hex.pm",
+ "triggers": [
+ "hx",
+ "hexpm"
+ ],
+ "regions": {
+ "default": "https://hex.pm/packages?search={{{term}}}&sort=downloads"
+ }
+ },
+ {
+ "favicon": "http://hgpu.org/favicon.ico",
+ "name": "hgpu.org",
+ "triggers": [
+ "hgpu"
+ ],
+ "regions": {
+ "default": "http://hgpu.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hgtv.com/etc/clientlibs/assets/images/hgtv/favicon-96x96.png",
+ "name": "HGTV",
+ "triggers": [
+ "hgtv"
+ ],
+ "regions": {
+ "default": "http://www.hgtv.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hi-news.ru/wp-content/themes/101media/favicon.ico",
+ "name": "Hi-News.ru",
+ "triggers": [
+ "hinews"
+ ],
+ "regions": {
+ "default": "http://hi-news.ru/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.highrec.com/favicon.ico",
+ "name": "HighRec",
+ "triggers": [
+ "highrec"
+ ],
+ "regions": {
+ "default": "http://www.highrec.com/?q={{{term}}}&utm_medium=api&utm_campaign=partner"
+ }
+ },
+ {
+ "favicon": "https://www.highsnobiety.com/wp-content/themes/highsnobiety/favicons/favicon-96x96.png",
+ "name": "highsnobiety",
+ "triggers": [
+ "highsnob"
+ ],
+ "regions": {
+ "default": "http://www.highsnobiety.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hillel.org/img/favicon.gif",
+ "name": "Hillel College Guide",
+ "triggers": [
+ "hillel"
+ ],
+ "regions": {
+ "default": "http://www.hillel.org/college-guide/search#keyword={{{term}}}&radius=10"
+ }
+ },
+ {
+ "favicon": "https://lyricsing.com/wp-content/themes/lyrics/assets/images/favicon.ico",
+ "name": "Hindi Lyrics",
+ "triggers": [
+ "lyricsing"
+ ],
+ "regions": {
+ "default": "https://lyricsing.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hinnavaatlus.ee/favicon.ico",
+ "name": "Hinnavaatlus",
+ "triggers": [
+ "hv"
+ ],
+ "regions": {
+ "default": "http://www.hinnavaatlus.ee/search/?Type=products&Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hinta.fi/favicon.ico?v=ngkQMv0NqX",
+ "name": "Hinta.fi",
+ "triggers": [
+ "hintafi"
+ ],
+ "regions": {
+ "default": "http://hinta.fi/haku?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.hintaseuranta.fi/static/images/favicon.ico",
+ "name": "Hintaseuranta",
+ "triggers": [
+ "hinta"
+ ],
+ "regions": {
+ "default": "http://hintaseuranta.fi/haku/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/www.hippressurecooking.com/wp-content/uploads/2016/03/cropped-carotina_nicely_trasnp_512.png?fit=192,192&ssl=1",
+ "name": "hip pressure cooking",
+ "triggers": [
+ "hip"
+ ],
+ "regions": {
+ "default": "http://www.hippressurecooking.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://historio.us/media/images/favicon.png",
+ "name": "Historious",
+ "triggers": [
+ "historious"
+ ],
+ "regions": {
+ "default": "http://historio.us/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//bundler.watch.aetnd.com/images/history/favicon.ico",
+ "name": "History",
+ "triggers": [
+ "history"
+ ],
+ "regions": {
+ "default": "https://www.history.com/search?search-field={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://hitchwiki.org/favicon.ico",
+ "name": "Hitchwiki",
+ "triggers": [
+ "hitchwiki"
+ ],
+ "regions": {
+ "default": "http://hitchwiki.org/en/index.php?search={{{term}}}&fulltext=Search&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://www.hitta.se/static/img/favicons/favicon-16x16.png",
+ "name": "Hitta.se",
+ "triggers": [
+ "hitta"
+ ],
+ "regions": {
+ "default": "https://www.hitta.se/sök?vad={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hive.co.uk/Content/StoreFront/assets/images/Favicon/favicon.ico",
+ "name": "Hive",
+ "triggers": [
+ "hive"
+ ],
+ "regions": {
+ "default": "https://www.hive.co.uk/Search/Keyword?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hklii.hk/favicon.ico",
+ "name": "HKLII",
+ "triggers": [
+ "hklii"
+ ],
+ "regions": {
+ "default": "http://www.hklii.hk/cgi-bin/sinosrch.cgi?query={{{term}}}&results=50&submit=Search&mask_world=&mask_path=&callback=on&method=auto&meta=%2Fhklii"
+ }
+ },
+ {
+ "favicon": "http://www.hltv.org/img/static/favicon/favicon-16x16.png",
+ "name": "HLTV.org",
+ "triggers": [
+ "hltv"
+ ],
+ "regions": {
+ "default": "http://www.hltv.org/?pageid=152&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.hoa-project.net/favicon.ico",
+ "name": "Hoa project",
+ "triggers": [
+ "hoa"
+ ],
+ "regions": {
+ "default": "http://search.hoa-project.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hoaxbuster.com/sites/default/files/favicon.ico",
+ "name": "Hoaxbuster",
+ "triggers": [
+ "hxb"
+ ],
+ "regions": {
+ "default": "http://www.hoaxbuster.com/search/node/{{{term}}}%20type%3Aarticle"
+ }
+ },
+ {
+ "favicon": "https://hobbyking.com/media/favicon/default/favicon.png",
+ "name": "Hobby King",
+ "triggers": [
+ "hobbyking"
+ ],
+ "regions": {
+ "default": "https://hobbyking.com/en_us/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hobbyworks.com/favicon.ico?v=2",
+ "name": "HobbyWorks",
+ "triggers": [
+ "hobbyworks"
+ ],
+ "regions": {
+ "default": "https://www.hobbyworks.com/index.cfm?action=search&searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://okeanos-www.hbz-nrw.de/favicon.ico",
+ "name": "Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen",
+ "triggers": [
+ "hbz"
+ ],
+ "regions": {
+ "default": "http://okeanos-www.hbz-nrw.de/F/?func=find-c&ccl_term=WRD%3D%22{{{term}}}%22"
+ }
+ },
+ {
+ "favicon": "https://www.hs-albsig.de/typo3conf/ext/hsas/Resources/Public/Images/favicon.ico",
+ "name": "Hochschule Albstadt-Sigmaringen",
+ "triggers": [
+ "hsas"
+ ],
+ "regions": {
+ "default": "http://www.hs-albsig.de/search/results.aspx?k={{{term}}}&cs=Diese%20Website&u=http%3A%2F%2Fwww.hs-albsig.de"
+ }
+ },
+ {
+ "favicon": "https://www.hs-neu-ulm.de/favicon.ico",
+ "name": "Hochschule Neu-Ulm",
+ "triggers": [
+ "hnu"
+ ],
+ "regions": {
+ "default": "https://www.hs-neu-ulm.de/nc/suchergebnisse/?id=1289&L=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hockeymonkey.nexcesscdn.net/media/favicon/websites/3/favicon.ico",
+ "name": "Hockey Monkey",
+ "triggers": [
+ "hockeymonkey"
+ ],
+ "regions": {
+ "default": "http://www.hockeymonkey.com/nsearch?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2p3bygnnzw9w3.cloudfront.net/req/201806122/favicons/hr/favicon-32.png",
+ "name": "Hockey Reference",
+ "triggers": [
+ "hockeyref"
+ ],
+ "regions": {
+ "default": "http://www.hockey-reference.com/search/search.fcgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hockeydb.com/favicon.ico",
+ "name": "HockeyDB",
+ "triggers": [
+ "hdb",
+ "hockeydb"
+ ],
+ "regions": {
+ "default": "http://www.hockeydb.com/ihdb/stats/findplayer.php?full_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dizionari.hoepli.it/favicon.ico",
+ "name": "Hoepli",
+ "triggers": [
+ "hoepli"
+ ],
+ "regions": {
+ "default": "http://dizionari.hoepli.it/Dizionario_Italiano/parola/s.aspx?idD=1&Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hogeschoolrotterdam.nl/images/favicons/favicon-16x16.png",
+ "name": "Hogeschool Rotterdam",
+ "triggers": [
+ "hro",
+ "hr"
+ ],
+ "regions": {
+ "default": "https://www.hogeschoolrotterdam.nl/zoek/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.holidaycheck.de/public/assets/img/favicons/favicon.png",
+ "name": "HolidayCheck",
+ "triggers": [
+ "hc"
+ ],
+ "regions": {
+ "default": "http://www.holidaycheck.de/schnellsuche.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hollandandbarrett.com/images/touchicon/favicon.ico",
+ "name": "Holland and Barrett",
+ "triggers": [
+ "hollbarr"
+ ],
+ "regions": {
+ "default": "http://www.hollandandbarrett.com/pages/iq.asp?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hollisterco.com/favicon.ico",
+ "name": "Hollister",
+ "triggers": [
+ "hollister"
+ ],
+ "regions": {
+ "default": "https://www.hollisterco.com/webapp/wcs/stores/servlet/Search?storeId=10251&catalogId=10201&langId=-1&departmentCategoryId=10006&search-field={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.homeadvisor.com/favicon.ico",
+ "name": "Home Advisor",
+ "triggers": [
+ "home"
+ ],
+ "regions": {
+ "default": "http://www.homeadvisor.com/sitesearch/searchQuery?action=SEARCH&searchType=SiteTaskSearch&useExtSearch=false&initialSearch=true&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.homebrewtalk.com/favicon.ico",
+ "name": "Home Brew Talk",
+ "triggers": [
+ "hbt"
+ ],
+ "regions": {
+ "default": "http://www.homebrewtalk.com/search/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.homedepot.com/favicon.ico",
+ "name": "Home Depot",
+ "triggers": [
+ "hode"
+ ],
+ "regions": {
+ "default": "http://www.homedepot.com/s/{{{term}}}?NCNI-5"
+ }
+ },
+ {
+ "favicon": "https://www.homedepot.com/favicon.ico",
+ "name": "Home Depot",
+ "triggers": [
+ "homedepot"
+ ],
+ "regions": {
+ "default": "https://www.homedepot.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.homedepot.com/favicon.ico",
+ "name": "Home Depot",
+ "triggers": [
+ "hdx"
+ ],
+ "regions": {
+ "default": "http://www.homedepot.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.homedepot.ca/favicon.ico",
+ "name": "Home Depot Canada",
+ "triggers": [
+ "homedepotca"
+ ],
+ "regions": {
+ "default": "https://www.homedepot.ca/en/home/search.html?q={{{term}}}#!q=dcaaiibfe"
+ }
+ },
+ {
+ "favicon": "//cdn-tp1.mozu.com/24871-37656/resources/images/favicons/favicon-16x16.png",
+ "name": "Home Hardware",
+ "triggers": [
+ "hh"
+ ],
+ "regions": {
+ "default": "http://www.homehardware.ca/en/cat/search/_/N-2pqfZ67l/Ne-67n/Ntk-All_EN?Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.homeoftheunderdogs.net/favicon.ico",
+ "name": "Home of the Underdogs",
+ "triggers": [
+ "hotud"
+ ],
+ "regions": {
+ "default": "http://www.homeoftheunderdogs.net/search.php?search_game={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.homebase.co.uk/assets/styleguide/v1.0.93.0-integration/bunnings-main-site/assets/img/favicon-homebase.ico",
+ "name": "Homebase",
+ "triggers": [
+ "homebase"
+ ],
+ "regions": {
+ "default": "https://www.homebase.co.uk/webapp/wcs/stores/servlet/Search?storeId=10151&catalogId=1500001201&langId=110&searchTerms={{{term}}}&authToken="
+ }
+ },
+ {
+ "favicon": "http://brewformulas.org/assets/favicon-98e8640120817e4a036bff4fc3550ac06f212682c16a7932cd4c56297bd9e115.ico",
+ "name": "Homebrew",
+ "triggers": [
+ "brew"
+ ],
+ "regions": {
+ "default": "http://brewformulas.org/search?search%5Bterm%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hrwiki.org/favicon.ico",
+ "name": "Homestar Runner Wiki",
+ "triggers": [
+ "hrwiki"
+ ],
+ "regions": {
+ "default": "http://hrwiki.org/w/index.php?title=Special:Search&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/1dd72ffcda1a3681f8159486bb9bbe58?s=32",
+ "name": "Homotopy Type Theory",
+ "triggers": [
+ "hott"
+ ],
+ "regions": {
+ "default": "https://homotopytypetheory.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.blis.gov.hk/favicon.ico",
+ "name": "Hong Kong Bilingual Laws Information System",
+ "triggers": [
+ "blis"
+ ],
+ "regions": {
+ "default": "http://www.blis.gov.hk/eng/home.htm?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mtr.com.hk/favicon.ico",
+ "name": "Hong Kong MTR",
+ "triggers": [
+ "mtr"
+ ],
+ "regions": {
+ "default": "http://mwsgsa01.mtr.com.hk/search?site=default_collection&output=xml_no_dtd&client=mtr_eng&proxystylesheet=mtr_eng&proxyreload=1&ie=big5&oe=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://honyakustar.com/en/images/favicon.ico",
+ "name": "Honyaku Star",
+ "triggers": [
+ "hs"
+ ],
+ "regions": {
+ "default": "http://honyakustar.com/en/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.hood.de/interface/favicon-16x16.png",
+ "name": "Hood.de - Auktionen und Online Shopping",
+ "triggers": [
+ "hood"
+ ],
+ "regions": {
+ "default": "https://www.hood.de/suchergebnisse.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stackage.org/favicon.ico",
+ "name": "Hoogle at Stackage",
+ "triggers": [
+ "stackage"
+ ],
+ "regions": {
+ "default": "http://www.stackage.org/lts/hoogle?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://horriblesubs.info/favicon.ico",
+ "name": "HorribleSubs",
+ "triggers": [
+ "hsu"
+ ],
+ "regions": {
+ "default": "http://horriblesubs.info/lib/search.php?value={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hostcabi.net/favicon.ico",
+ "name": "HostCabi",
+ "triggers": [
+ "hostis"
+ ],
+ "regions": {
+ "default": "http://hostcabi.net/domain/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hottopic.com/on/demandware.static/-/Library-Sites-hot-topic-share/default/v1530643495583/favicon/ht_favicon.ico",
+ "name": "Hot Topic",
+ "triggers": [
+ "hottopic"
+ ],
+ "regions": {
+ "default": "http://www.hottopic.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hotbot.com/favicon.ico",
+ "name": "HotBot Web",
+ "triggers": [
+ "hotbot"
+ ],
+ "regions": {
+ "default": "http://www.hotbot.com/search/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hotdealexpress.com/favicon.ico",
+ "name": "HotDealExpress",
+ "triggers": [
+ "hot"
+ ],
+ "regions": {
+ "default": "http://www.hotdealexpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.restovisio.com/img/favicons/favicon.ico",
+ "name": "HotelRestoVisio",
+ "triggers": [
+ "hrv"
+ ],
+ "regions": {
+ "default": "http://www.restovisio.com/search?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hotline.ua/favicon.ico",
+ "name": "Hotline",
+ "triggers": [
+ "hotline"
+ ],
+ "regions": {
+ "default": "http://hotline.ua/sr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hotstar.com/favicon.png?ver=4",
+ "name": "Hotsar",
+ "triggers": [
+ "hotsar"
+ ],
+ "regions": {
+ "default": "http://www.hotstar.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hotukdeals.com/favicon.ico",
+ "name": "Hotukdeals",
+ "triggers": [
+ "hotukdeals",
+ "hukd"
+ ],
+ "regions": {
+ "default": "http://www.hotukdeals.com/search?action=search&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//o1.vrimgs.com/res/1380077912/assets/public/images/favicon/favicon_housetrip.ico",
+ "name": "HouseTrip",
+ "triggers": [
+ "housetrip"
+ ],
+ "regions": {
+ "default": "http://www.housetrip.com/en/search-holiday-apartments/{{{term}}}?guests=2"
+ }
+ },
+ {
+ "favicon": "http://www.houzz.com/favicon.ico",
+ "name": "Houzz",
+ "triggers": [
+ "houzz"
+ ],
+ "regions": {
+ "default": "http://www.houzz.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hover.com/favicon-32x32.png",
+ "name": "Hover",
+ "triggers": [
+ "hover"
+ ],
+ "regions": {
+ "default": "https://www.hover.com/domains/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://howlongtobeat.com/img/icons/favicon.ico",
+ "name": "How Long To Beat",
+ "triggers": [
+ "hltb",
+ "howlongtobeat"
+ ],
+ "regions": {
+ "default": "http://howlongtobeat.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://howlongtobeat.com/img/icons/favicon.ico",
+ "name": "How Long to Beat",
+ "triggers": [
+ "hlb"
+ ],
+ "regions": {
+ "default": "http://howlongtobeat.com/game.php?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.hswstatic.com/en-us/hsw/img/favicon-16x16.png",
+ "name": "How Stuff Works",
+ "triggers": [
+ "howstuffworks"
+ ],
+ "regions": {
+ "default": "http://www.howstuffworks.com/search.php?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://howthingswork.virginia.edu/favicon.ico",
+ "name": "How Things Work",
+ "triggers": [
+ "howthingswork"
+ ],
+ "regions": {
+ "default": "http://howthingswork.virginia.edu/search.php?searchs={{{term}}}&Go.x=0&Go.y=0&searchq=yes&searcha=yes"
+ }
+ },
+ {
+ "favicon": "http://www.howtogeek.com/public/favicon.ico",
+ "name": "How-To Geek",
+ "triggers": [
+ "htg",
+ "howtogeek"
+ ],
+ "regions": {
+ "default": "http://www.howtogeek.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://howbook.org/favicon.png",
+ "name": "howbook",
+ "triggers": [
+ "howbook"
+ ],
+ "regions": {
+ "default": "http://howbook.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.howjsay.com/images/favicon.ico",
+ "name": "Howjsay",
+ "triggers": [
+ "hjs"
+ ],
+ "regions": {
+ "default": "http://www.howjsay.com/index.php?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://howjsay.com/images/favicon.ico",
+ "name": "HowJSay",
+ "triggers": [
+ "howjsay"
+ ],
+ "regions": {
+ "default": "http://howjsay.com/index.php?word={{{term}}}&submit=Submit"
+ }
+ },
+ {
+ "favicon": "//s.hswstatic.com/en-us/hsw/img/favicon-16x16.png",
+ "name": "HowStuffWorks",
+ "triggers": [
+ "hsw"
+ ],
+ "regions": {
+ "default": "http://computer.howstuffworks.com/search.php?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://howtodoinjava.com/wp-content/uploads/2015/05/howtodoinjava_logo-55696c1cv1_site_icon-256x256.png",
+ "name": "Howtodoinjava",
+ "triggers": [
+ "howtodoinjava"
+ ],
+ "regions": {
+ "default": "http://howtodoinjava.com/search-results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.howtoforge.com/favicon.ico",
+ "name": "HowtoForge",
+ "triggers": [
+ "htf",
+ "howtoforge"
+ ],
+ "regions": {
+ "default": "https://www.howtoforge.com/trip_search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://howtomakemyblog.com/wp-content/uploads/cropped-favicon-300x300.jpg",
+ "name": "HowToMakeMyBlog",
+ "triggers": [
+ "howtomakemyblog"
+ ],
+ "regions": {
+ "default": "http://howtomakemyblog.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.hp.com/us/en/images/i/hpi/header-footer/caas-hf-v3.2/hpi-favicon.ico",
+ "name": "HP",
+ "triggers": [
+ "hp"
+ ],
+ "regions": {
+ "default": "http://search.hp.com/query.html?lang=en&submit.x=0&submit.y=0&qt={{{term}}}&la=en&cc=us"
+ }
+ },
+ {
+ "favicon": "http://www.support.hp.com/hp-portal-theme-static/themes/Portal8.0/images/favicon.ico",
+ "name": "HP Support",
+ "triggers": [
+ "hpsupport"
+ ],
+ "regions": {
+ "default": "http://www.support.hp.com/us-en/search?q={{{term}}}&filter="
+ }
+ },
+ {
+ "favicon": "https://hosts-file.net/favicon.ico",
+ "name": "hphosts",
+ "triggers": [
+ "hphosts"
+ ],
+ "regions": {
+ "default": "https://hosts-file.net/default.asp?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hpluspedia.org/favicon.ico",
+ "name": "Hpluspedia",
+ "triggers": [
+ "hplus"
+ ],
+ "regions": {
+ "default": "https://hpluspedia.org/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hs-fulda.de/favicon.ico",
+ "name": "hs-fulda.de",
+ "triggers": [
+ "hs-fulda"
+ ],
+ "regions": {
+ "default": "http://www.hs-fulda.de/?a={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.htmldog.com/favicon-16x16.png",
+ "name": "HTML Dog",
+ "triggers": [
+ "htmldog"
+ ],
+ "regions": {
+ "default": "http://www.htmldog.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.w3.org/2008/site/images/favicon.ico",
+ "name": "Html2Txt",
+ "triggers": [
+ "html2txt"
+ ],
+ "regions": {
+ "default": "https://www.w3.org/services/html2txt?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://html5doctor.com/favicon.ico",
+ "name": "HTML5 Doctor",
+ "triggers": [
+ "html5d"
+ ],
+ "regions": {
+ "default": "http://html5doctor.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://htmlbook.ru/favicon.ico",
+ "name": "htmlbook.ru",
+ "triggers": [
+ "htmlbook"
+ ],
+ "regions": {
+ "default": "http://htmlbook.ru/search/?as_q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http.cat/favicon.png",
+ "name": "HTTP Status Cats",
+ "triggers": [
+ "httpcat",
+ "htcat"
+ ],
+ "regions": {
+ "default": "https://http.cat/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://httpstatuses.com/favicon-2c8f09ecdff4f6b2ee66cc6a3c000019.ico",
+ "name": "HTTP Status Codes",
+ "triggers": [
+ "http"
+ ],
+ "regions": {
+ "default": "https://httpstatuses.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://agora.gg/favicon.ico",
+ "name": "http://agora.gg",
+ "triggers": [
+ "agora"
+ ],
+ "regions": {
+ "default": "http://agora.gg/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.amazon.co.jp/favicon.ico",
+ "name": "http://amazon.co.jp",
+ "triggers": [
+ "aj"
+ ],
+ "regions": {
+ "default": "https://www.amazon.co.jp/s/?tag=duc0c-20&url=search-alias%3Daps&field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bokunoshumi.files.wordpress.com/2017/02/cropped-logo_propio_3-1-01.jpg?w=192",
+ "name": "http://bokunoshumi.wordpress.com",
+ "triggers": [
+ "bns"
+ ],
+ "regions": {
+ "default": "https://bokunoshumi.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "http://checkmystack.com",
+ "triggers": [
+ "checkmystack"
+ ],
+ "regions": {
+ "default": "http://checkmystack.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//dic.academic.ru/images/icon.ico",
+ "name": "http://dic.academic.ru/",
+ "triggers": [
+ "acad"
+ ],
+ "regions": {
+ "default": "http://dic.academic.ru/searchall.php?SWord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dico.isc.cnrs.fr/favicon.ico",
+ "name": "http://dico.isc.cnrs.fr/fr/index_tr.html",
+ "triggers": [
+ "dicoiscfren"
+ ],
+ "regions": {
+ "default": "http://dico.isc.cnrs.fr/dico/tr/chercher_fr?r={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dico.isc.cnrs.fr/favicon.ico",
+ "name": "http://dico.isc.cnrs.fr/fr/index_tr.html",
+ "triggers": [
+ "dicoiscenfr"
+ ],
+ "regions": {
+ "default": "http://dico.isc.cnrs.fr/dico/tr/chercher_en?r={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "http://dict.leo.org",
+ "triggers": [
+ "leopt"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/ptde/index_de.html#/search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dictionary.cambridge.org/external/images/favicon.ico?version=3.1.128",
+ "name": "http://dictionary.cambridge.org",
+ "triggers": [
+ "camd"
+ ],
+ "regions": {
+ "default": "https://dictionary.cambridge.org/search/american-english/direct/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.differencebetween.net/wp-content/uploads/2018/05/icon-250.png",
+ "name": "http://differencebetween.net",
+ "triggers": [
+ "dibe"
+ ],
+ "regions": {
+ "default": "http://www.differencebetween.net/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.discogs.com/images/favicon-96x96.png",
+ "name": "http://discogs.com/",
+ "triggers": [
+ "dis"
+ ],
+ "regions": {
+ "default": "https://www.discogs.com/search/?q={{{term}}}&type=all"
+ }
+ },
+ {
+ "favicon": "https://godot.readthedocs.io/favicon.ico",
+ "name": "http://docs.godotengine.org",
+ "triggers": [
+ "godot"
+ ],
+ "regions": {
+ "default": "https://godot.readthedocs.io/en/latest/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://filmracket.com/wp-content/uploads/2013/02/FILM-RACKET-WEBSITE_favicon1.png",
+ "name": "http://filmracket.com/",
+ "triggers": [
+ "filmracket"
+ ],
+ "regions": {
+ "default": "http://filmracket.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "https://tubestatic.orf.at/mojo/1_3/storyserver//tube/fm4/images/touch-icon-android.png",
+ "name": "http://fm4.orf.at/",
+ "triggers": [
+ "fm4"
+ ],
+ "regions": {
+ "default": "http://fm4.orf.at/search?q={{{term}}}&sort=date_desc&submit.x=0&submit.y=0"
+ }
+ },
+ {
+ "favicon": "http://it-ebooks.info/images/favicon.ico",
+ "name": "http://it-ebooks.info/",
+ "triggers": [
+ "itebooks"
+ ],
+ "regions": {
+ "default": "http://it-ebooks.info/search/?q={{{term}}}&type=title"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/magento/img/favicon.ico?v=ea0e961e7c23",
+ "name": "http://magento.stackexchange.com/",
+ "triggers": [
+ "magsx"
+ ],
+ "regions": {
+ "default": "http://magento.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://myanimelist.cdn-dena.com/images/faviconv5.ico",
+ "name": "http://myanimelist.net/",
+ "triggers": [
+ "mml",
+ "manga"
+ ],
+ "regions": {
+ "default": "http://myanimelist.net/manga.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ncatlab.org/favicon.ico",
+ "name": "http://ncatlab.org/nlab/show/HomePage",
+ "triggers": [
+ "nl"
+ ],
+ "regions": {
+ "default": "https://ncatlab.org/nlab/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nemski-centar.com/image/data/logo_nc.png",
+ "name": "http://nemski-centar.com/",
+ "triggers": [
+ "nemski-centar"
+ ],
+ "regions": {
+ "default": "http://nemski-centar.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://latexvogue.com/files/latexvogue-icon.jpg",
+ "name": "http://nuclearrubber.com/",
+ "triggers": [
+ "nuclearrubber"
+ ],
+ "regions": {
+ "default": "http://nuclearrubber.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onelook.com/favicon.ico",
+ "name": "http://onelook.com/thesaurus/",
+ "triggers": [
+ "otrd"
+ ],
+ "regions": {
+ "default": "http://onelook.com/thesaurus/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ordbok.uib.no/apple-touch-icon.png",
+ "name": "http://ordbok.uib.no/",
+ "triggers": [
+ "bokmålsordboka"
+ ],
+ "regions": {
+ "default": "http://ordbok.uib.no/perl/ordbok.cgi?OPP=+{{{term}}}&ant_bokmaal=5&ant_nynorsk=5&bokmaal=+&ordbok=bokmaal"
+ }
+ },
+ {
+ "favicon": "http://overapi.com/favicon.ico",
+ "name": "http://overapi.com/",
+ "triggers": [
+ "oapi"
+ ],
+ "regions": {
+ "default": "http://overapi.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:;base64,iVBORw0KGgo=",
+ "name": "http://pubs.acs.org/",
+ "triggers": [
+ "acs"
+ ],
+ "regions": {
+ "default": "http://pubs.acs.org/action/doSearch?AllField={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://reck.dk/favicon.ico",
+ "name": "http://reck.dk",
+ "triggers": [
+ "reck"
+ ],
+ "regions": {
+ "default": "http://reck.dk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://scala-search.org/favicon.ico",
+ "name": "http://scala-search.org/",
+ "triggers": [
+ "ssz"
+ ],
+ "regions": {
+ "default": "http://scala-search.org/?q={{{term}}}&m=org.scalaz%3Ascalaz-core_2.11%3A7.1.1"
+ }
+ },
+ {
+ "favicon": "http://scala-search.org/favicon.ico",
+ "name": "http://scala-search.org/",
+ "triggers": [
+ "ssa"
+ ],
+ "regions": {
+ "default": "http://scala-search.org/?q={{{term}}}&m=org.scala-lang%3Ascala-library%3A2.11.7&m=org.scalaz%3Ascalaz-core_2.11%3A7.1.1"
+ }
+ },
+ {
+ "favicon": "http://scala-search.org/favicon.ico",
+ "name": "http://scala-search.org/",
+ "triggers": [
+ "sslib"
+ ],
+ "regions": {
+ "default": "http://scala-search.org/?q={{{term}}}&m=org.scala-lang%3Ascala-library%3A2.11.7"
+ }
+ },
+ {
+ "favicon": "http://scitools.org.uk/static/images/scitools-logo-128x128-3.png",
+ "name": "http://scitools.org.uk/iris/docs/latest/index.html",
+ "triggers": [
+ "iris"
+ ],
+ "regions": {
+ "default": "http://scitools.org.uk/iris/docs/latest/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.seasonvar.ru/images/fav/favicon.ico",
+ "name": "http://seasonvar.ru/",
+ "triggers": [
+ "seasonvar"
+ ],
+ "regions": {
+ "default": "http://seasonvar.ru/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/simpsons/images/6/64/Favicon.ico/revision/latest?cb=20060324190354",
+ "name": "http://simpsons.wikia.com/wiki/",
+ "triggers": [
+ "simpsons"
+ ],
+ "regions": {
+ "default": "http://simpsons.wikia.com/wiki/Special:Search?search= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stardewvalleywiki.com/mediawiki/skins/Vector/stardewimages/favicon.png",
+ "name": "http://stardewvalleywiki.com",
+ "triggers": [
+ "stardew",
+ "sdv",
+ "svw",
+ "stardewvalley"
+ ],
+ "regions": {
+ "default": "http://stardewvalleywiki.com/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/subnautica/images/6/64/Favicon.ico/revision/latest?cb=20141122161538",
+ "name": "http://subnautica.wikia.com",
+ "triggers": [
+ "subnautica"
+ ],
+ "regions": {
+ "default": "http://subnautica.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.killuglyradio.com/favicon.ico",
+ "name": "http://wiki.killuglyradio.com/wiki/Main_Page",
+ "triggers": [
+ "zwj"
+ ],
+ "regions": {
+ "default": "http://wiki.killuglyradio.com/index.php?title=Special%3ASearch&profile=default&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.buienalarm.nl/sites/all/themes/buien/favicon.ico",
+ "name": "http://www.buienalarm.nl/",
+ "triggers": [
+ "buien"
+ ],
+ "regions": {
+ "default": "http://www.buienalarm.nl/location/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.camptocamp.org/favicon-16x16.png",
+ "name": "http://www.camptocamp.org/",
+ "triggers": [
+ "c2cforum"
+ ],
+ "regions": {
+ "default": "http://www.camptocamp.org/documents/search?type=forums&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.chemicalize.org/images/favicon-16x16.png",
+ "name": "http://www.chemicalize.org/",
+ "triggers": [
+ "chemicalize"
+ ],
+ "regions": {
+ "default": "http://www.chemicalize.org/structure/#!mol={{{term}}}&source=fp"
+ }
+ },
+ {
+ "favicon": "http://www.chordie.com/images/chordielogo.ico",
+ "name": "http://www.chordie.com/",
+ "triggers": [
+ "chordie"
+ ],
+ "regions": {
+ "default": "http://www.chordie.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.dummies.com/wp-content/uploads/cropped-favicon1-192x192.png",
+ "name": "http://www.dummies.com/search.html?query=cisc",
+ "triggers": [
+ "dummi"
+ ],
+ "regions": {
+ "default": "http://www.dummies.com/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ecfr.gov/favicon.ico",
+ "name": "http://www.ecfr.gov/cgi-bin/ECFR",
+ "triggers": [
+ "cfr"
+ ],
+ "regions": {
+ "default": "http://www.ecfr.gov/cgi-bin/searchECFR?q1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.geekunivers.com/wp-content/uploads/2017/09/cropped-favicon-192x192.png",
+ "name": "http://www.geekunivers.com",
+ "triggers": [
+ "geeku"
+ ],
+ "regions": {
+ "default": "http://www.geekunivers.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.greek-language.gr/greekLang/greekLang.ico",
+ "name": "http://www.greek-language.gr",
+ "triggers": [
+ "test",
+ "dictgr",
+ "lext"
+ ],
+ "regions": {
+ "default": "http://www.greek-language.gr/greekLang/modern_greek/tools/lexica/triantafyllides/search.html?lq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.greek-language.gr/greekLang/greekLang.ico",
+ "name": "http://www.greek-language.gr",
+ "triggers": [
+ "eldict"
+ ],
+ "regions": {
+ "default": "http://www.greek-language.gr/greekLang/modern_greek/tools/lexica/triantafyllides/search.html?lq=%22{{{term}}}%22"
+ }
+ },
+ {
+ "favicon": "https://www.groenehartscholen.nl/wp-content/themes/scope-main/gfx/favicon.ico",
+ "name": "http://www.groenehartscholen.nl/lyceum/",
+ "triggers": [
+ "ghl"
+ ],
+ "regions": {
+ "default": "http://www.groenehartscholen.nl/lyceum/={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hamdata.com/favicon.ico",
+ "name": "http://www.hamdata.com/getcall.html",
+ "triggers": [
+ "ham"
+ ],
+ "regions": {
+ "default": "http://www.hamdata.com/getcall.html?callsign={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jedisjeux.net/favicon-16x16.png?337451e",
+ "name": "http://www.jedisjeux.net/",
+ "triggers": [
+ "jedis"
+ ],
+ "regions": {
+ "default": "http://www.jedisjeux.net/search_results.php?search={{{term}}}&button_search=Ok"
+ }
+ },
+ {
+ "favicon": "http://www.kdeblog.com/wp-content/uploads/2014/01/favicon.ico",
+ "name": "http://www.kdeblog.com",
+ "triggers": [
+ "kdeblog"
+ ],
+ "regions": {
+ "default": "http://www.kdeblog.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.criticsinc.com/photos/kim-app-icons/favicon.ico",
+ "name": "http://www.kids-in-mind.com",
+ "triggers": [
+ "kidsinmind"
+ ],
+ "regions": {
+ "default": "http://www.kids-in-mind.com/cgi-bin/search/search.pl?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://portal.kobv.de/images/favicon.ico",
+ "name": "http://www.kobv.de/",
+ "triggers": [
+ "kobv"
+ ],
+ "regions": {
+ "default": "http://portal.kobv.de/simpleSearch.do?query= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kuantokusta.pt/favicon.ico",
+ "name": "http://www.kuantokusta.pt/",
+ "triggers": [
+ "kkusta"
+ ],
+ "regions": {
+ "default": "https://www.kuantokusta.pt/search?q= {{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://buscador.lechuza.org/favicon.ico",
+ "name": "http://www.lechuza.org/",
+ "triggers": [
+ "owl"
+ ],
+ "regions": {
+ "default": "http://buscador.lechuza.org/resultados.php?texto={{{term}}}&xx=buscar"
+ }
+ },
+ {
+ "favicon": "http://merriam-webster.com/favicon.png",
+ "name": "http://www.merriam-webster.com/",
+ "triggers": [
+ "m-w"
+ ],
+ "regions": {
+ "default": "http://merriam-webster.com/dictionary/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.merriam-webster.com/favicon.png",
+ "name": "http://www.merriam-webster.com/",
+ "triggers": [
+ "dic",
+ "merriamwebster",
+ "mwd",
+ "mw"
+ ],
+ "regions": {
+ "default": "http://www.merriam-webster.com/dictionary/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.muscleforlife.com/wp-content/themes/mfl-2017/favicon.ico",
+ "name": "http://www.muscleforlife.com/",
+ "triggers": [
+ "mfl"
+ ],
+ "regions": {
+ "default": "http://www.muscleforlife.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.myrecipes.com/img/favicons/favicon-192.png",
+ "name": "http://www.myrecipes.com",
+ "triggers": [
+ "myrec"
+ ],
+ "regions": {
+ "default": "http://www.myrecipes.com/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openstreetmap.org/assets/favicon-16x16-1772a97682f5b3f45c3f98c18f98634808b637a5595026962709fb54af9b9044.png",
+ "name": "http://www.openstreetmap.org/",
+ "triggers": [
+ "ost",
+ "osm"
+ ],
+ "regions": {
+ "default": "https://www.openstreetmap.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.otto-office.com/favicon.ico",
+ "name": "http://www.otto-office.com/",
+ "triggers": [
+ "ottooffice"
+ ],
+ "regions": {
+ "default": "http://www.otto-office.com/de/search/si.obtshop?query[query]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ottobib.com/favicon.gif",
+ "name": "http://www.ottobib.com",
+ "triggers": [
+ "ottobibtex"
+ ],
+ "regions": {
+ "default": "http://www.ottobib.com/isbn/{{{term}}}/bibtex"
+ }
+ },
+ {
+ "favicon": "http://www.ozdic.com/favicon.ico",
+ "name": "http://www.ozdic.com",
+ "triggers": [
+ "ozdic"
+ ],
+ "regions": {
+ "default": "http://www.ozdic.com/collocation-dictionary/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pcguia.pt/wp-content/uploads/2017/04/Icone_PCG-300x300.png",
+ "name": "http://www.pcguia.pt",
+ "triggers": [
+ "pcguia"
+ ],
+ "regions": {
+ "default": "http://www.pcguia.pt/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.greenchu.de/favicon.ico",
+ "name": "http://www.pokewiki.de/",
+ "triggers": [
+ "pwde"
+ ],
+ "regions": {
+ "default": "http://www.pokewiki.de/index.php?search={{{term}}}&title=Spezial%3ASuche&go=Seite"
+ }
+ },
+ {
+ "favicon": "https://www.rapid7.com/includes/img/favicon.ico",
+ "name": "http://www.rapid7.com",
+ "triggers": [
+ "r7"
+ ],
+ "regions": {
+ "default": "https://www.rapid7.com/db/search?utf8=%E2%9C%93&q={{{term}}} &t=a"
+ }
+ },
+ {
+ "favicon": "http://www.skapiec.pl/favicon.ico?2014",
+ "name": "http://www.skapiec.pl/",
+ "triggers": [
+ "skapiec"
+ ],
+ "regions": {
+ "default": "http://www.skapiec.pl/szukaj/w_calym_serwisie/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tvshowsmanager.com/img/fav-64.png",
+ "name": "http://www.tvshowsmanager.com",
+ "triggers": [
+ "tvsm"
+ ],
+ "regions": {
+ "default": "http://www.tvshowsmanager.com/cerca.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d2q6y8ssejv66j.cloudfront.net/vbprofiles-en/favicon.ico",
+ "name": "http://www.vbprofiles.com/",
+ "triggers": [
+ "vbp"
+ ],
+ "regions": {
+ "default": "http://www.vbprofiles.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn1.inspsearchapi.com/webcrawler/1.9.0.647/favicon.ico",
+ "name": "http://www.webcrawler.com/",
+ "triggers": [
+ "webcrawler"
+ ],
+ "regions": {
+ "default": "http://www.webcrawler.com/search/web?fcoid=417&fcop=topnav&fpid=2&aid=3ebe8f19-0a9d-425b-a3ff-9d59e6c12c5e&ridx=2&q={{{term}}}&ql=&ss=t"
+ }
+ },
+ {
+ "favicon": "https://docs.webplatform.org/favicon.ico",
+ "name": "http://www.webplatform.org",
+ "triggers": [
+ "webp"
+ ],
+ "regions": {
+ "default": "https://docs.webplatform.org/w/index.php?search={{{term}}}&fulltext=+&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://coinmarketcap.com/favicon.ico",
+ "name": "https://coinmarketcap.com",
+ "triggers": [
+ "coin"
+ ],
+ "regions": {
+ "default": "https://coinmarketcap.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kernel.readthedocs.io/favicon.ico",
+ "name": "https://kernel.readthedocs.io/en/sphinx-samples/",
+ "triggers": [
+ "rtdlinux"
+ ],
+ "regions": {
+ "default": "https://kernel.readthedocs.io/en/sphinx-samples/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://kubernetes.io/images/favicon.png",
+ "name": "https://kubernetes.io/docs",
+ "triggers": [
+ "kubernetes",
+ "k8s"
+ ],
+ "regions": {
+ "default": "https://kubernetes.io/docs/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lbp.me/ico/favicon.ico",
+ "name": "https://lbp.me/",
+ "triggers": [
+ "lbp"
+ ],
+ "regions": {
+ "default": "https://lbp.me/search/v?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://libraries.io/favicon.ico",
+ "name": "https://libraries.io",
+ "triggers": [
+ "lio",
+ "osl",
+ "fosslib",
+ "libraries"
+ ],
+ "regions": {
+ "default": "https://libraries.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lifpv.com/favicon.ico",
+ "name": "https://lifpv.com",
+ "triggers": [
+ "LIFPV"
+ ],
+ "regions": {
+ "default": "https://lifpv.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ludwig.guru/favicon.ico?v=PYEleBpK21",
+ "name": "https://ludwig.guru/",
+ "triggers": [
+ "lwg"
+ ],
+ "regions": {
+ "default": "https://ludwig.guru/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://radiopaedia.org/favicon.ico",
+ "name": "https://radiopaedia.org/",
+ "triggers": [
+ "radio"
+ ],
+ "regions": {
+ "default": "https://radiopaedia.org/search?utf8=%E2%9C%93&q={{{term}}}&scope=all"
+ }
+ },
+ {
+ "favicon": "https://sr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "https://sr.wikipedia.org/wiki/",
+ "triggers": [
+ "wsr"
+ ],
+ "regions": {
+ "default": "https://sr.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unbubble.eu/favicon.php?size=256",
+ "name": "https://unbubble.eu/",
+ "triggers": [
+ "unb",
+ "unbubble"
+ ],
+ "regions": {
+ "default": "https://unbubble.eu/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://map.what3words.com/favicon.ico",
+ "name": "https://what3words.com/",
+ "triggers": [
+ "w3w"
+ ],
+ "regions": {
+ "default": "https://map.what3words.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//media.bisafans.de/ee55606/_images/design/favicon.png",
+ "name": "https://www.bisafans.de/",
+ "triggers": [
+ "bisa"
+ ],
+ "regions": {
+ "default": "https://www.bisafans.de/suchbisa.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.change.org/favicons/favicon-32x32.png",
+ "name": "https://www.change.org",
+ "triggers": [
+ "change"
+ ],
+ "regions": {
+ "default": "https://www.change.org/search?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://www.kth.se/img/v/8.19.3/icon/favicon.ico",
+ "name": "https://www.kth.se/places/",
+ "triggers": [
+ "kthplaces"
+ ],
+ "regions": {
+ "default": "https://www.kth.se/places/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.maedler.de/favicon.ico",
+ "name": "https://www.maedler.de/",
+ "triggers": [
+ "maedler"
+ ],
+ "regions": {
+ "default": "https://www.maedler.de/ShopSearch?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.mediapart.fr/favicon/favicon.ico?v=2",
+ "name": "https://www.mediapart.fr/",
+ "triggers": [
+ "mdp"
+ ],
+ "regions": {
+ "default": "https://www.mediapart.fr/search?search_word={{{term}}}&op=ok"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "https://www.ncbi.nlm.nih.gov/mesh",
+ "triggers": [
+ "mesh"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/mesh/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openthesaurus.de/static/images/favicon_openthesaurus.ico",
+ "name": "https://www.openthesaurus.de",
+ "triggers": [
+ "deopenthesaurus"
+ ],
+ "regions": {
+ "default": "https://www.openthesaurus.de/synonyme/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.qconcursos.com/assets-v6/favicon/favicon-69746e2dbe8f90f7e21fb4e44e915d9efbf2e51dd2f1e5baa9a5bec19225f74b.ico",
+ "name": "https://www.qconcursos.com",
+ "triggers": [
+ "qc"
+ ],
+ "regions": {
+ "default": "https://www.qconcursos.com/questoes-de-concursos/search?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.youpak.com/images/favicon.ico?ver=1.2",
+ "name": "https://www.youpak.com/",
+ "triggers": [
+ "youpak"
+ ],
+ "regions": {
+ "default": "https://www.youpak.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.zone-telechargement.ws/templates/zone/images/favicon.ico",
+ "name": "https://www.zone-telechargement.ws/home.html",
+ "triggers": [
+ "zt"
+ ],
+ "regions": {
+ "default": "https://www.zone-telechargement.ws/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//consumer-res.huawei.com/etc/designs/huawei-cbg-site/favicon/favicon.ico",
+ "name": "Huawei",
+ "triggers": [
+ "huawei"
+ ],
+ "regions": {
+ "default": "http://consumer.huawei.com/en/search/index.htm?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hubii.com/wp-content/themes/frontendgmbh/favicon.ico",
+ "name": "hubii",
+ "triggers": [
+ "hubii"
+ ],
+ "regions": {
+ "default": "http://hubii.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hubski.com/images/favicon.ico",
+ "name": "Hubski",
+ "triggers": [
+ "hubski"
+ ],
+ "regions": {
+ "default": "https://hubski.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://academy.hubspot.com/hubfs/sprocket-web-color-1.png?t=1530648428282",
+ "name": "HubSpot",
+ "triggers": [
+ "hubspot"
+ ],
+ "regions": {
+ "default": "https://knowledge.hubspot.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://huffingtonpost.search.aol.co.uk/favicon.ico",
+ "name": "Huffington Post",
+ "triggers": [
+ "huffpost"
+ ],
+ "regions": {
+ "default": "http://huffingtonpost.search.aol.co.uk/net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.m.huffpost.com/assets/favicon-2020e123c064086aad150fe909c53771f862d7c76cd62f6146e81d533845fd7d.ico",
+ "name": "Huffington Post",
+ "triggers": [
+ "huffingtonpost"
+ ],
+ "regions": {
+ "default": "http://www.huffingtonpost.com/searchG/?cx=partner-pub-3264687723376607%3Atlvacw-gkue&cof=FORID%3A11&ie=ISO-8859-1&q={{{term}}}&sa.x=0&sa.y=0&sa=Search#1392"
+ }
+ },
+ {
+ "favicon": "http://hugelol.com/favicon.ico",
+ "name": "Hugelol",
+ "triggers": [
+ "hl"
+ ],
+ "regions": {
+ "default": "http://hugelol.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.genenames.org/sites/genenames.org/files/genenames_favicon_0.ico",
+ "name": "HUGO Gene Nomenclature Committee (HGNC)",
+ "triggers": [
+ "hgnc"
+ ],
+ "regions": {
+ "default": "http://www.genenames.org/cgi-bin/quick_search.pl?submit=Submit&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hulbee.com/favicon.ico",
+ "name": "hulbee",
+ "triggers": [
+ "hulbee"
+ ],
+ "regions": {
+ "default": "https://hulbee.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://humblebundle-a.akamaihd.net/static/hashed/47e474eed38083df699b7dfd8d29d575e3398f1e.ico",
+ "name": "Humble Bundle Store",
+ "triggers": [
+ "hum"
+ ],
+ "regions": {
+ "default": "https://www.humblebundle.com/store/search?sort=bestselling&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://humblebundle-a.akamaihd.net/static/hashed/47e474eed38083df699b7dfd8d29d575e3398f1e.ico",
+ "name": "Humble Store",
+ "triggers": [
+ "humble"
+ ],
+ "regions": {
+ "default": "https://www.humblebundle.com/store/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hummingbird.me/favicon.ico",
+ "name": "Hummingbird",
+ "triggers": [
+ "hb",
+ "hummingbird"
+ ],
+ "regions": {
+ "default": "http://hummingbird.me/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/hunterxhunter/images/6/64/Favicon.ico/revision/latest?cb=20180131112610",
+ "name": "Hunterpedia",
+ "triggers": [
+ "hxh"
+ ],
+ "regions": {
+ "default": "http://hunterxhunter.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bgp.he.net/favicon.ico",
+ "name": "Hurricane Electrics Internet Services",
+ "triggers": [
+ "bgp"
+ ],
+ "regions": {
+ "default": "http://bgp.he.net/search?search%5Bsearch%5D={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "http://huskermax.com/favicon.ico",
+ "name": "huskermax",
+ "triggers": [
+ "huskermax"
+ ],
+ "regions": {
+ "default": "http://huskermax.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.huuto.net/15.6/favicon-16x16.png",
+ "name": "Huuto",
+ "triggers": [
+ "huuto"
+ ],
+ "regions": {
+ "default": "http://www.huuto.net/hakutulos?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hv-store.de/templates/Evo/themes/base/images/favicon.ico",
+ "name": "HV-Store",
+ "triggers": [
+ "hvstore"
+ ],
+ "regions": {
+ "default": "https://www.hv-store.de/navi.php?qs={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://hvg.hu/Content/redesign/i/favicon.ico",
+ "name": "HVG.hu",
+ "triggers": [
+ "hvg"
+ ],
+ "regions": {
+ "default": "http://hvg.hu/kereses?term={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://wiki.hybris.com/s/en_GB/7401/e170a3915839da2821803843481d4419ff03b453/71/_/favicon.ico",
+ "name": "Hybris Wiki",
+ "triggers": [
+ "wikihybris"
+ ],
+ "regions": {
+ "default": "https://wiki.hybris.com/dosearchsite.action?queryString={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://cdn-01.hymn.se/wp-content/uploads/2015/04/favicon.ico",
+ "name": "HYMN",
+ "triggers": [
+ "hymnse",
+ "hymn"
+ ],
+ "regions": {
+ "default": "http://hymn.se/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hymnary.org/sites/hymnary.org/themes/newhymn/favicon.ico",
+ "name": "Hymnary",
+ "triggers": [
+ "hymnary"
+ ],
+ "regions": {
+ "default": "http://www.hymnary.org/all?qu={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hyndex.com/skins/user/rwd_shoper_4/images/favicon.png",
+ "name": "Hyndex",
+ "triggers": [
+ "hyn"
+ ],
+ "regions": {
+ "default": "http://hyndex.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/neptunia/images/6/64/Favicon.ico/revision/latest?cb=20150222034837",
+ "name": "Hyperdimension Neptunia Wiki",
+ "triggers": [
+ "nepu"
+ ],
+ "regions": {
+ "default": "http://neptunia.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.squarespace.com/static/571d152737013bf05edcb09b/t/571d2358d51cd4f1ca26c238/favicon.ico",
+ "name": "HyperNinjas",
+ "triggers": [
+ "x",
+ "hyp"
+ ],
+ "regions": {
+ "default": "http://www.hyperninjas.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.squarespace.com/static/571d152737013bf05edcb09b/t/571d2358d51cd4f1ca26c238/favicon.ico",
+ "name": "HyperNinjas",
+ "triggers": [
+ "hyperninjas"
+ ],
+ "regions": {
+ "default": "http://hyperninjas.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hyperpick.com/favicon.ico",
+ "name": "hyperpick",
+ "triggers": [
+ "hyperpick"
+ ],
+ "regions": {
+ "default": "http://hyperpick.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://5e.d20srd.org/favicon.ico",
+ "name": "Hypertext D20 SRD (5th Edition)",
+ "triggers": [
+ "srd5"
+ ],
+ "regions": {
+ "default": "http://5e.d20srd.org/search.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hypestat.com/images/favicon.ico",
+ "name": "hypestat",
+ "triggers": [
+ "hypestat"
+ ],
+ "regions": {
+ "default": "http://www.{{{term}}}.hypestat.com/"
+ }
+ },
+ {
+ "favicon": "https://www.hyphenation24.com/favicon.ico",
+ "name": "hyphenation24",
+ "triggers": [
+ "hyphen"
+ ],
+ "regions": {
+ "default": "https://www.hyphenation24.com/word/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://hypixel.net/favicon-16x16.png",
+ "name": "Hypixel",
+ "triggers": [
+ "hypixel"
+ ],
+ "regions": {
+ "default": "https://hypixel.net/player/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://via.hypothes.is/favicon.ico",
+ "name": "Hypothes.is Via",
+ "triggers": [
+ "hy"
+ ],
+ "regions": {
+ "default": "https://via.hypothes.is/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hyves.nl/favicon.ico",
+ "name": "Hyves",
+ "triggers": [
+ "hyves"
+ ],
+ "regions": {
+ "default": "http://www.hyves.nl/search/hyver/?searchterms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ilovedrumnbass.com/favicon.ico",
+ "name": "I Love Drum & Bass",
+ "triggers": [
+ "ildnb"
+ ],
+ "regions": {
+ "default": "http://www.ilovedrumnbass.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ilovefreesoftware.com/favicon.ico",
+ "name": "I Love Free Software",
+ "triggers": [
+ "ilovefreesoftware"
+ ],
+ "regions": {
+ "default": "http://www.ilovefreesoftware.com/gsearch?ie=UTF-8&q={{{term}}}&ss=1633j526083j9&cof=FORID%3a10&cx=008701510501807727669%3aabbyr0bpxi0&siteurl=www.ilovefreesoftware.com%2f"
+ }
+ },
+ {
+ "favicon": "http://www.iwoot.com/favicon.ico?v=iwootinten8.1439.275",
+ "name": "I Want One Of Those",
+ "triggers": [
+ "iwoot"
+ ],
+ "regions": {
+ "default": "http://www.iwoot.com/elysium.search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.i-comparateur.com/favicon.ico",
+ "name": "i-Comparateur",
+ "triggers": [
+ "icomp"
+ ],
+ "regions": {
+ "default": "http://www.i-comparateur.com/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tracking.i-parcel.com/Images/favicon.png",
+ "name": "i-parcel Tracking",
+ "triggers": [
+ "iparcel"
+ ],
+ "regions": {
+ "default": "https://tracking.i-parcel.com/secure/track.aspx?track={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vinfo.com/wp-content/uploads/2016/03/cropped-Vinfo_512_FINAL-1-1-192x192.png",
+ "name": "I2P Search",
+ "triggers": [
+ "i2p"
+ ],
+ "regions": {
+ "default": "http://www.eepsites.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iacr.org/images/icons/icon-192.png",
+ "name": "IACR",
+ "triggers": [
+ "iacr"
+ ],
+ "regions": {
+ "default": "https://www.iacr.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iappmag.de/wp-content/themes/app-magazine/images/favicon.ico",
+ "name": "iAppMag",
+ "triggers": [
+ "iappmag"
+ ],
+ "regions": {
+ "default": "http://www.iappmag.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://admin.ibhejo.com/skin/frontend/templatemela/MAG100201/favicon.ico",
+ "name": "iBhejo",
+ "triggers": [
+ "ibhejo"
+ ],
+ "regions": {
+ "default": "http://www.ibhejo.com/ssearch.php?simple_search=Y&mode=search&search_substring={{{term}}}&sort_by=high"
+ }
+ },
+ {
+ "favicon": "http://www.ibiblio.org/favicon.ico",
+ "name": "ibiblio",
+ "triggers": [
+ "ibiblio"
+ ],
+ "regions": {
+ "default": "http://www.ibiblio.org/gsearch/?cx=006345117986368989313%3Ar2fkn4tcz5i&cof=FORID%3A11&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ibm.com/favicon.ico",
+ "name": "IBM",
+ "triggers": [
+ "ibm"
+ ],
+ "regions": {
+ "default": "https://www.ibm.com/Search/?q={{{term}}}&v=16&en=utf&lang=en&cc=us&Search=Search"
+ }
+ },
+ {
+ "favicon": "https://www.ibm.com/favicon.ico",
+ "name": "IBM DB2 for z/OS doc search",
+ "triggers": [
+ "db2z"
+ ],
+ "regions": {
+ "default": "https://www.ibm.com/support/knowledgecenter/search/{{{term}}}?scope=SSEPEK_11.0.0"
+ }
+ },
+ {
+ "favicon": "https://www.ica.se/Templates/General/Views/Images/favicon/favicon-16x16.png",
+ "name": "ICA - Recept",
+ "triggers": [
+ "icarecept"
+ ],
+ "regions": {
+ "default": "https://www.ica.se/receptsok/#:search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.icann.org/favicon.ico",
+ "name": "ICANN",
+ "triggers": [
+ "icann"
+ ],
+ "regions": {
+ "default": "https://www.icann.org/search/#!/?searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://icannwiki.com/images/c/ca/ICANNWikiLogo-135px.png",
+ "name": "ICANNWiki",
+ "triggers": [
+ "icannwiki"
+ ],
+ "regions": {
+ "default": "https://icannwiki.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kidicaruswiki.org/skins/common/images/favicon.ico",
+ "name": "Icaruspedia",
+ "triggers": [
+ "icaruspedia"
+ ],
+ "regions": {
+ "default": "http://www.kidicaruswiki.org/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.icd10data.com/images/icd10data_ico.png",
+ "name": "ICD10Data.com",
+ "triggers": [
+ "icd10"
+ ],
+ "regions": {
+ "default": "http://www.icd10data.com/Search.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.icd9data.com/favicon.ico",
+ "name": "ICD9Data.com",
+ "triggers": [
+ "icd9"
+ ],
+ "regions": {
+ "default": "http://www.icd9data.com/Search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0287/1070/t/4/assets/favicon.png?7800641898756222938",
+ "name": "Ice Maker Parts Shop",
+ "triggers": [
+ "imps"
+ ],
+ "regions": {
+ "default": "http://icemakerpartsshop.com/search?x=0&y=0&q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.icecast.org/favicon.ico",
+ "name": "Icecast Directory",
+ "triggers": [
+ "icecast"
+ ],
+ "regions": {
+ "default": "http://dir.xiph.org/search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.icefilms.info/favicon.ico",
+ "name": "Icefilms",
+ "triggers": [
+ "icefilms"
+ ],
+ "regions": {
+ "default": "https://www.icefilms.info/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.icheckmovies.com/favicon.ico",
+ "name": "iCheckMovies",
+ "triggers": [
+ "icm",
+ "icheckmovies"
+ ],
+ "regions": {
+ "default": "http://www.icheckmovies.com/search/movies/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://icobench.com/favicon.ico",
+ "name": "ICObench",
+ "triggers": [
+ "ico"
+ ],
+ "regions": {
+ "default": "https://icobench.com/icos?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iconarchive.com/favicon-196x196.png",
+ "name": "IconArchive",
+ "triggers": [
+ "iconarchive"
+ ],
+ "regions": {
+ "default": "http://www.iconarchive.com/tag/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iconarchive.com/favicon-196x196.png",
+ "name": "IconArchive (Commercial Free)",
+ "triggers": [
+ "iconarchivecc"
+ ],
+ "regions": {
+ "default": "http://www.iconarchive.com/search?q={{{term}}}&license=commercialfree"
+ }
+ },
+ {
+ "favicon": "https://cdn0.iconfinder.com/static/img/favicons/favicon-16x16.png?65f75976b2",
+ "name": "IconFinder",
+ "triggers": [
+ "iconfinder",
+ "icon",
+ "icons"
+ ],
+ "regions": {
+ "default": "https://www.iconfinder.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maxst.icons8.com/favicon.ico",
+ "name": "Icons8",
+ "triggers": [
+ "icons8"
+ ],
+ "regions": {
+ "default": "https://icons8.com/web-app/for/all/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.icstation.com/favicon.ico",
+ "name": "icstation.com",
+ "triggers": [
+ "icstation"
+ ],
+ "regions": {
+ "default": "http://www.icstation.com/advanced_search_result.php?keywords={{{term}}}&search_in_description=1"
+ }
+ },
+ {
+ "favicon": "https://iculture.textopus.nl/wp-content/uploads/2015/10/cropped-iTunesArtwork@2x.ico",
+ "name": "iCulture",
+ "triggers": [
+ "icultr"
+ ],
+ "regions": {
+ "default": "http://www.iculture.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.idealo.com/ipc/static/favicon.ico",
+ "name": "Idealo",
+ "triggers": [
+ "id",
+ "ide",
+ "idealode",
+ "idealo"
+ ],
+ "regions": {
+ "default": "http://www.idealo.de/preisvergleich/MainSearchProductCategory.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.idealo.com/ipc/static/favicon.ico",
+ "name": "Idealo France",
+ "triggers": [
+ "idfr"
+ ],
+ "regions": {
+ "default": "https://www.idealo.fr/prechcat.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.idealworld.tv/gb/common/images/core/icons/favicon.ico",
+ "name": "IdealWorld.tv",
+ "triggers": [
+ "ideal"
+ ],
+ "regions": {
+ "default": "http://www.idealworld.tv/search/{{{term}}}?fh_location=//IdealWorld/en_GB/$s=edbebb&gs=edbebb"
+ }
+ },
+ {
+ "favicon": "https://identi.ca/favicon.ico",
+ "name": "Identi.ca",
+ "triggers": [
+ "identica"
+ ],
+ "regions": {
+ "default": "https://identi.ca/search/people?q={{{term}}}&search=Search"
+ }
+ },
+ {
+ "favicon": "http://www.identifont.com/favicon.ico",
+ "name": "Identifont",
+ "triggers": [
+ "font"
+ ],
+ "regions": {
+ "default": "http://www.identifont.com/find?font={{{term}}}&similar=cfbfefafhgjfb"
+ }
+ },
+ {
+ "favicon": "http://www.aulete.com.br/favicon.ico",
+ "name": "iDicionário Aulete",
+ "triggers": [
+ "aulete"
+ ],
+ "regions": {
+ "default": "http://www.aulete.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "Idioms The Free Dictionary",
+ "triggers": [
+ "idiom",
+ "tfdidioms"
+ ],
+ "regions": {
+ "default": "https://idioms.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.idope.se/favicon.ico",
+ "name": "iDope",
+ "triggers": [
+ "idope"
+ ],
+ "regions": {
+ "default": "https://www.idope.se/torrent/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://spectrum.ieee.org/favicon.png",
+ "name": "IEEE spectrum",
+ "triggers": [
+ "ieees"
+ ],
+ "regions": {
+ "default": "http://spectrum.ieee.org/searchContent?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ieeexplore.ieee.org/favicon.ico",
+ "name": "IEEE Xplore",
+ "triggers": [
+ "ieee"
+ ],
+ "regions": {
+ "default": "https://ieeexplore.ieee.org/search/searchresult.jsp?newsearch=true&queryText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iens.nl/favicon.ico",
+ "name": "IENS",
+ "triggers": [
+ "iens"
+ ],
+ "regions": {
+ "default": "http://www.iens.nl/restaurant?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tools.ietf.org/favicon.ico",
+ "name": "IETF RFC",
+ "triggers": [
+ "rfc"
+ ],
+ "regions": {
+ "default": "https://tools.ietf.org/html/rfc{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iex.nl/app_themes/default/images/tiles/android-icon-192x192.png",
+ "name": "IEX",
+ "triggers": [
+ "iex"
+ ],
+ "regions": {
+ "default": "https://www.iex.nl/Zoeken/Default.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1ulmmr4d4i8j4.cloudfront.net/static/icons/ifixit/favicon-16x16.png",
+ "name": "iFixit",
+ "triggers": [
+ "ifixit"
+ ],
+ "regions": {
+ "default": "https://www.ifixit.com/search?x=0&y=0&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ifttt.com/favicon-coast.png",
+ "name": "IFTTT",
+ "triggers": [
+ "ifttt"
+ ],
+ "regions": {
+ "default": "https://ifttt.com/search/query/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.igdb.com/favicon-128.png",
+ "name": "IGDB - Internet Game Database",
+ "triggers": [
+ "igdb"
+ ],
+ "regions": {
+ "default": "https://www.igdb.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://igg-games.com/wp-content/themes/igggamescom/favicon.ico",
+ "name": "IGG-Games",
+ "triggers": [
+ "igg"
+ ],
+ "regions": {
+ "default": "http://igg-games.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ign.com/favicon.ico",
+ "name": "IGN",
+ "triggers": [
+ "ign"
+ ],
+ "regions": {
+ "default": "http://www.ign.com/search/product?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.igorkromin.net/favicon.ico",
+ "name": "Igor's Blog",
+ "triggers": [
+ "igorkromin.net"
+ ],
+ "regions": {
+ "default": "https://www.igorkromin.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://igra-apple.ru/favicon.ico",
+ "name": "igra-apple",
+ "triggers": [
+ "igra"
+ ],
+ "regions": {
+ "default": "http://igra-apple.ru/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iheart.com/apple-touch-icon.40395b8a92866d7206175b320b251cd3.png",
+ "name": "iHeartRadio",
+ "triggers": [
+ "iheart"
+ ],
+ "regions": {
+ "default": "https://www.iheart.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iherb.com/favicon.ico",
+ "name": "iHerb",
+ "triggers": [
+ "iherb"
+ ],
+ "regions": {
+ "default": "https://iherb.com/search?kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.globalspec.com/favicon.ico",
+ "name": "IHS Engineering360",
+ "triggers": [
+ "engineering360"
+ ],
+ "regions": {
+ "default": "http://www.globalspec.com/search/all?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://library.iiitd.edu.in/opac-tmpl/bootstrap/images/favicon.ico",
+ "name": "IIITD library",
+ "triggers": [
+ "libiiitd"
+ ],
+ "regions": {
+ "default": "http://library.iiitd.edu.in/cgi-bin/koha/opac-search.pl?idx=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea",
+ "triggers": [
+ "ikea"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/us/en/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea (Italia)",
+ "triggers": [
+ "ikeait"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/it/it/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "IKEA Australia",
+ "triggers": [
+ "ikeaau"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/au/en/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea Belgium",
+ "triggers": [
+ "ikeabe"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/be/nl/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea Canada",
+ "triggers": [
+ "ikeaca"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/ca/en/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea FR",
+ "triggers": [
+ "ikeafr"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/fr/fr/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea Germany",
+ "triggers": [
+ "ikeade"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/de/de/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea Ireland",
+ "triggers": [
+ "ikeaie"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/ie/en/search/?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "IKEA Nederland",
+ "triggers": [
+ "ikeanl"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/nl/nl/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ikea.com/ext/ikeagateway/statics/android-chrome-48x48.png",
+ "name": "Ikea Spain",
+ "triggers": [
+ "ikeaes"
+ ],
+ "regions": {
+ "default": "http://www.ikea.com/es/es/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kantaro.ikso.net/_media/favicon.ico",
+ "name": "Ikso Kantaro",
+ "triggers": [
+ "ikso"
+ ],
+ "regions": {
+ "default": "http://kantaro.ikso.net/?do=search&id={{{term}}}&fulltext=Serĉo"
+ }
+ },
+ {
+ "favicon": "https://st.ilfattoquotidiano.it/wp-content/themes/ifq/assets/icons/touch_192.png",
+ "name": "Il Fatto Quotidiano",
+ "triggers": [
+ "ilfatto"
+ ],
+ "regions": {
+ "default": "http://www.ilfattoquotidiano.it/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.papersera.net/favicon.ico",
+ "name": "Il Forum del Papersera",
+ "triggers": [
+ "papersera"
+ ],
+ "regions": {
+ "default": "http://www.papersera.net/cgi-bin/yabb/YaBB.cgi{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ilmessaggero.it/favicon.ico",
+ "name": "Il Messaggero",
+ "triggers": [
+ "messaggero"
+ ],
+ "regions": {
+ "default": "http://www.ilmessaggero.it/?p=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ilpost.it/wp-content/uploads/2017/09/cropped-ilpost-site-icon-192x192.png",
+ "name": "Il Post",
+ "triggers": [
+ "ilpost"
+ ],
+ "regions": {
+ "default": "http://www.ilpost.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ricerca24.ilsole24ore.com/tpl2015/ico/favicon-16x16.png",
+ "name": "Il Sole 24 Ore",
+ "triggers": [
+ "ilsole24ore"
+ ],
+ "regions": {
+ "default": "http://www.ricerca24.ilsole24ore.com/fc?keyWords={{{term}}}&submit=+&header-search=keyWords&cmd=static&moneyPath=http://finanza-mercati.ilsole24ore.com&chId=30&path=/search/search_engine.jsp&field=Titolo|Testo&orderBy=score+desc"
+ }
+ },
+ {
+ "favicon": "//iguides.illinoisstate.edu/favIcon/favicon.ico",
+ "name": "Illinois State University",
+ "triggers": [
+ "ilstu"
+ ],
+ "regions": {
+ "default": "http://search.illinoisstate.edu/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://illumos.org/s/en_GB/3129/3/_/images/logo/confluence_16_white.png",
+ "name": "illumos man",
+ "triggers": [
+ "illumos"
+ ],
+ "regions": {
+ "default": "https://illumos.org/man/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ilmainensanakirja.fi/icon_fi.png",
+ "name": "Ilmainen Sanakirja",
+ "triggers": [
+ "is"
+ ],
+ "regions": {
+ "default": "http://ilmainensanakirja.fi/sanakirja/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "http://ilmatieteenlaitos.fi/fmi-www-theme/images/favicon.ico",
+ "name": "Ilmatieteen Laitos",
+ "triggers": [
+ "fmi"
+ ],
+ "regions": {
+ "default": "http://ilmatieteenlaitos.fi/saa/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ilmeteo.it/img/icon-256.png",
+ "name": "ilmeteo.it",
+ "triggers": [
+ "ilm"
+ ],
+ "regions": {
+ "default": "http://www.ilmeteo.it/meteo/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ilounge.com/favicon.ico",
+ "name": "iLounge",
+ "triggers": [
+ "ilounge"
+ ],
+ "regions": {
+ "default": "http://www.ilounge.com/index.php/search/results/search&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://iltasanomat.fi/assets/images/platform-icons/is_192x192.28f1470b9a86930e.png",
+ "name": "Ilta-Sanomat",
+ "triggers": [
+ "iltasanomat"
+ ],
+ "regions": {
+ "default": "http://iltasanomat.fi/haku/?search-term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iltapulu.fi/favicon.ico",
+ "name": "Iltapulu",
+ "triggers": [
+ "iltapulu"
+ ],
+ "regions": {
+ "default": "http://www.iltapulu.fi/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://imageshack.us/favicon.ico",
+ "name": "Image Shack",
+ "triggers": [
+ "imageshack"
+ ],
+ "regions": {
+ "default": "https://imageshack.us/photos/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.imagely.com/wp-content/uploads/2016/02/cropped-favicon-circle-250x250.png",
+ "name": "Imagely",
+ "triggers": [
+ "imagely"
+ ],
+ "regions": {
+ "default": "https://www.imagely.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://image-net.org/favicon.png",
+ "name": "ImageNet",
+ "triggers": [
+ "imagenet"
+ ],
+ "regions": {
+ "default": "http://www.image-net.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://images.math.cnrs.fr/squelettes/favicon.ico",
+ "name": "Images des mathématiques",
+ "triggers": [
+ "imaths"
+ ],
+ "regions": {
+ "default": "http://images.math.cnrs.fr/spip.php?page=recherche&page=recherche&recherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.imaging-resource.com/favicon.ico",
+ "name": "imaging-resource.com",
+ "triggers": [
+ "ires"
+ ],
+ "regions": {
+ "default": "http://www.imaging-resource.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.imbiomed.com.mx/favicon.ico",
+ "name": "imbiomed",
+ "triggers": [
+ "imb"
+ ],
+ "regions": {
+ "default": "http://www.imbiomed.com.mx/1/1/articulos.php?method=searchKeyword&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/imdb/images/desktop-favicon-2165806970._CB499603838_.ico",
+ "name": "IMDb",
+ "triggers": [
+ "imd"
+ ],
+ "regions": {
+ "default": "https://www.imdb.com/find?q={{{term}}}+&s=all"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/imdb/images/desktop-favicon-2165806970._CB499603838_.ico",
+ "name": "IMDB",
+ "triggers": [
+ "imdb",
+ "imdbm"
+ ],
+ "regions": {
+ "default": "https://www.imdb.com/find?s=all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/imdb/images/desktop-favicon-2165806970._CB499603838_.ico",
+ "name": "IMDb (Internet Movie Database)",
+ "triggers": [
+ "imdba"
+ ],
+ "regions": {
+ "default": "https://www.imdb.com/find?ref_=nv_sr_fn&q={{{term}}}&s=nm"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/imdb/images/desktop-favicon-2165806970._CB499603838_.ico",
+ "name": "IMDb Keywords",
+ "triggers": [
+ "imdbk"
+ ],
+ "regions": {
+ "default": "https://www.imdb.com/find?s=kw&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/IMDbPro/images/favicon-689397331._CB499248800_.ico",
+ "name": "IMDB pro",
+ "triggers": [
+ "imdbp"
+ ],
+ "regions": {
+ "default": "https://pro-labs.imdb.com/find?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://m.media-amazon.com/images/G/01/imdb/images/desktop-favicon-2165806970._CB499603838_.ico",
+ "name": "IMDB Showtimes",
+ "triggers": [
+ "imdbs"
+ ],
+ "regions": {
+ "default": "https://imdb.com/showtimes/US/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://x.myspacecdn.com/new/common/images/favicons/favicon.png",
+ "name": "Imeem",
+ "triggers": [
+ "imeem"
+ ],
+ "regions": {
+ "default": "https://www.myspace.com/music/tag/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://imgops.com/favicon.ico",
+ "name": "ImgOps",
+ "triggers": [
+ "imgops",
+ "iops"
+ ],
+ "regions": {
+ "default": "https://imgops.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.icdn.ru/favicon.ico",
+ "name": "iMGSRC.RU",
+ "triggers": [
+ "imgsrc"
+ ],
+ "regions": {
+ "default": "http://imgsrc.ru/main/search.php?str={{{term}}}&cat= "
+ }
+ },
+ {
+ "favicon": "https://s.imgur.com/images/favicon-16x16.png",
+ "name": "Imgur",
+ "triggers": [
+ "imgur"
+ ],
+ "regions": {
+ "default": "https://imgur.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.imgur.com/images/favicon-16x16.png",
+ "name": "Imgur — gifs",
+ "triggers": [
+ "igif"
+ ],
+ "regions": {
+ "default": "https://imgur.com/search/score?q=ext%3Agif+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.imojado.org/favicon.ico",
+ "name": "iMojado",
+ "triggers": [
+ "imojado"
+ ],
+ "regions": {
+ "default": "https://www.imojado.org/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.imore.com/favicon.ico",
+ "name": "iMore",
+ "triggers": [
+ "imore"
+ ],
+ "regions": {
+ "default": "http://www.imore.com/search/{{{term}}}?query=jfbjaabfacfg"
+ }
+ },
+ {
+ "favicon": "https://www.impericon.com/skin/frontend/icmaa-responsive/impericon/images/favicon_20140703.ico",
+ "name": "Impericon(de)",
+ "triggers": [
+ "impericonde"
+ ],
+ "regions": {
+ "default": "http://www.impericon.com/de/advancedsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.impericon.com/skin/frontend/icmaa-responsive/impericon/images/favicon_20140703.ico",
+ "name": "Impericon(uk)",
+ "triggers": [
+ "impericonuk"
+ ],
+ "regions": {
+ "default": "http://www.impericon.com/uk/advancedsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ambition.dk/wp-content/uploads/2017/05/favicons.png",
+ "name": "impersonal me",
+ "triggers": [
+ "imp"
+ ],
+ "regions": {
+ "default": "http://www.impersonal.me/#!q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://implyingrigged.info/favicon.ico",
+ "name": "Implyingrigged",
+ "triggers": [
+ "4cc"
+ ],
+ "regions": {
+ "default": "http://implyingrigged.info/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://imslp.org/favicon.ico",
+ "name": "IMSLP",
+ "triggers": [
+ "imslp"
+ ],
+ "regions": {
+ "default": "http://imslp.org/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://imslp.org/favicon.ico",
+ "name": "IMSLP (Petrucci Music Library)",
+ "triggers": [
+ "score"
+ ],
+ "regions": {
+ "default": "http://imslp.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://inci.sozlukspot.com/rs/img/favicon.png",
+ "name": "incisozluk",
+ "triggers": [
+ "inci"
+ ],
+ "regions": {
+ "default": "http://inci.sozlukspot.com/w/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://indeaparis.com/templates/indeaparis/favicon.ico",
+ "name": "Inde à Paris",
+ "triggers": [
+ "iap"
+ ],
+ "regions": {
+ "default": "http://indeaparis.com/component/finder/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.indeed.com/favicon.ico",
+ "name": "Indeed",
+ "triggers": [
+ "jobs",
+ "indeed"
+ ],
+ "regions": {
+ "default": "http://www.indeed.com/jobs?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.indeed.ca/favicon.ico",
+ "name": "Indeed Canada",
+ "triggers": [
+ "jobsca"
+ ],
+ "regions": {
+ "default": "http://www.indeed.ca/jobs?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://index.hu/assets/images/favicons/favicon.ico",
+ "name": "Index",
+ "triggers": [
+ "dex"
+ ],
+ "regions": {
+ "default": "http://index.hu/24ora/?word=1&pepe=1&tol=1999-01-01&ig=2016-01-18&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.indiabookstore.net/favicon.ico",
+ "name": "IndiaBookStore",
+ "triggers": [
+ "indiabookstore"
+ ],
+ "regions": {
+ "default": "https://www.indiabookstore.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dir.indiamart.com/favicon.ico",
+ "name": "IndiaMART",
+ "triggers": [
+ "indiamart"
+ ],
+ "regions": {
+ "default": "http://dir.indiamart.com/cgi/catprdsearch.mp?ss={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://indiankanoon.org/favicon.ico",
+ "name": "Indian Kanoon",
+ "triggers": [
+ "ikanoon",
+ "indiankanoon"
+ ],
+ "regions": {
+ "default": "https://indiankanoon.org/search/?formInput={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://indieweb.org/favicon.ico",
+ "name": "Indie Web Camp",
+ "triggers": [
+ "indieweb"
+ ],
+ "regions": {
+ "default": "https://indieweb.org/wiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.indiedb.com/favicon-192x192.png",
+ "name": "IndieDB",
+ "triggers": [
+ "indiedb"
+ ],
+ "regions": {
+ "default": "http://www.indiedb.com/search?cx=008031850949085947773%3Acbmjgaamtxe&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&sa.x=0&sa.y=0"
+ }
+ },
+ {
+ "favicon": "https://g2.iggcdn.com/assets/favicon/favicon-64-f86781f1d221c3eea847e861d0b2b631f0cd49bbdb2cac0b0ed052664fa2380c.png",
+ "name": "Indiegogo",
+ "triggers": [
+ "indiegogo"
+ ],
+ "regions": {
+ "default": "https://www.indiegogo.com/search#/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.indieshuffle.com/bundles/webbundle/images/icons/highres-favicon.png",
+ "name": "IndieShuffle",
+ "triggers": [
+ "ishuffle"
+ ],
+ "regions": {
+ "default": "http://www.indieshuffle.com/search/songs/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.chapters.indigo.ca/ui/Images/favicon-708b723381.ico",
+ "name": "Indigo Books",
+ "triggers": [
+ "indigo"
+ ],
+ "regions": {
+ "default": "http://www.chapters.indigo.ca/home/search/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.indyaconnects.com/skin/frontend/em0131/default/favicon.ico",
+ "name": "indyaconnects",
+ "triggers": [
+ "indyaconnects"
+ ],
+ "regions": {
+ "default": "http://www.indyaconnects.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ineedabargain.com/images/favicon.ico",
+ "name": "INeedaBargain.com",
+ "triggers": [
+ "inab"
+ ],
+ "regions": {
+ "default": "http://www.ineedabargain.com/deals/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.inet.se/favicon-32x32.png",
+ "name": "Inet",
+ "triggers": [
+ "inet"
+ ],
+ "regions": {
+ "default": "http://www.inet.se/hitta?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://inflooenz.com/favicon.ico",
+ "name": "inflooenz",
+ "triggers": [
+ "infloo"
+ ],
+ "regions": {
+ "default": "http://inflooenz.com/?artist={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.infobae.com/pb/resources/favicon.ico",
+ "name": "Infobae",
+ "triggers": [
+ "infobae"
+ ],
+ "regions": {
+ "default": "https://www.infobae.com/search/{{{term}}}/?q=bccce"
+ }
+ },
+ {
+ "favicon": "http://infochimps.com/favicon.ico",
+ "name": "Infochimps",
+ "triggers": [
+ "data",
+ "infochimps"
+ ],
+ "regions": {
+ "default": "http://infochimps.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://curia.europa.eu/favicon.ico",
+ "name": "InfoCuria",
+ "triggers": [
+ "curia"
+ ],
+ "regions": {
+ "default": "http://curia.europa.eu/juris/liste.jsf?&num={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://infogalactic.com/favicon.ico",
+ "name": "Infogalactic",
+ "triggers": [
+ "infogal"
+ ],
+ "regions": {
+ "default": "https://infogalactic.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://infogalactic.com/favicon.ico",
+ "name": "Infogalactic",
+ "triggers": [
+ "infogalactic"
+ ],
+ "regions": {
+ "default": "http://infogalactic.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://infogalactic.com/favicon.ico",
+ "name": "infogalactic.com",
+ "triggers": [
+ "infog"
+ ],
+ "regions": {
+ "default": "https://infogalactic.com/info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.jifo.co/i/favicon.ico?v3",
+ "name": "Infogram",
+ "triggers": [
+ "infogram"
+ ],
+ "regions": {
+ "default": "https://infogr.am/search#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.infopedia.pt/themes/infopedia/images/icons/favicon.ico",
+ "name": "Infopédia",
+ "triggers": [
+ "dicpt",
+ "infopedia"
+ ],
+ "regions": {
+ "default": "http://www.infopedia.pt/dicionarios/lingua-portuguesa/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.infoq.com/statics_s1_20180703-0349/favicon.ico",
+ "name": "InfoQ",
+ "triggers": [
+ "infoq"
+ ],
+ "regions": {
+ "default": "http://www.infoq.com/search.action?queryString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.infosniper.net/favicon.ico",
+ "name": "InfoSniper",
+ "triggers": [
+ "geoip"
+ ],
+ "regions": {
+ "default": "http://www.infosniper.net/index.php?ip_address={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.infospace.com/favicon.ico",
+ "name": "InfoSpace",
+ "triggers": [
+ "whitepages"
+ ],
+ "regions": {
+ "default": "http://www.infospace.com/home/white-pages?qname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.infospace.com/favicon.ico",
+ "name": "Infospace",
+ "triggers": [
+ "infospace"
+ ],
+ "regions": {
+ "default": "http://www.infospace.com/search/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.infowars.com/favicon.ico",
+ "name": "Infowars",
+ "triggers": [
+ "nfowrs"
+ ],
+ "regions": {
+ "default": "http://www.infowars.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eki.ee/templates/eki/favicon.ico",
+ "name": "Inglise-eesti",
+ "triggers": [
+ "ies"
+ ],
+ "regions": {
+ "default": "http://www.eki.ee/dict/ies/index.cgi?Q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalogue.inha.fr/favicon.ico",
+ "name": "INHA",
+ "triggers": [
+ "inha"
+ ],
+ "regions": {
+ "default": "http://catalogue.inha.fr/inha/List.csp?SearchT1={{{term}}}&Index1=Tlm&Database=5&OpacLanguage=fre&NumberToRetrieve=50&SearchMethod=Find_1&SearchTerm1=daabd&Profile=Profile35&PreviousList=Start&PageType=Start&WebPageNr=1&WebAction=NewSearch&StartValue=1&RowRepeat=0&MyChannelCount="
+ }
+ },
+ {
+ "favicon": "https://www.inhaltsangabe.de/dateien/cropped-inhaltsangabe-logo-192x192.png",
+ "name": "Inhaltsangabe.de",
+ "triggers": [
+ "inhalt"
+ ],
+ "regions": {
+ "default": "https://www.inhaltsangabe.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://initialcharge.net/wp-content/themes/recharge/img/favicon.ico",
+ "name": "Initial Charge",
+ "triggers": [
+ "charge"
+ ],
+ "regions": {
+ "default": "http://initialcharge.net/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.inkoasis.com/favicon.ico",
+ "name": "Ink Oasis",
+ "triggers": [
+ "printerink"
+ ],
+ "regions": {
+ "default": "http://www.inkoasis.com/search.asp?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.wikimg.net/en/splatoonwiki/favicon.ico",
+ "name": "Inkipedia",
+ "triggers": [
+ "inkipedia"
+ ],
+ "regions": {
+ "default": "https://splatoonwiki.org/w/index.php?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "//cdn.wikimg.net/en/splatoonwiki/favicon.ico",
+ "name": "Inkpedia",
+ "triggers": [
+ "splatoon"
+ ],
+ "regions": {
+ "default": "https://splatoonwiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.inktweb.nl/favicon-16x16.png",
+ "name": "Inktweb.nl",
+ "triggers": [
+ "inktweb"
+ ],
+ "regions": {
+ "default": "https://www.inktweb.nl/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.innerfidelity.com/images/favicon.ico",
+ "name": "InnerFidelity",
+ "triggers": [
+ "innerf"
+ ],
+ "regions": {
+ "default": "http://www.innerfidelity.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.innovativity.org/favicon.ico",
+ "name": "Innooo",
+ "triggers": [
+ "innooo"
+ ],
+ "regions": {
+ "default": "http://www.innovativity.org/moteur-de-recherche-innooo.php?typerecherche=&item={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://innovation.world/wp-content/plugins/under-construction-page/themes/images/favicon.png",
+ "name": "innovation.world",
+ "triggers": [
+ "innovationworld"
+ ],
+ "regions": {
+ "default": "http://innovation.world/search.html?searchphrase=all&searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.inoreader.com/favicon.ico",
+ "name": "Inoreader",
+ "triggers": [
+ "ino"
+ ],
+ "regions": {
+ "default": "https://www.inoreader.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://inpost.pl/themes/custom/inpost/favicon.ico",
+ "name": "InPost",
+ "triggers": [
+ "inpost"
+ ],
+ "regions": {
+ "default": "https://inpost.pl/pl/pomoc/znajdz-przesylke?parcel={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.inrs.fr/default/dms/inrs/img/logo/favicon/favicon.ico",
+ "name": "INRS",
+ "triggers": [
+ "inrs"
+ ],
+ "regions": {
+ "default": "http://www.inrs.fr/header/recherche.html?queryStr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.insectimages.org/favicon.ico",
+ "name": "Insect Images",
+ "triggers": [
+ "insectimages"
+ ],
+ "regions": {
+ "default": "https://www.insectimages.org/search/action.cfm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.inside-handy.de/favicon.ico?v=XBzWnbB9j3",
+ "name": "Inside-Handy",
+ "triggers": [
+ "insise-handy"
+ ],
+ "regions": {
+ "default": "http://www.inside-handy.de/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.graphiq.com/sites/all/modules/custom/graphiq/favicon.ico",
+ "name": "InsideGov",
+ "triggers": [
+ "igov"
+ ],
+ "regions": {
+ "default": "http://www.insidegov.com/site_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://insideschools.org/assets/favicon-16x16-3e57ffe5d31e5ed9423a79da57dd0063f72d89542c61d71fc6eda81a2622884c.png",
+ "name": "Insideschools",
+ "triggers": [
+ "insideschools"
+ ],
+ "regions": {
+ "default": "http://insideschools.org/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.insight.com/content/dam/assets/insight-web/assets/favicon/favicon.ico.png",
+ "name": "Insight Enterprises",
+ "triggers": [
+ "insight"
+ ],
+ "regions": {
+ "default": "https://www.insight.com/insightweb/search#searchResults#page=1#noCLP=false#shown=10#shownFlag=true#searchText=%22{{{term}}}%22"
+ }
+ },
+ {
+ "favicon": "https://inspirationhut.net/wp-content/uploads/2013/07/favicon1.png",
+ "name": "Inspiration Hut",
+ "triggers": [
+ "inspirationhut"
+ ],
+ "regions": {
+ "default": "http://inspirationhut.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://inspirehep.net/favicon.ico",
+ "name": "Inspire HEP",
+ "triggers": [
+ "inspire",
+ "ihep"
+ ],
+ "regions": {
+ "default": "https://inspirehep.net/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://instantdomainsearch.com/favicon.ico",
+ "name": "Instant Domain Search",
+ "triggers": [
+ "ids"
+ ],
+ "regions": {
+ "default": "https://instantdomainsearch.com/#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.instantsfun.es/favicon.ico",
+ "name": "Instant Fun",
+ "triggers": [
+ "if"
+ ],
+ "regions": {
+ "default": "http://www.instantsfun.es/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://instantlogosearch.ils.netdna-cdn.com/favicon-16x16.png",
+ "name": "Instant Logo Search",
+ "triggers": [
+ "instantlogo",
+ "logos"
+ ],
+ "regions": {
+ "default": "http://instantlogosearch.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://staticinstapaper.s3.amazonaws.com/img/favicon.png?v=3a43e0f358075f9c79f8e1c10d6e737a",
+ "name": "Instapaper",
+ "triggers": [
+ "instapaper"
+ ],
+ "regions": {
+ "default": "https://www.instapaper.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iopscience.iop.org/favicon.ico",
+ "name": "Institute of Physics Science",
+ "triggers": [
+ "iop"
+ ],
+ "regions": {
+ "default": "https://iopscience.iop.org/nsearch?terms={{{term}}}&searchType=yourSearch"
+ }
+ },
+ {
+ "favicon": "http://www.inl.nl/favicon-16x16.png",
+ "name": "Instituut der Nederlandsche Taal",
+ "triggers": [
+ "inl"
+ ],
+ "regions": {
+ "default": "http://www.inl.nl/zoekresultaten?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.instructables.com/favicon.ico",
+ "name": "Instructables",
+ "triggers": [
+ "instructables",
+ "ins"
+ ],
+ "regions": {
+ "default": "https://www.instructables.com/howto/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www-ssl.intel.com/etc/designs/ver/6.8.411/intel/default/favicon.ico",
+ "name": "Intel",
+ "triggers": [
+ "intel"
+ ],
+ "regions": {
+ "default": "https://www-ssl.intel.com/content/www/us/en/search.html?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ark.intel.com/sites/sitewide/pix/favicon.ico",
+ "name": "Intel Ark",
+ "triggers": [
+ "ark"
+ ],
+ "regions": {
+ "default": "https://ark.intel.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ifdb.tads.org/favicon.ico",
+ "name": "Interactive Fiction Database",
+ "triggers": [
+ "ifdb"
+ ],
+ "regions": {
+ "default": "http://ifdb.tads.org/search?searchbar={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.interglot.com/images/favicon.png",
+ "name": "Interglot",
+ "triggers": [
+ "glotennl"
+ ],
+ "regions": {
+ "default": "http://www.interglot.com/dictionary/en/nl/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.interglot.com/images/favicon.png",
+ "name": "Interglot (NL->EN)",
+ "triggers": [
+ "glotnl"
+ ],
+ "regions": {
+ "default": "http://interglot.com/dictionary/nl/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.interglot.com/images/favicon.png",
+ "name": "Interglot EN -> ES",
+ "triggers": [
+ "glotenes"
+ ],
+ "regions": {
+ "default": "http://www.interglot.com/dictionary/en/es/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.interglot.com/images/favicon.png",
+ "name": "Interglot ES -> EN",
+ "triggers": [
+ "glotesen"
+ ],
+ "regions": {
+ "default": "http://www.interglot.com/dictionary/es/en/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://ices.dk/_layouts/15/1033/images/icesimg/favicon.ico",
+ "name": "International Council for the Exploration of the Sea",
+ "triggers": [
+ "ices"
+ ],
+ "regions": {
+ "default": "http://ices.dk/Searchcenter/Pages/default.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.internazionale.it/assets/img/favicon.png",
+ "name": "Internazionale",
+ "triggers": [
+ "internazionale"
+ ],
+ "regions": {
+ "default": "http://www.internazionale.it/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.internazionale.it/assets/img/favicon.png",
+ "name": "Internazionale",
+ "triggers": [
+ "int"
+ ],
+ "regions": {
+ "default": "http://www.internazionale.it/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.internazionale.it/assets/img/favicon.png",
+ "name": "Internazionale.it",
+ "triggers": [
+ "dizint"
+ ],
+ "regions": {
+ "default": "http://dizionario.internazionale.it/cerca/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iafd.com/favicon-128.png",
+ "name": "internet adult film database",
+ "triggers": [
+ "iafd"
+ ],
+ "regions": {
+ "default": "http://www.iafd.com/results.asp?searchtype=comprehensive&searchstring={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://archive.org/favicon.ico",
+ "name": "Internet Archive TV News",
+ "triggers": [
+ "archivetv"
+ ],
+ "regions": {
+ "default": "https://archive.org/details/tv?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://web.archive.org/static/images/archive.ico",
+ "name": "Internet Archive: Wayback Machine",
+ "triggers": [
+ "wayback",
+ "waybackmachine",
+ "archived",
+ "wbm",
+ "webarchive"
+ ],
+ "regions": {
+ "default": "https://web.archive.org/web/*/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ibs.it/favicon.ico",
+ "name": "Internet Bookshop Italia",
+ "triggers": [
+ "ibs"
+ ],
+ "regions": {
+ "default": "https://www.ibs.it/search/?ts=as&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ibdb.com/favicon.ico",
+ "name": "Internet Broadway Database",
+ "triggers": [
+ "ibdb"
+ ],
+ "regions": {
+ "default": "http://www.ibdb.com/search.asp?SearchFor={{{term}}}&SearchBy=All"
+ }
+ },
+ {
+ "favicon": "http://www.iep.utm.edu/wp-content/media/fbrfg/favicon.ico?v=XBrrnd5baw",
+ "name": "Internet Encyclopedia of Philosophy",
+ "triggers": [
+ "iep"
+ ],
+ "regions": {
+ "default": "http://www.iep.utm.edu/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.imfdb.org/favicon.ico",
+ "name": "Internet Movie Firearms Database",
+ "triggers": [
+ "imfdb"
+ ],
+ "regions": {
+ "default": "http://www.imfdb.org/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://impdb.org/favicon.ico",
+ "name": "Internet Movie Plane Database",
+ "triggers": [
+ "impdb"
+ ],
+ "regions": {
+ "default": "http://impdb.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ipdb.org/favicon.ico",
+ "name": "Internet Pinball Database",
+ "triggers": [
+ "ipdb"
+ ],
+ "regions": {
+ "default": "http://www.ipdb.org/search.pl?any={{{term}}}&sortby=name&search=Search+Database&searchtype=quick"
+ }
+ },
+ {
+ "favicon": "http://www.isfdb.org/favicon.ico",
+ "name": "Internet Speculative Fiction Database",
+ "triggers": [
+ "isfdb"
+ ],
+ "regions": {
+ "default": "http://www.isfdb.org/cgi-bin/se.cgi?type=Fiction%20Titles&arg={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://prirucka.ujc.cas.cz/files/favicon.ico",
+ "name": "Internetová jazyková příručka",
+ "triggers": [
+ "ujc"
+ ],
+ "regions": {
+ "default": "http://prirucka.ujc.cas.cz/?slovo={{{term}}}&Hledej=Hledej"
+ }
+ },
+ {
+ "favicon": "https://www.stream.cz/static/userweb/img/icons/favicon.ico",
+ "name": "Internetová televize Stream",
+ "triggers": [
+ "stream"
+ ],
+ "regions": {
+ "default": "https://www.stream.cz/vyhledavani?dotaz={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.inwx.com/favicon.ico",
+ "name": "InterNetworX",
+ "triggers": [
+ "inwx"
+ ],
+ "regions": {
+ "default": "https://www.inwx.com/en/domain/check#search={{{term}}}#region=DEFAULT"
+ }
+ },
+ {
+ "favicon": "https://ipfs.io/ipfs/images/favicon.png",
+ "name": "InterPlanetary File System",
+ "triggers": [
+ "ipfs"
+ ],
+ "regions": {
+ "default": "https://ipfs.io/ipfs/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ipfs.io/ipns/images/favicon.png",
+ "name": "InterPlanetary Naming System",
+ "triggers": [
+ "ipns"
+ ],
+ "regions": {
+ "default": "https://ipfs.io/ipns/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.intersport.se/favicon.ico",
+ "name": "Intersport",
+ "triggers": [
+ "intersport"
+ ],
+ "regions": {
+ "default": "https://www.intersport.se/soksida/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://into.hu/assets/images/titleicons/favicon-32x32.png",
+ "name": "Into.hu",
+ "triggers": [
+ "intohu"
+ ],
+ "regions": {
+ "default": "http://into.hu/kereses.php?kereses={{{term}}}&cikk=1&forum=1&letolt=1&fal=1&zene=1&kerdesek=1&page=1"
+ }
+ },
+ {
+ "favicon": "http://www.intodns.com/static/images/favicon.ico",
+ "name": "intodns",
+ "triggers": [
+ "intodns"
+ ],
+ "regions": {
+ "default": "http://www.intodns.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://inventaire.io/public/icon/192.png",
+ "name": "inventaire.io",
+ "triggers": [
+ "inv"
+ ],
+ "regions": {
+ "default": "https://inventaire.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://isc.carma.newcastle.edu.au/favicon.ico",
+ "name": "Inverse Symbolic Calculator",
+ "triggers": [
+ "isc"
+ ],
+ "regions": {
+ "default": "https://isc.carma.newcastle.edu.au/standardCalc?input={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//i.investopedia.com/public/img/favicon.ico",
+ "name": "Investopedia",
+ "triggers": [
+ "investopedia",
+ "invest"
+ ],
+ "regions": {
+ "default": "http://www.investopedia.com/search/default.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.investorwords.com/images/favicon.ico",
+ "name": "Investor Words",
+ "triggers": [
+ "investorwords"
+ ],
+ "regions": {
+ "default": "http://www.investorwords.com/search_cse.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://invisibleagent.com/app/uploads/2017/01/cropped-IA-Square-minimal-192x192.jpeg",
+ "name": "Invisible Agent",
+ "triggers": [
+ "ir"
+ ],
+ "regions": {
+ "default": "http://invisibleagent.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--uWw7HXhn--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/eh1hvjxamru5z6aobgwc.png",
+ "name": "io9",
+ "triggers": [
+ "io9"
+ ],
+ "regions": {
+ "default": "https://io9.gizmodo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iol.co.za/assets/images/favicon/favicon.ico",
+ "name": "IOL",
+ "triggers": [
+ "iol"
+ ],
+ "regions": {
+ "default": "http://www.iol.co.za/search-results-page?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kotlinlang.org/favicon.ico",
+ "name": "ionoclast.com",
+ "triggers": [
+ "kotlin"
+ ],
+ "regions": {
+ "default": "https://kotlinlang.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.apple.com/favicon.ico",
+ "name": "iOS Developer Library",
+ "triggers": [
+ "ios"
+ ],
+ "regions": {
+ "default": "https://developer.apple.com/library/ios/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://catpro.icpl.org:443/iii/encore/local/images/favicon.ico",
+ "name": "Iowa City Public Library",
+ "triggers": [
+ "icpl"
+ ],
+ "regions": {
+ "default": "https://catpro.icpl.org/iii/encore/search?lang=eng&target={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iplocation.net/favicon.png",
+ "name": "IP Location",
+ "triggers": [
+ "iplocation"
+ ],
+ "regions": {
+ "default": "https://www.iplocation.net/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iptorrents.com/favicon.ico",
+ "name": "IP Torrents",
+ "triggers": [
+ "ipt"
+ ],
+ "regions": {
+ "default": "https://www.iptorrents.com/t?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ip-tracker.org/locator/favicon.ico",
+ "name": "IP Tracker",
+ "triggers": [
+ "iptracker"
+ ],
+ "regions": {
+ "default": "http://www.ip-tracker.org/locator/ip-lookup.php?ip={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://ip-api.com/favicon.ico",
+ "name": "IP-API.com",
+ "triggers": [
+ "ipapi"
+ ],
+ "regions": {
+ "default": "http://ip-api.com/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://s.ipernity.com/T/L/favicon/16x16.png?v2",
+ "name": "Ipernity",
+ "triggers": [
+ "ipernity"
+ ],
+ "regions": {
+ "default": "http://www.ipernity.com/search/doc?q={{{term}}}&w=on"
+ }
+ },
+ {
+ "favicon": "https://ipinfo.io/static/favicon.ico?v2",
+ "name": "ipinfo.io",
+ "triggers": [
+ "ipinfo"
+ ],
+ "regions": {
+ "default": "https://ipinfo.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iprice.my/favicon.ico",
+ "name": "iprice",
+ "triggers": [
+ "iprice"
+ ],
+ "regions": {
+ "default": "https://iprice.my/search/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iprofesional.com/favicon.ico",
+ "name": "iProfesional.com",
+ "triggers": [
+ "ipro"
+ ],
+ "regions": {
+ "default": "http://www.iprofesional.com/index.php?p=buscadorProfesional&texto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ip-tracker.org/locator/favicon.ico",
+ "name": "IPTracker",
+ "triggers": [
+ "iptrack"
+ ],
+ "regions": {
+ "default": "http://www.ip-tracker.org/locator/ip-lookup.php?ip={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ipvoid.com/favicon.ico",
+ "name": "Ipvoid",
+ "triggers": [
+ "ipvoid"
+ ],
+ "regions": {
+ "default": "http://www.ipvoid.com/scan/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iqdb.org/favicon.ico",
+ "name": "iqdb",
+ "triggers": [
+ "iqdb"
+ ],
+ "regions": {
+ "default": "https://iqdb.org/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2.bp.blogspot.com/-7C_NQUk7j4I/Wavje0-SP3I/AAAAAAABGf8/wq2Oh27ZsZE0sJbXlHuD7zeKGA-BT5k5QCLcBGAs/s1600/irasutoya_fav.ico",
+ "name": "Irasutoya",
+ "triggers": [
+ "iasutoya"
+ ],
+ "regions": {
+ "default": "http://www.irasutoya.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://irc-galleria.net/favicon.ico",
+ "name": "Irc-Galleria",
+ "triggers": [
+ "irc-galleria"
+ ],
+ "regions": {
+ "default": "https://irc-galleria.net/users/search?username={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://irc.netsplit.de/favicon.ico",
+ "name": "irc.netsplit.de",
+ "triggers": [
+ "irc"
+ ],
+ "regions": {
+ "default": "http://irc.netsplit.de/channels/?chat={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://celticmusicpodcast.com/favicon.ico",
+ "name": "Irish & Celtic Music Podcast",
+ "triggers": [
+ "celticpodcast"
+ ],
+ "regions": {
+ "default": "http://celticmusicpodcast.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ga.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Irish Wikipedia",
+ "triggers": [
+ "wga"
+ ],
+ "regions": {
+ "default": "https://ga.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://wiki.ironchariots.org/favicon.ico",
+ "name": "Iron Chariots Wiki",
+ "triggers": [
+ "ic"
+ ],
+ "regions": {
+ "default": "http://wiki.ironchariots.org/index.php?title=Special%&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://irowiki.org/favicon.ico",
+ "name": "IroWiki",
+ "triggers": [
+ "irowiki"
+ ],
+ "regions": {
+ "default": "http://irowiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.irs.gov/themes/custom/pup_base/favicon.ico",
+ "name": "IRS",
+ "triggers": [
+ "irs"
+ ],
+ "regions": {
+ "default": "http://search.irs.gov/search?q={{{term}}}&proxystylesheet=irs_portals_frontend"
+ }
+ },
+ {
+ "favicon": "http://www.isitdownrightnow.com/favicon.ico",
+ "name": "Is It Down Right Now?",
+ "triggers": [
+ "iidrn"
+ ],
+ "regions": {
+ "default": "http://www.isitdownrightnow.com/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://isitup.org/static/img/icon.png",
+ "name": "Is it up?",
+ "triggers": [
+ "isitup"
+ ],
+ "regions": {
+ "default": "https://isitup.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//is.gd/isgd_favicon.ico",
+ "name": "is.gd",
+ "triggers": [
+ "isgd"
+ ],
+ "regions": {
+ "default": "https://is.gd/create.php?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.isaca.org/favicon.ico",
+ "name": "ISACA.org",
+ "triggers": [
+ "isaca"
+ ],
+ "regions": {
+ "default": "http://www.isaca.org/Search/Pages/DefaultResults.aspx?k=Test&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.isbn.nu/images/isbn_favicon.png",
+ "name": "isbn.nu",
+ "triggers": [
+ "isbnnu"
+ ],
+ "regions": {
+ "default": "http://isbn.nu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://isbndb.com/sites/default/files/favicon_0.ico",
+ "name": "ISBNdb",
+ "triggers": [
+ "isbn"
+ ],
+ "regions": {
+ "default": "http://isbndb.com/search/all?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://isbndb.com/sites/default/files/favicon_0.ico",
+ "name": "ISBNdb.com",
+ "triggers": [
+ "isbndb"
+ ],
+ "regions": {
+ "default": "http://isbndb.com/search-all.html?kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.isbns.net/favicon.ico",
+ "name": "isbns.net",
+ "triggers": [
+ "isb"
+ ],
+ "regions": {
+ "default": "http://www.isbns.net/search/?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://iscrapapp.com/wp-content/uploads/2017/08/cropped-iScrap-App-Logo-Shaped-1-192x192.png",
+ "name": "iScrapApp",
+ "triggers": [
+ "iscrap"
+ ],
+ "regions": {
+ "default": "http://iscrapapp.com/?SearchTxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.iserv.fr/assets/images/2017/11/iServ_square_ublue.png",
+ "name": "iservfr",
+ "triggers": [
+ "iserv"
+ ],
+ "regions": {
+ "default": "https://www.iserv.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ishr.ch/sites/all/themes/ishr_theme/favicon.ico",
+ "name": "ishr.ch",
+ "triggers": [
+ "ishr"
+ ],
+ "regions": {
+ "default": "http://www.ishr.ch/advanced-search?term={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://islamqa.info/favicon.ico",
+ "name": "Islamqa.com",
+ "triggers": [
+ "islamqa"
+ ],
+ "regions": {
+ "default": "https://islamqa.info/en/search?key={{{term}}}&yt0=search"
+ }
+ },
+ {
+ "favicon": "https://isohunt.to/favicon.ico",
+ "name": "isoHunt",
+ "triggers": [
+ "ih",
+ "isohunt"
+ ],
+ "regions": {
+ "default": "https://isohunt.to/torrents/?ihq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.isprimenumber.com/favicon.ico",
+ "name": "isprimenumber",
+ "triggers": [
+ "isprime"
+ ],
+ "regions": {
+ "default": "http://www.isprimenumber.com/prime/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://issuu.com/favicon.ico",
+ "name": "Issuu",
+ "triggers": [
+ "issuu",
+ "iss"
+ ],
+ "regions": {
+ "default": "https://issuu.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2uym1p5obf9p8.cloudfront.net/images/favicon.png",
+ "name": "IsThereAnyDeal",
+ "triggers": [
+ "isthereanydeal",
+ "itad"
+ ],
+ "regions": {
+ "default": "https://isthereanydeal.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.istockphoto.com/favicon.ico",
+ "name": "iStockPhoto",
+ "triggers": [
+ "istockphoto",
+ "stockphotos"
+ ],
+ "regions": {
+ "default": "https://www.istockphoto.com/file_search.php?action=file&text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.istockphoto.com/favicon.ico",
+ "name": "iStockPhoto",
+ "triggers": [
+ "istock"
+ ],
+ "regions": {
+ "default": "https://www.istockphoto.com/photos/{{{term}}}?phrase=iiehgcaeb"
+ }
+ },
+ {
+ "favicon": "http://isup.me/favicon.ico",
+ "name": "isup.me",
+ "triggers": [
+ "isitdown"
+ ],
+ "regions": {
+ "default": "http://isup.me/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.itninja.com/favicon-16x16.png",
+ "name": "IT-Ninja",
+ "triggers": [
+ "itninja"
+ ],
+ "regions": {
+ "default": "http://www.itninja.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.italian-verbs.com/favicon.ico",
+ "name": "Italian Verbs",
+ "triggers": [
+ "iv",
+ "itverb"
+ ],
+ "regions": {
+ "default": "http://www.italian-verbs.com/italian-verbs/conjugation.php?verbo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://it.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Italian Wikipedia",
+ "triggers": [
+ "itwiki"
+ ],
+ "regions": {
+ "default": "https://it.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://itch.io/favicon.ico",
+ "name": "itch.io",
+ "triggers": [
+ "itch"
+ ],
+ "regions": {
+ "default": "https://itch.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.itella.fi/favicon.ico",
+ "name": "Itella Item Tracking",
+ "triggers": [
+ "itella"
+ ],
+ "regions": {
+ "default": "http://www.itella.fi/itemtracking/itella/search_by_shipment_id?ShipmentId={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.itnewz.ro/wp-content/uploads/2017/12/favicon.ico",
+ "name": "itnewz",
+ "triggers": [
+ "itnewz"
+ ],
+ "regions": {
+ "default": "http://itnewz.ro/?s={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://www.itrig.de/favicon.ico",
+ "name": "ITrig",
+ "triggers": [
+ "itrig"
+ ],
+ "regions": {
+ "default": "http://www.itrig.de/index.php?serendipity%5Baction%5D=search&serendipity%5Bfullentry%5D=1&serendipity%5BsearchTerm%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://itunes.apple.com/favicon.ico",
+ "name": "iTunes",
+ "triggers": [
+ "itunesartist"
+ ],
+ "regions": {
+ "default": "https://itunes.apple.com/us/artist/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bendodson.s3.amazonaws.com/bendodson.com/favicon.ico",
+ "name": "iTunes Album Artwork Finder",
+ "triggers": [
+ "albumart"
+ ],
+ "regions": {
+ "default": "https://bendodson.com/projects/itunes-artwork-finder/index.html?entity=album&country=us&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bendodson.s3.amazonaws.com/bendodson.com/favicon.ico",
+ "name": "iTunes TV Artwork Finder",
+ "triggers": [
+ "tvart"
+ ],
+ "regions": {
+ "default": "https://bendodson.com/projects/itunes-artwork-finder/index.html?entity=tvSeason&country=us&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.itv.com/hub/assets/img/favicon.ico?20180629080114",
+ "name": "ITV",
+ "triggers": [
+ "itv"
+ ],
+ "regions": {
+ "default": "https://www.itv.com/itvplayer/search/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://e-words.jp/favicon.ico",
+ "name": "IT用語辞典 e-Words",
+ "triggers": [
+ "e-words"
+ ],
+ "regions": {
+ "default": "http://e-words.jp/?cx=partner-pub-1175263777233757%3Axelkt7-c6j8&cof=FORID%3A10&ie=Shift_JIS&q={{{term}}}&sa=%88%EA%92v%82%B7%82%E9%97p%8C%EA%82%F0%95%5C%8E%A6&siteurl=e-words.jp%2F&ref=e-words.jp%2Fw%2FE382B9E3839AE383BCE382B9.html&ss=1193j290715j7"
+ }
+ },
+ {
+ "favicon": "http://goldbook.iupac.org/favicon.ico",
+ "name": "IUPAC Gold Book",
+ "triggers": [
+ "gold"
+ ],
+ "regions": {
+ "default": "http://goldbook.iupac.org/search.py?search_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ivoox.com/favicon.ico",
+ "name": "ivoox",
+ "triggers": [
+ "ivoox"
+ ],
+ "regions": {
+ "default": "https://www.ivoox.com/{{{term}}}_sb.html?sb=becaaf"
+ }
+ },
+ {
+ "favicon": "https://iwantmyname.com/img/favicon-64x64.png",
+ "name": "iWantMyName",
+ "triggers": [
+ "iwmn"
+ ],
+ "regions": {
+ "default": "https://iwantmyname.com/?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iwantmyname.com/img/favicon-64x64.png",
+ "name": "iWantMyName",
+ "triggers": [
+ "iwant"
+ ],
+ "regions": {
+ "default": "https://iwantmyname.com/search?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.ixigo.com/image/upload/new/3c5218eaccbc128a6c0ec461a627daf8-mbsmf.png",
+ "name": "ixigo",
+ "triggers": [
+ "ixigo"
+ ],
+ "regions": {
+ "default": "https://ixigo.com/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ixirc.com/favicon.png",
+ "name": "ixIRC - IRC / XDCC Search Engine",
+ "triggers": [
+ "ixirc"
+ ],
+ "regions": {
+ "default": "https://ixirc.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ixquick.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ixquick",
+ "triggers": [
+ "ii"
+ ],
+ "regions": {
+ "default": "https://www.ixquick.com/do/search?cat=pics&cmd=process_search&query={{{term}}}&nj=0"
+ }
+ },
+ {
+ "favicon": "https://ixquick.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ixquick",
+ "triggers": [
+ "iq"
+ ],
+ "regions": {
+ "default": "https://ixquick.com/do/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://ixquick.eu/graphics/favicon/sp-favicon-16x16.png",
+ "name": "ixquick",
+ "triggers": [
+ "ixquick"
+ ],
+ "regions": {
+ "default": "https://ixquick.eu/do/metasearch.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ixquick.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ixquick (images)",
+ "triggers": [
+ "ixquickimages",
+ "ixi"
+ ],
+ "regions": {
+ "default": "https://ixquick.com/do/search?cat=pics&cmd=process_search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ixquick.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ixquick (videos)",
+ "triggers": [
+ "ixquickvideos"
+ ],
+ "regions": {
+ "default": "https://ixquick.com/do/search?cat=video&cmd=process_search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ddg.gg/favicon.ico",
+ "name": "Ixquick Alias",
+ "triggers": [
+ "ix"
+ ],
+ "regions": {
+ "default": "https://ddg.gg/?q=!ixquick+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ixquick.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ixquick Picture Search",
+ "triggers": [
+ "iximg"
+ ],
+ "regions": {
+ "default": "https://ixquick.com/do/search?cat=pics&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://iyanmv.com/wp-content/uploads/2016/07/font-awesome_4-6-3_linux_500_0_000000_none-300x300.png",
+ "name": "Iyanm",
+ "triggers": [
+ "iyanmv"
+ ],
+ "regions": {
+ "default": "http://iyanmv.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://izik.com/favicon.ico",
+ "name": "izik",
+ "triggers": [
+ "izik"
+ ],
+ "regions": {
+ "default": "http://izik.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.izneo.com/favicon.ico?v=v6.6.4.6-2183-gbcef0e1-bcef",
+ "name": "izneo",
+ "triggers": [
+ "izneo"
+ ],
+ "regions": {
+ "default": "http://www.izneo.com/search.html?pattern={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://izsearch.com/resources/img/favicon.png",
+ "name": "Izsearch",
+ "triggers": [
+ "iz"
+ ],
+ "regions": {
+ "default": "https://izsearch.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.j3sg.com/IncludeFiles/favicon.ico",
+ "name": "J3 Information Services Group",
+ "triggers": [
+ "j3",
+ "j3sg"
+ ],
+ "regions": {
+ "default": "http://www.j3sg.com/Reports/Stock-Insider/Generate.php?DV=yes&tickerLookUp={{{term}}}&Submit232=GO"
+ }
+ },
+ {
+ "favicon": "https://d1i2hi5dlrpq5n.cloudfront.net/Assets/Favicon/favicon.ico?d=20151110T152722Z",
+ "name": "J D Weatherpoon",
+ "triggers": [
+ "jdw"
+ ],
+ "regions": {
+ "default": "http://www.jdwetherspoon.co.uk/home/pubs/find/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.j-archive.com/favicon.ico",
+ "name": "J! Archive",
+ "triggers": [
+ "jeopardy",
+ "ja"
+ ],
+ "regions": {
+ "default": "http://www.j-archive.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jwpepper.com/images/favicon.ico",
+ "name": "J.W. Pepper",
+ "triggers": [
+ "jwp",
+ "jwpepper"
+ ],
+ "regions": {
+ "default": "http://www.jwpepper.com/sheet-music/search.jsp?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jadi.net/favicon.png",
+ "name": "jadi.net",
+ "triggers": [
+ "jadi"
+ ],
+ "regions": {
+ "default": "https://jadi.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://k.nooncdn.com/s/app/2018/com-www-bigalog/static/11db7e66-e177-4e1a-9e68-22c5e8e6c22a/images/favicon.ico",
+ "name": "JadoPado",
+ "triggers": [
+ "jadopado"
+ ],
+ "regions": {
+ "default": "http://jadopado.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jal.co.jp/cgi-bin/jal/insite_search/favicon.ico",
+ "name": "JAL",
+ "triggers": [
+ "jal"
+ ],
+ "regions": {
+ "default": "https://www.jal.co.jp/cgi-bin/jal/insite_search/index.cgi?keyword={{{term}}}&collection=jalcojp&charset=shift_jis"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--w1bSCXke--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/aqhdzcldymb9mkltfhxh.png",
+ "name": "Jalopnik",
+ "triggers": [
+ "jalop",
+ "jalopnik"
+ ],
+ "regions": {
+ "default": "https://jalopnik.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-www.jamendo.com/Client/assets/toolkit/images/icon/favicon.1530630678000.ico",
+ "name": "Jamendo",
+ "triggers": [
+ "jam"
+ ],
+ "regions": {
+ "default": "https://www.jamendo.com/en/search?qs=q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-www.jamendo.com/Client/assets/toolkit/images/icon/favicon.1530630678000.ico",
+ "name": "Jamendo",
+ "triggers": [
+ "jamendo"
+ ],
+ "regions": {
+ "default": "https://www.jamendo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jamf.com/favicon-16x16.png",
+ "name": "Jamf Nation articles",
+ "triggers": [
+ "jamf"
+ ],
+ "regions": {
+ "default": "https://www.jamf.com/jamf-nation/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trackings.post.japanpost.jp/favicon.ico",
+ "name": "Japan Post Tracking",
+ "triggers": [
+ "jpost"
+ ],
+ "regions": {
+ "default": "https://trackings.post.japanpost.jp/services/srv/search/direct?searchKind=S004&locale=en&reqCodeNo1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/japanese/img/favicon.ico?v=04a00a20ef29",
+ "name": "Japanese Language Stack Exchange",
+ "triggers": [
+ "jlse"
+ ],
+ "regions": {
+ "default": "http://japanese.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Japanese Wikibooks",
+ "triggers": [
+ "jawb"
+ ],
+ "regions": {
+ "default": "https://ja.wikibooks.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Japanese Wikipedia",
+ "triggers": [
+ "jawiki"
+ ],
+ "regions": {
+ "default": "https://ja.wikipedia.org/wiki/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://ja.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Japanese Wikipedia",
+ "triggers": [
+ "jawp"
+ ],
+ "regions": {
+ "default": "https://ja.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "Japanese Wikiquote",
+ "triggers": [
+ "jawq"
+ ],
+ "regions": {
+ "default": "https://ja.wikiquote.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Japanese Wikisource",
+ "triggers": [
+ "jaws"
+ ],
+ "regions": {
+ "default": "https://ja.wikisource.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikiversity.org/static/favicon/wikiversity.ico",
+ "name": "Japanese Wikiversity",
+ "triggers": [
+ "jawv"
+ ],
+ "regions": {
+ "default": "https://ja.wikiversity.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wiktionary.org/static/favicon/piece.ico",
+ "name": "Japanese Wiktionary",
+ "triggers": [
+ "jawt"
+ ],
+ "regions": {
+ "default": "https://ja.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jarfinder.com/favicon.ico",
+ "name": "JarFinder",
+ "triggers": [
+ "jf"
+ ],
+ "regions": {
+ "default": "http://www.jarfinder.com/index.php/java/search/~{{{term}}} ~"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Jarvana",
+ "triggers": [
+ "jarvanacontent"
+ ],
+ "regions": {
+ "default": "http://www.jarvana.com/jarvana/search?search_type=content&content={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Jarvana",
+ "triggers": [
+ "jarvanaclass"
+ ],
+ "regions": {
+ "default": "http://www.jarvana.com/jarvana/search?search_type=class&java_class={{{term}}} "
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Jarvana",
+ "triggers": [
+ "jarvanaproject"
+ ],
+ "regions": {
+ "default": "http://www.jarvana.com/jarvana/search?search_type=project&project={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jcp.org/favicon.ico",
+ "name": "Java Community Process",
+ "triggers": [
+ "jcp"
+ ],
+ "regions": {
+ "default": "https://jcp.org/en/jsr/summary?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.oracle.com/favicon.ico",
+ "name": "Java Docs",
+ "triggers": [
+ "jdk",
+ "java9"
+ ],
+ "regions": {
+ "default": "https://docs.oracle.com/apps/search/search.jsp?category=java&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Java questions on Stack Overflow",
+ "triggers": [
+ "jso"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q=[java]+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Java Tutorial (Oracle)",
+ "triggers": [
+ "jtut"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?search_p_main_operator=all&group=Documentation&q={{{term}}}+url%3A%2Fjavase%2Ftutorial"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Java4 Docs",
+ "triggers": [
+ "java4"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?tzoffset=420&default=true&q={{{term}}}+url:/javase/1.4.2/docs&start=1&nodeid=&fid=&showSimilarDoc=true&group=Documentation&keyword=&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Java5 Docs",
+ "triggers": [
+ "java5"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?tzoffset=420&default=true&q={{{term}}}+url:/javase/1.5.0/docs&start=1&nodeid=&fid=&showSimilarDoc=true&group=Documentation&keyword=&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Java6 Docs",
+ "triggers": [
+ "java6"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?tzoffset=420&default=true&q={{{term}}}+url:/javase/6/docs&start=1&nodeid=&fid=&showSimilarDoc=true&group=Documentation&keyword=&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Java7 Docs",
+ "triggers": [
+ "java7"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?tzoffset=420&default=true&q={{{term}}}+url:/javase/7/docs&start=1&nodeid=&fid=&showSimilarDoc=true&group=Documentation&keyword=&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "//d3hbbz8rzuqyfb.cloudfront.net/favicon.ico",
+ "name": "Javalibs",
+ "triggers": [
+ "javalibs"
+ ],
+ "regions": {
+ "default": "https://javalibs.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "JavaScript Docs",
+ "triggers": [
+ "javascript",
+ "mdc",
+ "mdn"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jaycar.com.au/_ui/desktop/theme-jaycar/images/favicon.ico",
+ "name": "Jaycar",
+ "triggers": [
+ "jay"
+ ],
+ "regions": {
+ "default": "http://www.jaycar.com.au/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jbhifi.com.au/img/icon-normal.png",
+ "name": "JB Hi Fi",
+ "triggers": [
+ "jbhifi"
+ ],
+ "regions": {
+ "default": "http://www.jbhifi.com.au/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jbovlaste.lojban.org/favicon.ico",
+ "name": "Jbovlaste - search the lojban dictionary in any language",
+ "triggers": [
+ "jbovlaste"
+ ],
+ "regions": {
+ "default": "http://jbovlaste.lojban.org/dict/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jbox.com/media/favicon/default/favicon.ico",
+ "name": "JBox",
+ "triggers": [
+ "jbox"
+ ],
+ "regions": {
+ "default": "https://jbox.com/catalogsearch/result/?cat=4&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://melenchon.fr/wp-content/uploads/2015/10/favicon.ico",
+ "name": "Jean-Luc Mélenchon",
+ "triggers": [
+ "jlm"
+ ],
+ "regions": {
+ "default": "http://www.jean-luc-melenchon.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/jedipedia/images/6/64/Favicon.ico/revision/latest?cb=20111008161613&path-prefix=de",
+ "name": "Jedipedia Wikia",
+ "triggers": [
+ "jedipedia"
+ ],
+ "regions": {
+ "default": "http://jedipedia.wikia.com/wiki/Spezial:Suche?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://items.jellyneo.net/layout/imgs/itemdb/favicon.png",
+ "name": "Jellyneo Item Database",
+ "triggers": [
+ "jid"
+ ],
+ "regions": {
+ "default": "https://items.jellyneo.net/search/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//db6fh3t4pcsjl.cloudfront.net/static/img/favicon.ico",
+ "name": "Jellynote",
+ "triggers": [
+ "jn"
+ ],
+ "regions": {
+ "default": "https://www.jellynote.com/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jemepropose.com/favicon.png",
+ "name": "Jemepropose.com",
+ "triggers": [
+ "jmp"
+ ],
+ "regions": {
+ "default": "http://www.jemepropose.com/annonces?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jergasdehablahispana.org/favicon.ico",
+ "name": "Jergas de habla hispana",
+ "triggers": [
+ "jergas"
+ ],
+ "regions": {
+ "default": "http://www.jergasdehablahispana.org/?pais=&palabra={{{term}}}&submit=Buscar&tipobusqueda=0"
+ }
+ },
+ {
+ "favicon": "https://www.liberty.edu/favicon.png",
+ "name": "Jerry Falwell Library",
+ "triggers": [
+ "jfl"
+ ],
+ "regions": {
+ "default": "https://www.liberty.edu/library/search-results/?type=all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static2.jetpens.com/images/a/000/143/143053.png?s=b2bdf6ad4bab6aad3f9e45d053bdd8ac",
+ "name": "Jet Pens",
+ "triggers": [
+ "jp",
+ "jetpens"
+ ],
+ "regions": {
+ "default": "http://www.jetpens.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jetimages.jetcdn.net/node-v3/img/favicon/favicon-16x16.png",
+ "name": "Jet.com",
+ "triggers": [
+ "j",
+ "jet"
+ ],
+ "regions": {
+ "default": "https://jet.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jetbrains.com/favicon-16x16.png",
+ "name": "Jetbrains",
+ "triggers": [
+ "jetbrains"
+ ],
+ "regions": {
+ "default": "https://www.jetbrains.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pannous.net/files/favicon.ico",
+ "name": "Jetwick",
+ "triggers": [
+ "jetwick"
+ ],
+ "regions": {
+ "default": "http://www.pannous.info/jetwick/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jeuxvideo.com/android-icon-144x144.png",
+ "name": "JeuxVideo",
+ "triggers": [
+ "jv"
+ ],
+ "regions": {
+ "default": "http://www.jeuxvideo.com/recherche.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jeuxvideo.com/android-icon-144x144.png",
+ "name": "JeuxVideo",
+ "triggers": [
+ "jeux",
+ "jeuxvideo.com"
+ ],
+ "regions": {
+ "default": "http://www.jeuxvideo.com/cgi-bin/rech_new.cgi?texte={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jeuxvideo.com/android-icon-144x144.png",
+ "name": "jeuxvideo.com",
+ "triggers": [
+ "jvcom"
+ ],
+ "regions": {
+ "default": "http://www.jeuxvideo.com/recherche.php?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.jeuxvideo.com/android-icon-144x144.png",
+ "name": "JeuxVideo.com",
+ "triggers": [
+ "jvd"
+ ],
+ "regions": {
+ "default": "http://www.jeuxvideo.com/recherche/jeux/{{{term}}}.htm"
+ }
+ },
+ {
+ "favicon": "http://www.jewornotjew.com/img/favicon2.ico",
+ "name": "Jew Or Not Jew",
+ "triggers": [
+ "jew"
+ ],
+ "regions": {
+ "default": "http://www.jewornotjew.com/search.jsp?SEARCH={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.parkour3.com/ui/img/favicon.png",
+ "name": "JeyLabr",
+ "triggers": [
+ "jeylabr"
+ ],
+ "regions": {
+ "default": "http://jeylabr.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--7IykX4GV--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/pch44wvo0v6acpdlt0f6.png",
+ "name": "jezebel.com",
+ "triggers": [
+ "jezebel"
+ ],
+ "regions": {
+ "default": "https://jezebel.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bintray.com/assets/favicon.png",
+ "name": "JFrog Bintray",
+ "triggers": [
+ "bintray"
+ ],
+ "regions": {
+ "default": "https://bintray.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jguitar.com/pics/shortcut-icon.png",
+ "name": "JGuitar",
+ "triggers": [
+ "jguitar"
+ ],
+ "regions": {
+ "default": "https://jguitar.com/chordsearch?chordsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.data.com/214.0.48/images/nonlogged/datadotcom/favicon.ico",
+ "name": "Jigsaw",
+ "triggers": [
+ "jigsaw"
+ ],
+ "regions": {
+ "default": "https://www.jigsaw.com/FreeTextSearch.xhtml?opCode=search&autoSuggested=true&freeText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//images.jimms.fi/jimms/favicon-16x16.png",
+ "name": "Jimm's",
+ "triggers": [
+ "jimms"
+ ],
+ "regions": {
+ "default": "https://www.jimms.fi/fi/Product/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://media.jinni.com/solutions/images/favicon.ico",
+ "name": "Jinni",
+ "triggers": [
+ "jinni"
+ ],
+ "regions": {
+ "default": "http://www.jinni.com/discovery.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.jisho.org/assets/favicon-062c4a0240e1e6d72c38aa524742c2d558ee6234497d91dd6b75a182ea823d65.ico",
+ "name": "Jisho",
+ "triggers": [
+ "ji",
+ "jisho"
+ ],
+ "regions": {
+ "default": "https://jisho.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.jkanime.net/assets/images/favicon.ico",
+ "name": "Jkanime",
+ "triggers": [
+ "jkanime"
+ ],
+ "regions": {
+ "default": "http://jkanime.net/buscar/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://hub.jmonkeyengine.org/uploads/default/1587/6c939c10700460d3.ico",
+ "name": "jMonkeyEngine Forum",
+ "triggers": [
+ "jme"
+ ],
+ "regions": {
+ "default": "https://hub.jmonkeyengine.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://job.am/favicon.ico",
+ "name": "Job.am",
+ "triggers": [
+ "job"
+ ],
+ "regions": {
+ "default": "https://job.am/hy/jobs?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jobintree.com/favicon.ico",
+ "name": "Jobintree",
+ "triggers": [
+ "jit"
+ ],
+ "regions": {
+ "default": "http://www.jobintree.com/emploi?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://englishjobs.de/favicon.ico",
+ "name": "Jobs in Germany",
+ "triggers": [
+ "jobsde"
+ ],
+ "regions": {
+ "default": "https://englishjobs.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jonathancoulton.com/favicon.ico",
+ "name": "JoCopedia",
+ "triggers": [
+ "joco"
+ ],
+ "regions": {
+ "default": "http://www.jonathancoulton.com/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://joefresh-resource-prod.joefresh.com/ContentMedia/icons/favicon-16x16.png",
+ "name": "Joe Fresh",
+ "triggers": [
+ "joefresh"
+ ],
+ "regions": {
+ "default": "https://www.joefresh.com/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://joemonster.org/favicon.ico",
+ "name": "Joe Monster",
+ "triggers": [
+ "jm",
+ "joemonster",
+ "joe"
+ ],
+ "regions": {
+ "default": "http://joemonster.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.johnlewis.com/assets/8c3282a/favicons/favicon-16x16.png",
+ "name": "John Lewis",
+ "triggers": [
+ "johnlewis",
+ "jl"
+ ],
+ "regions": {
+ "default": "http://www.johnlewis.com/Search/Search.aspx?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.johnstonesupply.com/storefront/template-resources/images/jsfavicon.ico",
+ "name": "Johnstone Supply",
+ "triggers": [
+ "jssupply"
+ ],
+ "regions": {
+ "default": "https://www.johnstonesupply.com/search/go?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/jjba/images/6/64/Favicon.ico/revision/latest?cb=20140116041418",
+ "name": "JoJo's Bizarre Encyclopedia",
+ "triggers": [
+ "jojo"
+ ],
+ "regions": {
+ "default": "http://jojo.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.joker.be/themes/custom/drupack/img/icons/app-icon/android-chrome-192x192.png",
+ "name": "Joker",
+ "triggers": [
+ "joker"
+ ],
+ "regions": {
+ "default": "https://www.joker.be/nl/groepsreizen/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://together.jolla.com/m/jolla/media/images/favicon.gif?v=3",
+ "name": "Jolla Questions",
+ "triggers": [
+ "jolla"
+ ],
+ "regions": {
+ "default": "https://together.jolla.com/questions/scope:all/sort:activity-desc/page:1/query:{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://jonathan-apps.com/favicon.ico",
+ "name": "Jonathan Precise Apps",
+ "triggers": [
+ "jonathan-apps"
+ ],
+ "regions": {
+ "default": "https://jonathan-apps.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//extensionscdn.joomla.org/templates/joomla/favicon.ico",
+ "name": "Joomla",
+ "triggers": [
+ "jed"
+ ],
+ "regions": {
+ "default": "http://extensions.joomla.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jornaldaparaiba.com.br/app/themes/jornaldapb/imagens/favicon.ico",
+ "name": "Jornal da Paraíba",
+ "triggers": [
+ "jornaldaparaiba"
+ ],
+ "regions": {
+ "default": "http://jornaldaparaiba.com.br/busca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://78.media.tumblr.com/avatar_b12f3f56788c_128.pnj",
+ "name": "Jotboard",
+ "triggers": [
+ "jotboard"
+ ],
+ "regions": {
+ "default": "https://jotboard.tumblr.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://astatic.ccmbg.com/www.journaldesfemmes.com/img/icons/favicon-16x16.png",
+ "name": "Journal des femmes",
+ "triggers": [
+ "jdf"
+ ],
+ "regions": {
+ "default": "http://www.journaldesfemmes.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://astatic.ccmbg.com/www.journaldunet.com/img/icons/favicon-16x16.png",
+ "name": "JournalDuNet",
+ "triggers": [
+ "jdn"
+ ],
+ "regions": {
+ "default": "http://www.journaldunet.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jovemnerd.com.br/wp-content/themes/jovemnerd/assets/favicons/favicon.ico?v=xQQlkMx9YN",
+ "name": "JovemNerd",
+ "triggers": [
+ "jovemnerd"
+ ],
+ "regions": {
+ "default": "http://jovemnerd.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jovemnerd.com.br/wp-content/themes/jovemnerd/assets/favicons/favicon.ico?v=xQQlkMx9YN",
+ "name": "Joven Nerd",
+ "triggers": [
+ "jnn"
+ ],
+ "regions": {
+ "default": "https://jovemnerd.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://joyreactor.cc/favicon.ico",
+ "name": "JoyReactor",
+ "triggers": [
+ "jr"
+ ],
+ "regions": {
+ "default": "http://joyreactor.cc/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://joystiq.search.aol.com/favicon.ico",
+ "name": "Joystiq",
+ "triggers": [
+ "joystiq"
+ ],
+ "regions": {
+ "default": "http://joystiq.search.aol.com/search?q={{{term}}}&invocationType=wl-joystiq"
+ }
+ },
+ {
+ "favicon": "https://www.jpc.de/favicon.ico",
+ "name": "JPC",
+ "triggers": [
+ "jpc"
+ ],
+ "regions": {
+ "default": "https://www.jpc.de/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jpopsuki.eu/static/styles/public/favicon.ico",
+ "name": "Jpopsuki",
+ "triggers": [
+ "jpopsuki",
+ "jps"
+ ],
+ "regions": {
+ "default": "https://jpopsuki.eu/torrents.php?searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jqapi.com/favicon.ico",
+ "name": "JQAPI",
+ "triggers": [
+ "jqapi"
+ ],
+ "regions": {
+ "default": "http://jqapi.com/#p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//api.jquery.com/jquery-wp-content/themes/api.jquery.com/i/favicon.ico",
+ "name": "jquery",
+ "triggers": [
+ "jqd"
+ ],
+ "regions": {
+ "default": "https://api.jquery.com/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//api.jquery.com/jquery-wp-content/themes/api.jquery.com/i/favicon.ico",
+ "name": "jQuery Docs",
+ "triggers": [
+ "jquery",
+ "jq"
+ ],
+ "regions": {
+ "default": "https://api.jquery.com/?ns0=1&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//jquerymobile.com/jquery-wp-content/themes/jquerymobile.com/i/favicon.ico",
+ "name": "jquerymobile.com",
+ "triggers": [
+ "jqm"
+ ],
+ "regions": {
+ "default": "https://jquerymobile.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.jrdevjobs.com/favicon.ico",
+ "name": "Jr.DevJobs",
+ "triggers": [
+ "jrdevjobs"
+ ],
+ "regions": {
+ "default": "https://www.jrdevjobs.com/jobs?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jshint.com/favicon.ico",
+ "name": "JSHint",
+ "triggers": [
+ "jshint"
+ ],
+ "regions": {
+ "default": "http://www.jshint.com/docs/options/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jsonlint.com/icons/icon-hires.png",
+ "name": "JsonLint",
+ "triggers": [
+ "jsonlint"
+ ],
+ "regions": {
+ "default": "http://jsonlint.com/?json={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.jstor.org/assets/global_20180703T1412/build/images/favicons/favicon-32x32.png",
+ "name": "JSTOR",
+ "triggers": [
+ "jstor"
+ ],
+ "regions": {
+ "default": "https://www.jstor.org/action/doBasicSearch?Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//i.juick.com/favicon-16x16.png",
+ "name": "juick.com",
+ "triggers": [
+ "juick"
+ ],
+ "regions": {
+ "default": "https://juick.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jujucharms.com/static/img/favicon.ico",
+ "name": "Juju Charm Store",
+ "triggers": [
+ "juju"
+ ],
+ "regions": {
+ "default": "https://jujucharms.com/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jukuu.com/favicon.ico",
+ "name": "Jukuu",
+ "triggers": [
+ "jukuu"
+ ],
+ "regions": {
+ "default": "http://jukuu.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.jula.se/Frontend/Build/images/legacy/favicon-new.ico",
+ "name": "Jula",
+ "triggers": [
+ "jula"
+ ],
+ "regions": {
+ "default": "https://www.jula.se/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.julialang.org/favicon.ico",
+ "name": "Julia language documentation",
+ "triggers": [
+ "julia"
+ ],
+ "regions": {
+ "default": "https://docs.julialang.org/en/latest/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://juliovernerx.com.br/favicon.ico",
+ "name": "Julio Verne Raios X Industrial",
+ "triggers": [
+ "juliovernerx"
+ ],
+ "regions": {
+ "default": "http://juliovernerx.com.br/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.e-jumbo.gr/themes/templatetheme/images/favicon.ico",
+ "name": "Jumbo",
+ "triggers": [
+ "ejumbo"
+ ],
+ "regions": {
+ "default": "http://www.e-jumbo.gr/pages/searchProducts.aspx?lang=el&search-for={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jumbo.com/INTERSHOP/static/WFS/Jumbo-Grocery-Site/-/-/nl_NL/images/favicon.ico",
+ "name": "Jumbo Supermarkten",
+ "triggers": [
+ "jumbosupermarkt"
+ ],
+ "regions": {
+ "default": "http://www.jumbo.com/zoeken?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.junglee.com/favicon.ico",
+ "name": "Junglee",
+ "triggers": [
+ "junglee"
+ ],
+ "regions": {
+ "default": "http://www.junglee.com/mn/search/junglee/ref=nav_sb_noss?url=search-alias%3Daps&field-keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://junglevibe2.net/favicon.ico",
+ "name": "JungleVibe",
+ "triggers": [
+ "jvibe"
+ ],
+ "regions": {
+ "default": "http://junglevibe2.net/tracks/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.juniper.net/favicon.ico",
+ "name": "Juniper networks",
+ "triggers": [
+ "Juninet"
+ ],
+ "regions": {
+ "default": "https://www.juniper.net/search/gsa/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.junodownload.com/favicon.ico",
+ "name": "Juno Download",
+ "triggers": [
+ "junodl"
+ ],
+ "regions": {
+ "default": "http://www.junodownload.com/search/?q[all][0]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.juno.co.uk/favicon.ico",
+ "name": "juno.co.uk",
+ "triggers": [
+ "juno"
+ ],
+ "regions": {
+ "default": "https://www.juno.co.uk/search/?q[all][]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jupiterbroadcasting.com/wp-content/themes/jb2014/favicon.ico",
+ "name": "jupiter broadcasting",
+ "triggers": [
+ "jb"
+ ],
+ "regions": {
+ "default": "http://www.jupiterbroadcasting.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jusbrasil.com.br/favicon.ico",
+ "name": "Jusbrasil",
+ "triggers": [
+ "jusbr"
+ ],
+ "regions": {
+ "default": "http://www.jusbrasil.com.br/busca?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://justnebulizers.com/skin/frontend/v4/justnebulizers/favicon.png",
+ "name": "Just Nebulizers",
+ "triggers": [
+ "justnebulizers"
+ ],
+ "regions": {
+ "default": "https://justnebulizers.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://justwalkers.com/skin/frontend/v4/justwalkers/favicon.png",
+ "name": "Just Walkers",
+ "triggers": [
+ "justwalkers"
+ ],
+ "regions": {
+ "default": "http://justwalkers.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://chaitan.cloudapp.net/favicon.ico",
+ "name": "JustCompare",
+ "triggers": [
+ "jcomp"
+ ],
+ "regions": {
+ "default": "http://chaitan.cloudapp.net/justcompare/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.justdial.com/ca/public/img/favicon.ico",
+ "name": "JustDial Canada",
+ "triggers": [
+ "jdca"
+ ],
+ "regions": {
+ "default": "http://ca.justdial.com/allus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us.justdial.com/public/img/favicon.ico",
+ "name": "JustDial India",
+ "triggers": [
+ "jdin"
+ ],
+ "regions": {
+ "default": "http://www.justdial.com/National-Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us.justdial.com/public/img/favicon.ico",
+ "name": "JustDial Pune",
+ "triggers": [
+ "jdpune"
+ ],
+ "regions": {
+ "default": "http://www.justdial.com/Pune/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us.justdial.com/public/img/favicon.ico",
+ "name": "JustDial UK",
+ "triggers": [
+ "jduk"
+ ],
+ "regions": {
+ "default": "http://uk.justdial.com/alluk/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us.justdial.com/public/img/favicon.ico",
+ "name": "JustDial USA",
+ "triggers": [
+ "jdus"
+ ],
+ "regions": {
+ "default": "http://us.justdial.com/allus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://justatic.com/v/20180215174249/shared/images/justia/justia.ico",
+ "name": "Justia",
+ "triggers": [
+ "justia"
+ ],
+ "regions": {
+ "default": "https://law.justia.com/lawsearch?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://justatic.com/v/20180515141824/shared/images/justia/justia.ico",
+ "name": "Justia.com trademarks",
+ "triggers": [
+ "tmark"
+ ],
+ "regions": {
+ "default": "http://trademarks.justia.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://or.justice.cz/ias/ui/resource/images/favicon.ico",
+ "name": "Justice - obchodní rejstřík",
+ "triggers": [
+ "justice"
+ ],
+ "regions": {
+ "default": "https://or.justice.cz/ias/ui/rejstrik-$firma?jenPlatne=PLATNE&nazev={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.justwatch.com/android-icon-196x196.png",
+ "name": "JustWatch",
+ "triggers": [
+ "justwatch"
+ ],
+ "regions": {
+ "default": "https://www.justwatch.com/us/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ja.is/static/i/fav.fddd4a784c07.ico",
+ "name": "Já.is",
+ "triggers": [
+ "já"
+ ],
+ "regions": {
+ "default": "http://ja.is/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.jofogas.hu/favicon.ico",
+ "name": "Jófogás",
+ "triggers": [
+ "jofogas"
+ ],
+ "regions": {
+ "default": "http://www.jofogas.hu/magyarorszag?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/k-on/images/6/64/Favicon.ico/revision/latest?cb=20130427154605",
+ "name": "K-ON! Wiki",
+ "triggers": [
+ "k-on"
+ ],
+ "regions": {
+ "default": "http://k-on.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kaartje2go.nl/assets/images/icons/apple-touch-icon-192x192.png?v=1489402927",
+ "name": "Kaartje2go",
+ "triggers": [
+ "kaartje"
+ ],
+ "regions": {
+ "default": "https://www.kaartje2go.nl/zoeken?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ar.kairosweb.com/favicon.ico",
+ "name": "Kairos Argentina",
+ "triggers": [
+ "kar"
+ ],
+ "regions": {
+ "default": "http://ar.kairosweb.com/resultado_busq.html?input_buscar={{{term}}}&boton_buscar="
+ }
+ },
+ {
+ "favicon": "http://kakaku.com/favicon.ico",
+ "name": "kakaku.com",
+ "triggers": [
+ "kakaku"
+ ],
+ "regions": {
+ "default": "http://kakaku.com/search_results/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kakijun.jp/favicon.ico",
+ "name": "Kakijun.jp",
+ "triggers": [
+ "kakijun"
+ ],
+ "regions": {
+ "default": "http://kakijun.jp/main/u_kensaku.php?KANJI={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kalliope.staatsbibliothek-berlin.de/favicon.ico",
+ "name": "Kalliope Verbundkatalog",
+ "triggers": [
+ "kpe"
+ ],
+ "regions": {
+ "default": "http://kalliope.staatsbibliothek-berlin.de/de/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kamelopedia.mormo.org/favicon.ico",
+ "name": "Kamelopedia",
+ "triggers": [
+ "kamelopedia"
+ ],
+ "regions": {
+ "default": "http://kamelopedia.mormo.org/index.php?title=Spezial%3ASuche&search={{{term}}}&button=Senden"
+ }
+ },
+ {
+ "favicon": "http://www.kvk.nl/favicon.ico",
+ "name": "Kamer van Koophandel",
+ "triggers": [
+ "kvk"
+ ],
+ "regions": {
+ "default": "http://www.kvk.nl/orderstraat/bedrijf-kiezen/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kbbi.kemdikbud.go.id/kbbi-daring-3.ico",
+ "name": "Kamus Besar Bahasa Indonesia",
+ "triggers": [
+ "kbbi"
+ ],
+ "regions": {
+ "default": "https://kbbi.kemdikbud.go.id/entri/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.kancollewiki.net/frontpage/favicon.ico",
+ "name": "Kancolle Wiki",
+ "triggers": [
+ "enkcwiki"
+ ],
+ "regions": {
+ "default": "http://en.kancollewiki.net/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://kanjidamage.com/favicon.ico",
+ "name": "Kanji Damage",
+ "triggers": [
+ "kd"
+ ],
+ "regions": {
+ "default": "http://kanjidamage.com/kanji/search?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kn.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Kannada Wikipedia",
+ "triggers": [
+ "wkn"
+ ],
+ "regions": {
+ "default": "https://kn.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/kancolle/images/6/64/Favicon.ico/revision/latest?cb=20140121053941",
+ "name": "Kantai Collection Wiki",
+ "triggers": [
+ "kancolle"
+ ],
+ "regions": {
+ "default": "http://kancolle.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kaomojiya.jp/favicon.ico",
+ "name": "Kaomojiya",
+ "triggers": [
+ "kmjy"
+ ],
+ "regions": {
+ "default": "http://kaomojiya.jp/keyword/{{{term}}}/?search_flg=1"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "KaOS",
+ "triggers": [
+ "kcp"
+ ],
+ "regions": {
+ "default": "https://github.com/KaOS-Community-Packages?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kaosenlared.net/favicon.ico",
+ "name": "Kaos en la Red",
+ "triggers": [
+ "kr"
+ ],
+ "regions": {
+ "default": "http://www.kaosenlared.net/buscar.html?searchword={{{term}}}&ordering=newest&searchphrase=all"
+ }
+ },
+ {
+ "favicon": "http://kaosx.tk/favicon.ico",
+ "name": "KaOS packages",
+ "triggers": [
+ "kaospkg"
+ ],
+ "regions": {
+ "default": "http://kaosx.tk/packages/?act=search&subdir=&sortby=date&order=descending&searchpattern={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://forum.kaosx.us/assets/favicon-j5db1ykk.png",
+ "name": "KaOS website search",
+ "triggers": [
+ "kaos"
+ ],
+ "regions": {
+ "default": "https://forum.kaosx.us/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.2dehands.be/css/3281/images/favicons/2dehands-be/favicon.ico",
+ "name": "Kapaza",
+ "triggers": [
+ "kapaza"
+ ],
+ "regions": {
+ "default": "http://kapaza.be/belgie?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://learnyst.s3.amazonaws.com/assets/schools/1502/resources/images/16b_msph51xsnqr94exnipb9.png",
+ "name": "Karaoke Garage",
+ "triggers": [
+ "karaoke"
+ ],
+ "regions": {
+ "default": "http://www.karaokegarage.com/songs/songSearch?utf8=%E2%9C%93&song_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://img.karaoketexty.cz/img/favicon.ico",
+ "name": "KaraokeTexty.cz",
+ "triggers": [
+ "ktcz"
+ ],
+ "regions": {
+ "default": "http://www.karaoketexty.cz/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.karmadecay.com/favicon.ico",
+ "name": "Karma Decay",
+ "triggers": [
+ "karmadecay"
+ ],
+ "regions": {
+ "default": "http://karmadecay.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d206jyh61op0ot.cloudfront.net/skin/frontend/templatemela/MAG100201/favicon.ico",
+ "name": "KarmaPlace",
+ "triggers": [
+ "KarmaPlace"
+ ],
+ "regions": {
+ "default": "http://www.karmaplace.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.kaskus.id/favicon.ico?v=1.1",
+ "name": "Kaskus",
+ "triggers": [
+ "kas"
+ ],
+ "regions": {
+ "default": "http://www.kaskus.co.id/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.kaskus.id/favicon.ico?v=1.1",
+ "name": "Kaskus",
+ "triggers": [
+ "w3kaskus"
+ ],
+ "regions": {
+ "default": "http://www.kaskus.co.id/search/forum?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.kaskus.id/favicon.ico?v=1.1",
+ "name": "Kaskus",
+ "triggers": [
+ "kaskus"
+ ],
+ "regions": {
+ "default": "https://www.kaskus.co.id/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kasperfred.com/static/icons/logo.ico",
+ "name": "Kasperfred",
+ "triggers": [
+ "kf"
+ ],
+ "regions": {
+ "default": "https://kasperfred.com/posts/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://support.kaspersky.com/resources/img/favicon_.ico",
+ "name": "Kaspersky Lab Technical Support",
+ "triggers": [
+ "kaspersky"
+ ],
+ "regions": {
+ "default": "https://support.kaspersky.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kateglo.com/images/favicon.ico",
+ "name": "Kateglo",
+ "triggers": [
+ "kateglo"
+ ],
+ "regions": {
+ "default": "http://kateglo.com/?phrase={{{term}}}&mod=dictionary"
+ }
+ },
+ {
+ "favicon": "http://www.katsomo.fi/assets/icon/favicon-96x96.png",
+ "name": "Katsomo",
+ "triggers": [
+ "katsomo"
+ ],
+ "regions": {
+ "default": "http://www.katsomo.fi/search.do?treeId=33992&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.katzenspielzeug-selber-machen.de/favicon.ico",
+ "name": "Katzenspielzeug-selber-machen.de",
+ "triggers": [
+ "katzenspielzeug"
+ ],
+ "regions": {
+ "default": "http://www.katzenspielzeug-selber-machen.de//?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.kayak.co.uk/favicon.ico",
+ "name": "Kayak",
+ "triggers": [
+ "kayak"
+ ],
+ "regions": {
+ "default": "https://www.kayak.co.uk/flights?ispredir=true#{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://kk.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Kazakh Wikipedia",
+ "triggers": [
+ "wkk"
+ ],
+ "regions": {
+ "default": "https://kk.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i1.wp.com/fegtherm.hu/wp-content/uploads/2016/06/cropped-logo.jpg?fit=192,192",
+ "name": "kazan",
+ "triggers": [
+ "kazan"
+ ],
+ "regions": {
+ "default": "http://fegszerviz.hu/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kazazz.com/cgi-bin/s/images/favicon.png",
+ "name": "Kazazz",
+ "triggers": [
+ "kazazz"
+ ],
+ "regions": {
+ "default": "http://kazazz.com/cgi-bin/s/search.cgi?keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://kbmode.com/favicon.ico",
+ "name": "KB Mode",
+ "triggers": [
+ "kbmode"
+ ],
+ "regions": {
+ "default": "http://kbmode.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://api.kde.org/resources/favicon.ico",
+ "name": "KDE API Reference",
+ "triggers": [
+ "kapi"
+ ],
+ "regions": {
+ "default": "https://api.kde.org/mapsearcher.php?class={{{term}}}&module=ALL&version=ALL&go=Go"
+ }
+ },
+ {
+ "favicon": "https://bugs.kde.org/images/favicon.ico",
+ "name": "KDE Bugs",
+ "triggers": [
+ "kbugs"
+ ],
+ "regions": {
+ "default": "https://bugs.kde.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.kde.org/favicon.png",
+ "name": "KDE Community Wiki",
+ "triggers": [
+ "kcommunity"
+ ],
+ "regions": {
+ "default": "https://community.kde.org/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://projects.kde.org/favicon.ico",
+ "name": "KDE Git Projects",
+ "triggers": [
+ "kprojects"
+ ],
+ "regions": {
+ "default": "https://projects.kde.org/search?q={{{term}}}&all_words=1&projects=1&submit=Submit"
+ }
+ },
+ {
+ "favicon": "https://techbase.kde.org/favicon.png",
+ "name": "KDE TechBase",
+ "triggers": [
+ "ktechbase",
+ "ktb"
+ ],
+ "regions": {
+ "default": "https://techbase.kde.org/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://userbase.kde.org/favicon.png",
+ "name": "KDE Userbase",
+ "triggers": [
+ "kuserbase"
+ ],
+ "regions": {
+ "default": "https://userbase.kde.org/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://www.keepalbanyboring.com/favicon.ico",
+ "name": "Keep Albany Boring",
+ "triggers": [
+ "kab"
+ ],
+ "regions": {
+ "default": "http://www.keepalbanyboring.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://keepa.com/favicon.ico?v=2",
+ "name": "Keepa",
+ "triggers": [
+ "keepa"
+ ],
+ "regions": {
+ "default": "http://keepa.com/#search/x-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://keepvid.com/favicon.ico",
+ "name": "KeepVid",
+ "triggers": [
+ "keepvid"
+ ],
+ "regions": {
+ "default": "http://keepvid.com/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ddg.gg/favicon.ico",
+ "name": "KeepVid",
+ "triggers": [
+ "kv"
+ ],
+ "regions": {
+ "default": "https://ddg.gg/?q=!keepvid+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://keithspecialty.com/favicon.ico",
+ "name": "Keith Specialty",
+ "triggers": [
+ "keithspecialty"
+ ],
+ "regions": {
+ "default": "http://keithspecialty.com/cgi-keithspecialty/sb/productsearch.cgi?storeid=*0ee0f14a0870280c8d&search_field= {{{term}}} "
+ }
+ },
+ {
+ "favicon": "//d1l2emnu9r9dtc.cloudfront.net/favicon.ico",
+ "name": "Kekanto",
+ "triggers": [
+ "kekanto"
+ ],
+ "regions": {
+ "default": "http://br.kekanto.com/search?&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kelkoogroup.com/wp-content/themes/b2b/public/img/favicon/16x16.png",
+ "name": "Kelkoo Sweden",
+ "triggers": [
+ "kelkoose"
+ ],
+ "regions": {
+ "default": "http://shopping.kelkoo.se/ss-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.kelkoogroup.com/wp-content/themes/b2b/public/img/favicon/16x16.png",
+ "name": "Kelkoo UK",
+ "triggers": [
+ "kelkoo"
+ ],
+ "regions": {
+ "default": "http://shopping.kelkoo.co.uk/ss-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.kbb.com/favicon.ico",
+ "name": "Kelly Blue Book",
+ "triggers": [
+ "kbb"
+ ],
+ "regions": {
+ "default": "https://www.kbb.com/search/?source=homepage&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalog.kentonlibrary.org/favicon.ico",
+ "name": "Kenton County Public Library",
+ "triggers": [
+ "kcpl"
+ ],
+ "regions": {
+ "default": "http://catalog.kentonlibrary.org/eg/opac/results?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.kerbalspaceprogram.com/favicon.ico",
+ "name": "Kerbal Space Program Wiki",
+ "triggers": [
+ "ksp"
+ ],
+ "regions": {
+ "default": "http://wiki.kerbalspaceprogram.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.kerbalspaceprogram.com/favicon.ico",
+ "name": "Kerbal Space Program Wiki",
+ "triggers": [
+ "kspwiki"
+ ],
+ "regions": {
+ "default": "http://wiki.kerbalspaceprogram.com/w/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://pplware.sapo.pt/parceiros/pplware_chrome.png",
+ "name": "KeroDicas",
+ "triggers": [
+ "kerodicas"
+ ],
+ "regions": {
+ "default": "http://www.kerodicas.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kerosenokomputing.com/favicon.ico",
+ "name": "Keroseno Komputing",
+ "triggers": [
+ "kero"
+ ],
+ "regions": {
+ "default": "http://www.kerosenokomputing.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://keygenmusic.net/favicon.ico",
+ "name": "KEYGENMUSiC",
+ "triggers": [
+ "kgm"
+ ],
+ "regions": {
+ "default": "http://keygenmusic.net/?page=search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kg-portal.ru/favicon-16x16.png",
+ "name": "KG-Portal",
+ "triggers": [
+ "kg"
+ ],
+ "regions": {
+ "default": "http://kg-portal.ru/?search&s_str= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.khanacademy.org/favicon.ico?leaf",
+ "name": "Khan Academic",
+ "triggers": [
+ "khan",
+ "ka",
+ "khanacademy"
+ ],
+ "regions": {
+ "default": "https://www.khanacademy.org/search?page_search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.khanacademy.org/favicon.ico?leaf",
+ "name": "Khan Academy (Profile Page)",
+ "triggers": [
+ "kaprof"
+ ],
+ "regions": {
+ "default": "https://www.khanacademy.org/profile/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.khronos.org/favicon.ico",
+ "name": "Khronos",
+ "triggers": [
+ "khronos"
+ ],
+ "regions": {
+ "default": "https://www.khronos.org/search/?cx=017055583490642512057:_ak1bpok_no&cof=FORID:9&q={{{term}}}&sa=Search&siteurl=www.khronos.org/"
+ }
+ },
+ {
+ "favicon": "http://www.kickasstorrents.com/favicon.ico",
+ "name": "Kick Ass Torrents",
+ "triggers": [
+ "kickasstorrents"
+ ],
+ "regions": {
+ "default": "http://www.kickasstorrents.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://kickass.to/favicon.ico",
+ "name": "Kickass Torrents",
+ "triggers": [
+ "kick"
+ ],
+ "regions": {
+ "default": "http://kickass.to/usearch/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://kickasstop.net/themes/kickass/images/favicon.ico",
+ "name": "Kickass Torrents",
+ "triggers": [
+ "k"
+ ],
+ "regions": {
+ "default": "https://kickasstop.net/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://statuskatcrco-631f.kxcdn.com/assets/images/favicon.ico",
+ "name": "Kickass Torrents Community",
+ "triggers": [
+ "kat"
+ ],
+ "regions": {
+ "default": "https://katcr.co/new/search-torrents.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//kickass.unblocked.vet/kastatic/favicon.ico",
+ "name": "Kickass Torrents Proxy",
+ "triggers": [
+ "katp"
+ ],
+ "regions": {
+ "default": "https://kickass.unblocked.live/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.kicker.de/library/image/favicon/32x32_rot.ico",
+ "name": "kicker online",
+ "triggers": [
+ "kicker"
+ ],
+ "regions": {
+ "default": "http://www.kicker.de/home/suchergebnisse.html?suchbegriff={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kicknews.net/favicon.ico",
+ "name": "KickNews",
+ "triggers": [
+ "kicknews"
+ ],
+ "regions": {
+ "default": "https://www.kicknews.net/news/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.kickstarter.com/assets/touch-icon-192x192-710ace6840055401ec231c1d86ce7312c56bb510fad8b775229b0ce73d0054c5.png",
+ "name": "Kickstarter",
+ "triggers": [
+ "ks"
+ ],
+ "regions": {
+ "default": "https://www.kickstarter.com/projects/search?utf8=✓&term={{{term}}}+"
+ }
+ },
+ {
+ "favicon": "https://static.kickstarter.com/assets/touch-icon-192x192-710ace6840055401ec231c1d86ce7312c56bb510fad8b775229b0ce73d0054c5.png",
+ "name": "Kickstarter",
+ "triggers": [
+ "kickstarter"
+ ],
+ "regions": {
+ "default": "https://www.kickstarter.com/projects/search?utf8=✓&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.kickstarter.com/assets/touch-icon-192x192-710ace6840055401ec231c1d86ce7312c56bb510fad8b775229b0ce73d0054c5.png",
+ "name": "Kickstarter",
+ "triggers": [
+ "kst"
+ ],
+ "regions": {
+ "default": "https://www.kickstarter.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.kicktraq.com/favicon.ico?ver=1.0",
+ "name": "Kicktraq",
+ "triggers": [
+ "kt",
+ "kicktraq"
+ ],
+ "regions": {
+ "default": "https://www.kicktraq.com/search/?find={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kidrex.org/favicon.ico",
+ "name": "Kidrex",
+ "triggers": [
+ "kidrex"
+ ],
+ "regions": {
+ "default": "http://www.kidrex.org/results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kidrom.ru/favicon.ico",
+ "name": "KiDROM.RU",
+ "triggers": [
+ "kidrom"
+ ],
+ "regions": {
+ "default": "http://kidrom.ru/products/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.criticsinc.com/photos/kim-app-icons/favicon.ico",
+ "name": "Kids in Mind",
+ "triggers": [
+ "kim"
+ ],
+ "regions": {
+ "default": "http://www.kids-in-mind.com/cgi-bin/search/search.pl?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kidzsearch.com/favicon-16x16.png",
+ "name": "KidzSearch",
+ "triggers": [
+ "kzs"
+ ],
+ "regions": {
+ "default": "http://www.kidzsearch.com/kzsearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kielitoimistonsanakirja.fi/favicon.ico",
+ "name": "Kielitoimiston sanakirja",
+ "triggers": [
+ "kotus"
+ ],
+ "regions": {
+ "default": "http://www.kielitoimistonsanakirja.fi/netmot.exe?page=results&UI=fi80&Opt=8&dic=1&SearchWord={{{term}}}&SearchMode=1"
+ }
+ },
+ {
+ "favicon": "http://www.kieskeurig.nl/assets/vbfefb4a5cb5d25648ff493b61558fc650cd9d026/favicon.png",
+ "name": "KIESKEURIG",
+ "triggers": [
+ "kieskeurig"
+ ],
+ "regions": {
+ "default": "http://www.kieskeurig.nl/zoeken/index.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ca.classistatic.com/static/V/6694/img/favicons/favicon.ico",
+ "name": "Kijiji Great Montreal",
+ "triggers": [
+ "kijijigm"
+ ],
+ "regions": {
+ "default": "https://www.kijiji.ca/b-grand-montreal/{{{term}}}/k0l80002"
+ }
+ },
+ {
+ "favicon": "https://www.kijiji.it/favicon.ico",
+ "name": "kijiji.it",
+ "triggers": [
+ "kijijiit"
+ ],
+ "regions": {
+ "default": "https://www.kijiji.it/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.killerstartups.com/favicon.ico",
+ "name": "Killer Startups",
+ "triggers": [
+ "killerstartups"
+ ],
+ "regions": {
+ "default": "http://www.killerstartups.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d2giyh01gjb6fi.cloudfront.net/images/favicon.ico",
+ "name": "Kimovil",
+ "triggers": [
+ "kimovil"
+ ],
+ "regions": {
+ "default": "http://www.kimovil.com/es/comparar-precios-moviles?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kinderfilmliste.de/favicon.ico",
+ "name": "KinderFilmListe.de",
+ "triggers": [
+ "kinderfilmliste"
+ ],
+ "regions": {
+ "default": "http://www.kinderfilmliste.de/?suche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.amazon.de/favicon.ico",
+ "name": "Kindle Shop (German)",
+ "triggers": [
+ "kindlede"
+ ],
+ "regions": {
+ "default": "https://www.amazon.de/s/ref=nb_sb_noss?__mk_de_DE=ÅMÅŽÕÑ&url=search-alias%3Ddigital-text&field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.amazon.es/favicon.ico",
+ "name": "Kindle Spain",
+ "triggers": [
+ "kindlees"
+ ],
+ "regions": {
+ "default": "https://www.amazon.es/s/search-alias%3Ddigital-text&field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.amazon.com.br/favicon.ico",
+ "name": "Kindle Unlimited Brasil",
+ "triggers": [
+ "unlimitedbr"
+ ],
+ "regions": {
+ "default": "https://www.amazon.com.br/s/ref=sr_nr_p_n_feature_nineteen_0?fst=as%3Aoff&rh=n%3A5308307011%2Ck%3Athoth+tarot%2Cp_n_feature_nineteen_browse-bin%3A9365943011&bbn=5308307011&keywords={{{term}}}&ie=UTF8&qid=1485791277&rnid=9365942011"
+ }
+ },
+ {
+ "favicon": "https://kcls.bibliocommons.com/images/WA-KCLS/favicon.ico",
+ "name": "King County Library System",
+ "triggers": [
+ "kcls"
+ ],
+ "regions": {
+ "default": "https://kcls.bibliocommons.com/search?t=smart&search_category=keyword&q={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.kingjamesbibleonline.org/images/favicon.png",
+ "name": "King James Bible Online",
+ "triggers": [
+ "kjv"
+ ],
+ "regions": {
+ "default": "http://www.kingjamesbibleonline.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.biblestudytools.com/Content/Images/favicon.ico",
+ "name": "King James Bible Study",
+ "triggers": [
+ "kj"
+ ],
+ "regions": {
+ "default": "http://www.biblestudytools.com/search/?q={{{term}}}&s=Bibles&t=kjv"
+ }
+ },
+ {
+ "favicon": "https://www.khinsider.com/layout/favicon.ico",
+ "name": "Kingdom Hearts Insider",
+ "triggers": [
+ "khinsider"
+ ],
+ "regions": {
+ "default": "http://www.khinsider.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kol.coldfront.net/favicon.ico",
+ "name": "Kingdom of Loathing Wiki",
+ "triggers": [
+ "kolw",
+ "kol"
+ ],
+ "regions": {
+ "default": "http://kol.coldfront.net/thekolwiki/index.php/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://en.kingofsat.net/favicon.ico",
+ "name": "KingOfSat",
+ "triggers": [
+ "kos"
+ ],
+ "regions": {
+ "default": "http://en.kingofsat.net/find.php?question={{{term}}}&Submit=Zap"
+ }
+ },
+ {
+ "favicon": "https://cdns.kinguin.net/media/favicon/stores/1/favicon.png",
+ "name": "Kinguin",
+ "triggers": [
+ "kinguin"
+ ],
+ "regions": {
+ "default": "https://www.kinguin.net/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kinige.com/favicon.ico",
+ "name": "Kinige",
+ "triggers": [
+ "kinige"
+ ],
+ "regions": {
+ "default": "http://kinige.com/ksearch.php?searchfor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://st5.kp.yandex.net/public/img/favicons/favicon.ico",
+ "name": "Kinopoisk",
+ "triggers": [
+ "kino",
+ "kpoisk"
+ ],
+ "regions": {
+ "default": "https://www.kinopoisk.ru/index.php?first=no&what=&kp_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kinox.to/gr/favicon.ico",
+ "name": "kinox",
+ "triggers": [
+ "kinox"
+ ],
+ "regions": {
+ "default": "https://kinox.to/Search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.getkirby.com/assets/images/favicon.png",
+ "name": "Kirby",
+ "triggers": [
+ "kirby"
+ ],
+ "regions": {
+ "default": "https://getkirby.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pegasos.kirjas.to/favicon.ico",
+ "name": "Kirkkonummen verkkokirjasto",
+ "triggers": [
+ "pegasos"
+ ],
+ "regions": {
+ "default": "http://pegasos.kirjas.to/selaushaku.asp?kohde=vapaasana&hakuehto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kissanime.io/favicon.ico",
+ "name": "KissAnime",
+ "triggers": [
+ "kissanime"
+ ],
+ "regions": {
+ "default": "http://kissanime.io/Search/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kissanime.ru/favicon.ico",
+ "name": "Kissanime",
+ "triggers": [
+ "kiss"
+ ],
+ "regions": {
+ "default": "http://kissanime.ru/Search/Anime/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3v4jsc54141g1.cloudfront.net/favicon.ico",
+ "name": "KissKissBankBank",
+ "triggers": [
+ "kissbb"
+ ],
+ "regions": {
+ "default": "http://www.kisskissbankbank.com/fr/search?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3v4jsc54141g1.cloudfront.net/favicon.ico",
+ "name": "KissKissBankBank",
+ "triggers": [
+ "kkbb"
+ ],
+ "regions": {
+ "default": "http://www.kisskissbankbank.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kissmanga.com/favicon.ico",
+ "name": "KissManga",
+ "triggers": [
+ "km"
+ ],
+ "regions": {
+ "default": "http://kissmanga.com/search/manga/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kissmanga.com/favicon.ico",
+ "name": "Kissmanga",
+ "triggers": [
+ "kmanga"
+ ],
+ "regions": {
+ "default": "http://kissmanga.com/Search/Manga/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.kitkraft.com/assets/favicon-3d1669a6888cc1688dbf0cb0d96c581321f012ba42428a951a193538f49c230d.ico",
+ "name": "Kit Kraft",
+ "triggers": [
+ "kitkraft"
+ ],
+ "regions": {
+ "default": "http://kitkraft.com/search_a.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://primo.bibliothek.kit.edu/favicon.ico",
+ "name": "KIT-Bibliothek",
+ "triggers": [
+ "kit"
+ ],
+ "regions": {
+ "default": "http://primo.bibliothek.kit.edu/primo_library/libweb/action/search.do?mode=Basic&vid=KIT&vl%28freeText0%29={{{term}}}&vl%28freeText0%29=test&fn=search&tab=kit&srt=date"
+ }
+ },
+ {
+ "favicon": "https://kithnkinkreations.com/goldywithmotion/seamless/kkkiconized.ico",
+ "name": "Kith n kin kreations",
+ "triggers": [
+ "kithnkinkreations"
+ ],
+ "regions": {
+ "default": "https://kithnkinkreations.net/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://kitsu.io/favicon-16x16-a6784d245c98cfe73594698e7098e756.png",
+ "name": "Kitsu",
+ "triggers": [
+ "kitsu",
+ "ksu"
+ ],
+ "regions": {
+ "default": "https://kitsu.io/anime?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.bloodrizer.ru/favicon.ico",
+ "name": "Kittens Game Wiki",
+ "triggers": [
+ "kgw"
+ ],
+ "regions": {
+ "default": "http://www.bloodrizer.ru/games/kittens/wiki/index.php?action=search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kc-mm.com/favicon.ico",
+ "name": "KittyCorp: MeowMix",
+ "triggers": [
+ "kcmm"
+ ],
+ "regions": {
+ "default": "http://kc-mm.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kivy.org/docs/favicon.ico",
+ "name": "Kivy API docs",
+ "triggers": [
+ "kivyapi",
+ "kivy"
+ ],
+ "regions": {
+ "default": "http://kivy.org/docs/search.html?check_keywords=yes&area=default&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kjell.com/favicon.ico",
+ "name": "Kjell & Company",
+ "triggers": [
+ "kjell"
+ ],
+ "regions": {
+ "default": "http://www.kjell.com/Sok?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kjell.com/favicon.ico",
+ "name": "Kjell & Company Norge",
+ "triggers": [
+ "kjellno"
+ ],
+ "regions": {
+ "default": "https://www.kjell.com/no/sok?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kkbox.com/favicon.ico?v=2",
+ "name": "KKBOX",
+ "triggers": [
+ "kkbox"
+ ],
+ "regions": {
+ "default": "https://www.kkbox.com/search.php?search=mix&word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kktix.com/favicon.ico",
+ "name": "KKTIX",
+ "triggers": [
+ "kktix"
+ ],
+ "regions": {
+ "default": "https://kktix.com/events?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kleinezeitung.at/assets/images/favicons/favicon-16x16.png",
+ "name": "Kleine Zeitung",
+ "triggers": [
+ "kleinezeitung"
+ ],
+ "regions": {
+ "default": "http://www.kleinezeitung.at/user/search.do?searchText={{{term}}}&action=1&resetForm=1&resultsPage=0"
+ }
+ },
+ {
+ "favicon": "https://klocksnack.se/favicon.ico",
+ "name": "Klocksnack",
+ "triggers": [
+ "klocks"
+ ],
+ "regions": {
+ "default": "https://klocksnack.se/search/6404040/?q={{{term}}}&o=date"
+ }
+ },
+ {
+ "favicon": "http://www.kmart.com/favicon.ico",
+ "name": "Kmart",
+ "triggers": [
+ "kmart"
+ ],
+ "regions": {
+ "default": "http://www.kmart.com/shc/s/search_10151_10104?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//avatars2.githubusercontent.com/u/4286195?v=2&s=200",
+ "name": "KnightOS Package Index",
+ "triggers": [
+ "pko"
+ ],
+ "regions": {
+ "default": "https://packages.knightos.org/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://neoluxor.cz/images/favicon.ico?v1",
+ "name": "Knihkupectví NeoLuxor",
+ "triggers": [
+ "luxor"
+ ],
+ "regions": {
+ "default": "http://neoluxor.cz/vyhledavani/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ecoplan.org/favicon.ico",
+ "name": "KNOOGLE: Worldwide New Mobility Knowledge Browser",
+ "triggers": [
+ "knoo"
+ ],
+ "regions": {
+ "default": "http://www.ecoplan.org/wtpp/general/knowledge-results.htm?cx=004787970323652826430%3Ayykh5icjh4k&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&sa=Knoogle+search+&siteurl=ecoplan.org%2Fwtpp%2Fknowledge_menu.htm&ref=ecoplan.org%2Fwtpp%2Fknowledge_index.htm&ss=3751j3156949j9"
+ }
+ },
+ {
+ "favicon": "https://s.kym-cdn.com/favicon.ico",
+ "name": "Know Your Meme",
+ "triggers": [
+ "meme",
+ "kym",
+ "knowyourmeme"
+ ],
+ "regions": {
+ "default": "http://knowyourmeme.com/search?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.buydomains.com//browser/img/favicon.ico?version=20180625",
+ "name": "KnowURL",
+ "triggers": [
+ "knowurl"
+ ],
+ "regions": {
+ "default": "http://knowurl.com/site?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//kbstatic1-a.akamaihd.net/1.0.0.4000/Images/rebrand/favicon-16x16.png",
+ "name": "Kobo",
+ "triggers": [
+ "kobo"
+ ],
+ "regions": {
+ "default": "https://www.kobo.com/us/en/search?Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//kbstatic1-a.akamaihd.net/1.0.0.4000/Images/rebrand/favicon-16x16.png",
+ "name": "KoboBooks.com",
+ "triggers": [
+ "kobobooks.com"
+ ],
+ "regions": {
+ "default": "http://www.kobobooks.com/search/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://code.ohloh.net/favicon.ico",
+ "name": "Koders",
+ "triggers": [
+ "koders",
+ "ohlohcode",
+ "co"
+ ],
+ "regions": {
+ "default": "http://code.ohloh.net/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kodi.wiki/favicon.ico",
+ "name": "Kodi Wiki",
+ "triggers": [
+ "kodi"
+ ],
+ "regions": {
+ "default": "http://kodi.wiki/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/dynastywarriors/images/6/64/Favicon.ico/revision/latest?cb=20091021130039",
+ "name": "KOEI Wiki",
+ "triggers": [
+ "koei"
+ ],
+ "regions": {
+ "default": "http://koei.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.kohls.com/snb/media/images/kohls_ico.ico",
+ "name": "Kohl's",
+ "triggers": [
+ "kohls"
+ ],
+ "regions": {
+ "default": "https://www.kohls.com/search.jsp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.koivuniemi.com/favicon.ico",
+ "name": "Koivuniemen Raamattuhaku",
+ "triggers": [
+ "raamattu"
+ ],
+ "regions": {
+ "default": "http://www.koivuniemi.com/raamattuhaku?tila=pikahaku&hakuehto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kollekt.fm/search/icon.png",
+ "name": "Kollekt.FM",
+ "triggers": [
+ "kollekt"
+ ],
+ "regions": {
+ "default": "https://kollekt.fm/search/?q={{{term}}}&type=all"
+ }
+ },
+ {
+ "favicon": "https://www.komplett.no/mlf/skins/komplettno/prod/favicon.ico?v=1666.1.0-Marek18",
+ "name": "Komplett",
+ "triggers": [
+ "komplett"
+ ],
+ "regions": {
+ "default": "https://www.komplett.no/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.komputeko.net/favicon.ico",
+ "name": "Komputeko",
+ "triggers": [
+ "komputeko"
+ ],
+ "regions": {
+ "default": "http://www.komputeko.net/index_eo.php?vorto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://konachan.net/favicon.ico",
+ "name": "konachan.net",
+ "triggers": [
+ "kchannet"
+ ],
+ "regions": {
+ "default": "http://konachan.net/post?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.konga.com/media/favicon/default/konga-favi.png",
+ "name": "Konga",
+ "triggers": [
+ "konga"
+ ],
+ "regions": {
+ "default": "http://www.konga.com/catalogsearch/result/?cat=0&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn2.kongcdn.com/compiled-assets/favicos/favico-32-50abc8d2b01fcef28ee82b63d2acde3c.png",
+ "name": "Kongregate",
+ "triggers": [
+ "kong",
+ "kongregate"
+ ],
+ "regions": {
+ "default": "http://www.kongregate.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://koodous.com/assets/img/favicon.png",
+ "name": "Koodous",
+ "triggers": [
+ "koodous"
+ ],
+ "regions": {
+ "default": "https://koodous.com/apks?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kanji.koohii.com/favicons/favicon.ico?v=20170121",
+ "name": "Koohii",
+ "triggers": [
+ "koohii"
+ ],
+ "regions": {
+ "default": "https://kanji.koohii.com/study/kanji/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.koopjedeal.nl/skin/frontend/koopjedeal/default/favicons/favicon.ico",
+ "name": "koopjedeal",
+ "triggers": [
+ "koopjedeal"
+ ],
+ "regions": {
+ "default": "https://www.koopjedeal.nl/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://korben.info/app/themes/korben/dist/favicons/favicon.ico",
+ "name": "Korben",
+ "triggers": [
+ "kbn"
+ ],
+ "regions": {
+ "default": "https://korben.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://koreus.cdn.li/static/images/favicon.png",
+ "name": "Koreus",
+ "triggers": [
+ "koreus"
+ ],
+ "regions": {
+ "default": "http://www.koreus.com/recherche.php?siteurl=www.koreus.com%2Fmodules%2Fnews%2F&ref=www.koreus.com%2Frecherche.php%3Fcof%3DFORID%253A11%26q%3D%7B%7B%7Bs%7D%7D%7D&ss=47j1105j6&cx=005442804435084193727%3Aenwk3ca2m_4&cof=FORID%3A11&q={{{term}}}&ie=iso-8859-1&oe=iso-8859-1&sa=Rechercher"
+ }
+ },
+ {
+ "favicon": "https://www.korrekturen.de/favicon.ico",
+ "name": "korrekturen.de",
+ "triggers": [
+ "korrekturen"
+ ],
+ "regions": {
+ "default": "https://www.korrekturen.de/suche/searcher.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kosmas.cz/Content/Layout/favicon.ico",
+ "name": "Kosmas",
+ "triggers": [
+ "kosmas"
+ ],
+ "regions": {
+ "default": "https://www.kosmas.cz/hledani/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--lpLBH3db--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/oq0dm145lhrelqk1r64i.png",
+ "name": "Kotaku",
+ "triggers": [
+ "kotaku",
+ "ktk"
+ ],
+ "regions": {
+ "default": "https://kotaku.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://edge.alluremedia.com.au/assets/gmg/ico/favicon_kotaku_80.png",
+ "name": "KotakuAus",
+ "triggers": [
+ "kotakuau"
+ ],
+ "regions": {
+ "default": "http://www.kotaku.com.au/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kpopspy.com/favicon.ico",
+ "name": "kpopspy",
+ "triggers": [
+ "kpopspy"
+ ],
+ "regions": {
+ "default": "http://www.kpopspy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kirp.pl/wp-content/uploads/2015/03/favicon.ico",
+ "name": "Krajowa Izba Radców Prawnych",
+ "triggers": [
+ "kirp"
+ ],
+ "regions": {
+ "default": "http://kirp.pl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://krebsonsecurity.com/favicon.ico",
+ "name": "Krebs On Security",
+ "triggers": [
+ "krebs"
+ ],
+ "regions": {
+ "default": "https://krebsonsecurity.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kreedo.de/out/dd_roxive_kreedo/favicon/favicon.ico",
+ "name": "Kreedo GbR",
+ "triggers": [
+ "kreedo"
+ ],
+ "regions": {
+ "default": "https://www.kreedo.de/index.php?cl=search&searchparam={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://docs.krita.org/favicon.ico",
+ "name": "Krita Docs",
+ "triggers": [
+ "krita"
+ ],
+ "regions": {
+ "default": "https://docs.krita.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ksl.com/favicon.ico",
+ "name": "ksl.com Classifieds",
+ "triggers": [
+ "kslc"
+ ],
+ "regions": {
+ "default": "https://www.ksl.com/classifieds/search/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.kerbalspaceprogram.com/favicon.ico",
+ "name": "Ksp forums",
+ "triggers": [
+ "kspf"
+ ],
+ "regions": {
+ "default": "http://forum.kerbalspaceprogram.com/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kth.se/img/v/8.19.3/icon/favicon.ico",
+ "name": "KTH",
+ "triggers": [
+ "kth"
+ ],
+ "regions": {
+ "default": "https://www.kth.se/search/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kuantokusta.pt/favicon.ico",
+ "name": "KuantoKusta",
+ "triggers": [
+ "kuantokusta"
+ ],
+ "regions": {
+ "default": "https://www.kuantokusta.pt/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.kuba-pichci.pl/favicon.ico",
+ "name": "Kuba Pichci",
+ "triggers": [
+ "kubapichci"
+ ],
+ "regions": {
+ "default": "http://www.kuba-pichci.pl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kubekings.com/img/favicon-1.ico?1525971046",
+ "name": "KubeKings",
+ "triggers": [
+ "kk"
+ ],
+ "regions": {
+ "default": "https://kubekings.com/buscar?controller=search&orderby=position&orderway=desc&search_query={{{term}}}&submit_search="
+ }
+ },
+ {
+ "favicon": "https://www.kuketz-blog.de/favicon.ico",
+ "name": "Kuketz-Blog",
+ "triggers": [
+ "kuketz"
+ ],
+ "regions": {
+ "default": "https://www.kuketz-blog.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//imgsrv.kuldnebors.ee/gfx/kb/layout/icons/kb_ie9.ico",
+ "name": "Kuldne Börs",
+ "triggers": [
+ "kbors"
+ ],
+ "regions": {
+ "default": "http://kuldnebors.ee/search/search.mec?search_evt=onsearch&pob_action=search&search_O_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d28ebfqlcy0ttg.cloudfront.net/images/identity/favicon.png",
+ "name": "kulinarian",
+ "triggers": [
+ "kulinarian"
+ ],
+ "regions": {
+ "default": "https://www.kulinarian.com/recipe/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kultofathena.com/favicon.ico",
+ "name": "Kult of Athena",
+ "triggers": [
+ "kultofathena"
+ ],
+ "regions": {
+ "default": "http://kultofathena.com/s_results.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kununu.com/js/2b71e5380782e8c743d4059d50e5159a.png",
+ "name": "kununu",
+ "triggers": [
+ "kununu"
+ ],
+ "regions": {
+ "default": "http://www.kununu.com/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.kununu.com/js/2b71e5380782e8c743d4059d50e5159a.png",
+ "name": "kununu.com",
+ "triggers": [
+ "kunu"
+ ],
+ "regions": {
+ "default": "http://www.kununu.com/suchen?express_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kuranara.com/favicon.ico",
+ "name": "Kuran Ara",
+ "triggers": [
+ "kuran"
+ ],
+ "regions": {
+ "default": "https://kuranara.com/ara?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.kvasir.no/grafikk/favicon.ico",
+ "name": "kvasir",
+ "triggers": [
+ "kvasir"
+ ],
+ "regions": {
+ "default": "https://www.kvasir.no/alle?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.kvinneguiden.no/favicon.ico",
+ "name": "Kvinneguiden forum",
+ "triggers": [
+ "kgforum"
+ ],
+ "regions": {
+ "default": "http://forum.kvinneguiden.no/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.kvraudio.com/favicon.ico",
+ "name": "KVR",
+ "triggers": [
+ "kvraudio",
+ "kvr"
+ ],
+ "regions": {
+ "default": "http://www.kvraudio.com/q.php?search=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bibliotek.kavlinge.se/favicon.ico",
+ "name": "Kävlinge Bibliotek",
+ "triggers": [
+ "bibliotekkavlinge"
+ ],
+ "regions": {
+ "default": "http://bibliotek.kavlinge.se/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bibliotek.kk.dk/favicon.ico",
+ "name": "Københavns Biblioteker ( Copenhagen Libraries)",
+ "triggers": [
+ "kkbib"
+ ],
+ "regions": {
+ "default": "https://bibliotek.kk.dk/search/ting/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.humanite.fr/sites/all/themes/jaures2018/favicon.ico",
+ "name": "L'Humanité",
+ "triggers": [
+ "huma"
+ ],
+ "regions": {
+ "default": "http://www.humanite.fr/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://irp.nain-t.net/lib/tpl/irp/images/favicon.ico",
+ "name": "L'internet rapide et permanent",
+ "triggers": [
+ "irp"
+ ],
+ "regions": {
+ "default": "http://irp.nain-t.net/doku.php/start?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://etudiant-libre.fr.nf/favicon.ico",
+ "name": "L'étudiant libre",
+ "triggers": [
+ "elibre"
+ ],
+ "regions": {
+ "default": "http://etudiant-libre.fr.nf/search.php?requete={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lspace.org/favicon.ico",
+ "name": "L-Space",
+ "triggers": [
+ "lspace"
+ ],
+ "regions": {
+ "default": "http://www.lspace.org/cgi-imps/perlfect/search/search.pl?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.llbean.com/favicon.ico",
+ "name": "L. L. Bean",
+ "triggers": [
+ "llbean"
+ ],
+ "regions": {
+ "default": "http://www.llbean.com/llb/search/?freeText={{{term}}}&init=1"
+ }
+ },
+ {
+ "favicon": "http://www.imperialassembly.com/oracle/resources/favicon.ico",
+ "name": "L5R: Oracle of the Void",
+ "triggers": [
+ "ootv"
+ ],
+ "regions": {
+ "default": "http://www.imperialassembly.com/oracle/?quicksearch=1&search_13={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lachainemeteo.com/favicon.ico",
+ "name": "La chaine météo",
+ "triggers": [
+ "chm"
+ ],
+ "regions": {
+ "default": "http://www.lachainemeteo.com/synthese-previsions-meteo.php?recherche={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://acordes.lacuerda.net/favicon.ico",
+ "name": "La Cuerda.net",
+ "triggers": [
+ "lcuerdanet"
+ ],
+ "regions": {
+ "default": "http://acordes.lacuerda.net/busca.php?exp={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.dhnet.be/favicon.ico",
+ "name": "La Dernière Heure",
+ "triggers": [
+ "dhnet"
+ ],
+ "regions": {
+ "default": "http://www.dhnet.be/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lamanzanilla.info/favicon.ico",
+ "name": "La Manzanilla Mexico",
+ "triggers": [
+ "la manzanilla"
+ ],
+ "regions": {
+ "default": "http://lamanzanilla.info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lamiradadelreplicante.com/wp-content/uploads/fbrfg/favicon.ico",
+ "name": "La mirada del replicante",
+ "triggers": [
+ "replicante"
+ ],
+ "regions": {
+ "default": "http://lamiradadelreplicante.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://buscar.lanacion.com.ar/favicon.ico",
+ "name": "La Nación",
+ "triggers": [
+ "lanacion"
+ ],
+ "regions": {
+ "default": "http://buscar.lanacion.com.ar/{{{term}}}/sort-new"
+ }
+ },
+ {
+ "favicon": "http://lapatria.com/favicon.ico",
+ "name": "La Patria",
+ "triggers": [
+ "lapatria"
+ ],
+ "regions": {
+ "default": "http://lapatria.com/?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lapoliticaonline.com/0/img/icons/favicon.png",
+ "name": "La Política Online",
+ "triggers": [
+ "lpo"
+ ],
+ "regions": {
+ "default": "http://www.lapoliticaonline.com/0/buscar/index.vnc?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.csuivi.courrier.laposte.fr/favicon.png",
+ "name": "La Poste",
+ "triggers": [
+ "suivicourrier"
+ ],
+ "regions": {
+ "default": "http://www.csuivi.courrier.laposte.fr/suivi/index?id={{{term}}}#"
+ }
+ },
+ {
+ "favicon": "http://www.csuivi.courrier.laposte.fr/favicon.png",
+ "name": "La Poste Suivi",
+ "triggers": [
+ "laposte"
+ ],
+ "regions": {
+ "default": "http://www.csuivi.courrier.laposte.fr/suivi?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.laquadrature.net/sites/all/themes/lqdn314/favicon.ico",
+ "name": "La Quadrature du Net",
+ "triggers": [
+ "lqdn"
+ ],
+ "regions": {
+ "default": "https://www.laquadrature.net/fr/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.repubblica.it/static/images/homepage/2010/favicon.ico",
+ "name": "La Repubblica",
+ "triggers": [
+ "repubblicavideo"
+ ],
+ "regions": {
+ "default": "http://ricerca.repubblica.it/ricerca/repubblica-video?query={{{term}}}&view=repubblica-video"
+ }
+ },
+ {
+ "favicon": "//www.repubblica.it/static/images/homepage/2010/favicon.ico",
+ "name": "la Repubblica",
+ "triggers": [
+ "repubblica"
+ ],
+ "regions": {
+ "default": "http://ricerca.repubblica.it/repubblica?query={{{term}}}&amp;view=repubblica"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "La Rousse",
+ "triggers": [
+ "larfren"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/dictionnaires/francais-anglais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lastampa.it/r/SysConfig/WebPortal/LaStampa.it/Resources/img/favicon.ico",
+ "name": "La Stampa",
+ "triggers": [
+ "lastampa"
+ ],
+ "regions": {
+ "default": "http://www.lastampa.it/ricerca?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mw.lojban.org/extensions/LojbanFavicon.ico",
+ "name": "la sutsis",
+ "triggers": [
+ "en-sutsis"
+ ],
+ "regions": {
+ "default": "http://mw.lojban.org/extensions/ilmentufa/i/en/#sisku/http://mw.lojban.org/extensions/ilmentufa/i/en/#sisku/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://raw.githubusercontent.com/La-Lojban/suho-pixra-pe-la-jbotcan/master/favicon.ico",
+ "name": "la sutysisku",
+ "triggers": [
+ "sisku"
+ ],
+ "regions": {
+ "default": "https://la-lojban.github.io/sutysisku/en/#sisku/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mw.lojban.org/extensions/LojbanFavicon.ico",
+ "name": "la sutysisku",
+ "triggers": [
+ "sutysisku"
+ ],
+ "regions": {
+ "default": "http://mw.lojban.org/extensions/ilmentufa/i/en/index.html#sisku/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.lib.latrobe.edu.au/favicon.ico",
+ "name": "La Trobe University Library",
+ "triggers": [
+ "ltulib"
+ ],
+ "regions": {
+ "default": "http://search.lib.latrobe.edu.au/primo_library/libweb/action/dlSearch.do?vid=LATROBE&institution=LATROBE&search_scope=All&query=any,contains, {{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://la-vache-libre.org/wp-content/themes/flato/img/fav_lvl.png",
+ "name": "La vache libre",
+ "triggers": [
+ "lvl"
+ ],
+ "regions": {
+ "default": "http://la-vache-libre.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://labdoor.com/public/v4/images/favicon.20199483f2.png",
+ "name": "Labdoor",
+ "triggers": [
+ "labdoor"
+ ],
+ "regions": {
+ "default": "https://labdoor.com/review?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shoplabu.com/favicon.ico",
+ "name": "LaBu",
+ "triggers": [
+ "labu"
+ ],
+ "regions": {
+ "default": "https://www.shoplabu.com/search.php?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://acordes.lacuerda.net/favicon.ico",
+ "name": "LaCuerda",
+ "triggers": [
+ "lacuerda"
+ ],
+ "regions": {
+ "default": "http://acordes.lacuerda.net/busca.php?canc=0&exp={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://laec.fr/favicon.ico",
+ "name": "LAEC.fr – Le programme de Jean-Luc Mélenchon en ligne – L'Avenir En Commun",
+ "triggers": [
+ "laec"
+ ],
+ "regions": {
+ "default": "https://laec.fr/recherche?termes={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.laemmle.com/favicon.ico",
+ "name": "Laemmle",
+ "triggers": [
+ "laemmle"
+ ],
+ "regions": {
+ "default": "https://www.laemmle.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lafeltrinelli.it/docroot/17.26.0/website/favicon.ico",
+ "name": "LaFeltrinelli",
+ "triggers": [
+ "feltrinelli"
+ ],
+ "regions": {
+ "default": "http://www.lafeltrinelli.it/fcom/it/home/pages/catalogo/searchresults.html?prkw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lafeltrinelli.it/docroot/17.26.0/website/favicon.ico",
+ "name": "LaFeltrinelli",
+ "triggers": [
+ "laf"
+ ],
+ "regions": {
+ "default": "http://www.lafeltrinelli.it/fcom/it/home/pages/catalogo/searchresults.html?srch=0&sort=1&page=1&prkw={{{term}}}&cat1=1"
+ }
+ },
+ {
+ "favicon": "http://lambda-the-ultimate.org/favicon.ico",
+ "name": "Lambda the Ultimate",
+ "triggers": [
+ "ltu"
+ ],
+ "regions": {
+ "default": "http://lambda-the-ultimate.org/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lammps.sandia.gov/favicon.ico",
+ "name": "LAMMPS Documentation",
+ "triggers": [
+ "lammps"
+ ],
+ "regions": {
+ "default": "http://lammps.sandia.gov/doc/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cdn.lamps.com/skin/frontend/lamps/default/favicon/android-chrome-192x192.png",
+ "name": "Lamps.com",
+ "triggers": [
+ "lamps"
+ ],
+ "regions": {
+ "default": "https://www.lamps.com/catalogsearch/result?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d4ueceu56c8vn.cloudfront.net/pic/app-icons/android-icon.png",
+ "name": "Langenscheid Deutsch-Arabisch",
+ "triggers": [
+ "lda"
+ ],
+ "regions": {
+ "default": "http://de.langenscheidt.com/deutsch-arabisch/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d4ueceu56c8vn.cloudfront.net/pic/app-icons/android-icon.png",
+ "name": "Langenscheid dictionary German-Swedish",
+ "triggers": [
+ "ls.de-sv"
+ ],
+ "regions": {
+ "default": "http://de.langenscheidt.com/deutsch-schwedisch/search?term={{{term}}}&q_cat=%2Fdeutsch-schwedisch%2F"
+ }
+ },
+ {
+ "favicon": "https://d4ueceu56c8vn.cloudfront.net/pic/app-icons/android-icon.png",
+ "name": "Langenscheid dictionary Swedish-German",
+ "triggers": [
+ "ls.sv"
+ ],
+ "regions": {
+ "default": "http://de.langenscheidt.com/schwedisch-deutsch/search?term={{{term}}}&q_cat=%2Fschwedisch-deutsch%2F"
+ }
+ },
+ {
+ "favicon": "https://d4ueceu56c8vn.cloudfront.net/pic/app-icons/android-icon.png",
+ "name": "Langenscheidt",
+ "triggers": [
+ "la"
+ ],
+ "regions": {
+ "default": "https://de.langenscheidt.com/deutsch-englisch/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d4ueceu56c8vn.cloudfront.net/pic/app-icons/android-icon.png",
+ "name": "Langenscheidt",
+ "triggers": [
+ "langen",
+ "lde"
+ ],
+ "regions": {
+ "default": "https://en.langenscheidt.com/german-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lapatilla.com/wp-content/uploads/2018/06/PatillaLogoSinFondo_512x512.png?fit=188,192",
+ "name": "lapatilla",
+ "triggers": [
+ "lapa"
+ ],
+ "regions": {
+ "default": "https://lapatilla.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/lapfoxtrax/images/6/64/Favicon.ico/revision/latest?cb=20120215194258",
+ "name": "Lapfox Trax Wiki",
+ "triggers": [
+ "lftwiki"
+ ],
+ "regions": {
+ "default": "http://lapfoxtrax.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.laptopdirect.co.za/favicon.ico",
+ "name": "LaptopDirect",
+ "triggers": [
+ "laptopdirect"
+ ],
+ "regions": {
+ "default": "http://www.laptopdirect.co.za/search.php?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://laptopspirit.fr/favicon.ico",
+ "name": "LaptopSpirit",
+ "triggers": [
+ "lps"
+ ],
+ "regions": {
+ "default": "http://www.laptopspirit.fr/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://laracasts.com/favicons/favicon.ico?v=XBrbNbbRQ4",
+ "name": "Laracasts",
+ "triggers": [
+ "lc",
+ "laracasts"
+ ],
+ "regions": {
+ "default": "https://laracasts.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "Larousse",
+ "triggers": [
+ "laresfr"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/dictionnaires/espagnol-francais/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "Larousse",
+ "triggers": [
+ "larfres"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/dictionnaires/francais-espagnol/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "Larousse (Français)",
+ "triggers": [
+ "lar",
+ "larousse",
+ "fr"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/dictionnaires/francais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "Larousse Conjugaison",
+ "triggers": [
+ "lconj"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/conjugaison/rechercher?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.larousse.fr/portail/assets/img/favicon.ico",
+ "name": "Larousse EN - FR translation",
+ "triggers": [
+ "larenfr"
+ ],
+ "regions": {
+ "default": "http://www.larousse.fr/dictionnaires/anglais-francais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zenon.en-getafe.org/sites/all/themes/zeropoint/favicon.ico",
+ "name": "Las historias de Zenon",
+ "triggers": [
+ "zenon"
+ ],
+ "regions": {
+ "default": "http://zenon.en-getafe.org/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lddb.com/favicon.ico",
+ "name": "LaserDisc Database",
+ "triggers": [
+ "lddb"
+ ],
+ "regions": {
+ "default": "https://www.lddb.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lasership.com/favicon.ico",
+ "name": "LaserShip",
+ "triggers": [
+ "lasership",
+ "laser"
+ ],
+ "regions": {
+ "default": "http://lasership.com/track/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.last.fm/static/images/favicon.702b239b6194.ico",
+ "name": "Last.fm",
+ "triggers": [
+ "lastfm"
+ ],
+ "regions": {
+ "default": "https://www.last.fm/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.last.fm/static/images/favicon.702b239b6194.ico",
+ "name": "last.fm",
+ "triggers": [
+ "lfm"
+ ],
+ "regions": {
+ "default": "https://www.last.fm/music/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.last.fm/static/images/favicon.702b239b6194.ico",
+ "name": "Last.fm",
+ "triggers": [
+ "last.fm"
+ ],
+ "regions": {
+ "default": "https://www.last.fm/search?q={{{term}}}&from=ac"
+ }
+ },
+ {
+ "favicon": "http://latin-dictionary.net/favicon.ico",
+ "name": "Latdict",
+ "triggers": [
+ "latdict"
+ ],
+ "regions": {
+ "default": "http://latin-dictionary.net/search/latin/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://latin-dictionary.net/favicon.ico",
+ "name": "Latdict",
+ "triggers": [
+ "enlat"
+ ],
+ "regions": {
+ "default": "http://latin-dictionary.net/search/english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.lrsstatic.com/graphics/favicon.png",
+ "name": "Late Model Restoration",
+ "triggers": [
+ "latemodelrestoration",
+ "latemodelresto"
+ ],
+ "regions": {
+ "default": "http://www.latemodelrestoration.com/product/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.lrsstatic.com/graphics/favicon.png",
+ "name": "Late Model Restoration",
+ "triggers": [
+ "lmr"
+ ],
+ "regions": {
+ "default": "http://www.latemodelrestoration.com/Product/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "LaTeX - Wikibooks",
+ "triggers": [
+ "latexwb"
+ ],
+ "regions": {
+ "default": "https://en.wikibooks.org/wiki/Search?search={{{term}}}&prefix=LaTeX"
+ }
+ },
+ {
+ "favicon": "http://latexsearch.com/static/201802052054-47/sites/link/images/favicon-32x32.png",
+ "name": "LaTeX Code",
+ "triggers": [
+ "latex"
+ ],
+ "regions": {
+ "default": "http://latexsearch.com/latexFacets.do?searchInput={{{term}}}&stype=exact"
+ }
+ },
+ {
+ "favicon": "http://search.latimes.com/pb/resources/images/lat_icons/favicon.ico?v=61",
+ "name": "LATimes",
+ "triggers": [
+ "latimes"
+ ],
+ "regions": {
+ "default": "http://search.latimes.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://la.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Latin Wikipedia",
+ "triggers": [
+ "wla"
+ ],
+ "regions": {
+ "default": "http://la.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://la.wiktionary.org/static/favicon/piece.ico",
+ "name": "Latin Wiktionary",
+ "triggers": [
+ "wiktla"
+ ],
+ "regions": {
+ "default": "https://la.wiktionary.org/wiki/Special:Search?search={{{term}}}&go=Define"
+ }
+ },
+ {
+ "favicon": "http://www.perseus.tufts.edu/favicon.ico",
+ "name": "Latin Word Study tool",
+ "triggers": [
+ "latin"
+ ],
+ "regions": {
+ "default": "http://www.perseus.tufts.edu/hopper/morph?l={{{term}}}&la=la"
+ }
+ },
+ {
+ "favicon": "http://www.perseus.tufts.edu/favicon.ico",
+ "name": "Latin Word Study Tool",
+ "triggers": [
+ "las"
+ ],
+ "regions": {
+ "default": "http://www.perseus.tufts.edu/hopper/morph?&la=la&l={{{term}}}&la=la"
+ }
+ },
+ {
+ "favicon": "https://www.latlong.net/icon.png",
+ "name": "LatLong.net",
+ "triggers": [
+ "latlong"
+ ],
+ "regions": {
+ "default": "http://www.latlong.net/search.php?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.latoilescoute.net/squelettes/favicon.ico",
+ "name": "LaToileScoute",
+ "triggers": [
+ "lts"
+ ],
+ "regions": {
+ "default": "http://www.latoilescoute.net/spip.php?page=recherche&recherche={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://launchpad.net/@@/launchpad.png",
+ "name": "LaunchPad",
+ "triggers": [
+ "launchpad",
+ "lp"
+ ],
+ "regions": {
+ "default": "https://launchpad.net/+search?field.text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.launchpad.net/@@/launchpad.png",
+ "name": "Launchpad Bugs",
+ "triggers": [
+ "lpbug"
+ ],
+ "regions": {
+ "default": "https://bugs.launchpad.net/bugs/+bugs?field.searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lavva.com/favicon.ico",
+ "name": "Lavva",
+ "triggers": [
+ "lavva"
+ ],
+ "regions": {
+ "default": "http://www.lavva.com/rts.aspx?q={{{term}}}&st=web"
+ }
+ },
+ {
+ "favicon": "https://layer13.net/favicon.ico",
+ "name": "Layer13",
+ "triggers": [
+ "layer13"
+ ],
+ "regions": {
+ "default": "https://layer13.net/browse?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada",
+ "triggers": [
+ "laz",
+ "lzd"
+ ],
+ "regions": {
+ "default": "http://www.lazada.com.ph/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada",
+ "triggers": [
+ "lzdph"
+ ],
+ "regions": {
+ "default": "https://www.lazada.com.ph/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada Indonesia",
+ "triggers": [
+ "lazadaid"
+ ],
+ "regions": {
+ "default": "http://www.lazada.co.id/catalog/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada Malaysia",
+ "triggers": [
+ "LzdMy"
+ ],
+ "regions": {
+ "default": "https://www.lazada.com.my/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada Singapore",
+ "triggers": [
+ "lzdsg"
+ ],
+ "regions": {
+ "default": "http://www.lazada.sg/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada Thailand",
+ "triggers": [
+ "lzdth"
+ ],
+ "regions": {
+ "default": "http://www.lazada.co.th/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//laz-img-cdn.alicdn.com/tfs/TB1f5qJef6H8KJjy0FjXXaXepXa-16-16.ico",
+ "name": "Lazada Thailand",
+ "triggers": [
+ "lazth"
+ ],
+ "regions": {
+ "default": "http://www.lazada.co.th/catalog/?scs=0&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ldlc.com/v3/img/favicon.ico",
+ "name": "LDLC",
+ "triggers": [
+ "ldlc"
+ ],
+ "regions": {
+ "default": "http://www.ldlc.com/navigation/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.ldlc.be/v4/img/common/favicon/favicon-16x16.png",
+ "name": "LDLC Belgium",
+ "triggers": [
+ "ldlcbe"
+ ],
+ "regions": {
+ "default": "http://www.ldlc.be/navigation/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//edge.ldscdn.org/cdn2/common/images/logos/favicon-lds-1.ico",
+ "name": "LDS.org",
+ "triggers": [
+ "lds"
+ ],
+ "regions": {
+ "default": "https://www.lds.org/search?lang=eng&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://voiretmanger.fr/wp-content/uploads/2017/07/cropped-logo-192x192.png",
+ "name": "Le blog de Nicolinux",
+ "triggers": [
+ "nicolinux"
+ ],
+ "regions": {
+ "default": "http://nicolinux.fr/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://images.leblogduhacker.fr/2018/06/logolbdhnew.jpg",
+ "name": "Le blog du hacker",
+ "triggers": [
+ "bdh"
+ ],
+ "regions": {
+ "default": "http://www.leblogduhacker.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.leboncoin.fr/img/favicon-beta-32.png",
+ "name": "Le bon Coin",
+ "triggers": [
+ "lbcra"
+ ],
+ "regions": {
+ "default": "https://www.leboncoin.fr/annonces/offres/rhone_alpes/?f=a&th=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.leboncoin.fr/img/favicon-beta-32.png",
+ "name": "Le Bon Coin",
+ "triggers": [
+ "lbc",
+ "leboncoin"
+ ],
+ "regions": {
+ "default": "https://www.leboncoin.fr/annonces/offres/?f=a&th=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.comptoirsecu.fr/images/icon/favicon-16x16.png",
+ "name": "Le Comptoir Sécu",
+ "triggers": [
+ "comptoirsecu"
+ ],
+ "regions": {
+ "default": "http://www.comptoirsecu.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.le-dictionnaire.com/favicon.ico",
+ "name": "Le Dictionnaire",
+ "triggers": [
+ "ledict"
+ ],
+ "regions": {
+ "default": "http://www.le-dictionnaire.com/resultats.php?mot={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/g/favicon_fr.ico",
+ "name": "Le Dénicheur",
+ "triggers": [
+ "denicheur"
+ ],
+ "regions": {
+ "default": "http://ledenicheur.fr/#rparams=ss={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://geekpauvre.com/favicon.ico",
+ "name": "Le Geek Pauvre",
+ "triggers": [
+ "lgp"
+ ],
+ "regions": {
+ "default": "http://geekpauvre.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.legorafi.fr/wp-content/themes/legorafi/img/icons/favicon-16x16.png",
+ "name": "Le Gorafi",
+ "triggers": [
+ "gorafi"
+ ],
+ "regions": {
+ "default": "http://www.legorafi.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.routard.com/favicon.ico",
+ "name": "Le Guide Du Routard",
+ "triggers": [
+ "routard"
+ ],
+ "regions": {
+ "default": "http://www.routard.com/recherche.asp?q={{{term}}}&edt_cleRech=gfibdecia"
+ }
+ },
+ {
+ "favicon": "http://lehollandaisvolant.net/logo.png",
+ "name": "Le Hollandais Volant",
+ "triggers": [
+ "lhv"
+ ],
+ "regions": {
+ "default": "http://lehollandaisvolant.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lehollandaisvolant.net/logo.png",
+ "name": "Le Hollandais Volant : au fil du web",
+ "triggers": [
+ "lhvl"
+ ],
+ "regions": {
+ "default": "http://lehollandaisvolant.net/?mode=links&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jargonf.org/favicon_jargonf.ico",
+ "name": "Le Jargon Français",
+ "triggers": [
+ "jargonf"
+ ],
+ "regions": {
+ "default": "http://jargonf.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lejournaldubienetre.com/wp-content/uploads/2015/08/favicon2.png",
+ "name": "Le Journal du Bien être",
+ "triggers": [
+ "jdbe"
+ ],
+ "regions": {
+ "default": "http://www.lejournaldubienetre.com/search?tag={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.journaldugeek.com/content/themes/journal-du-geek/assets/img/favicons/favicon.ico",
+ "name": "Le Journal du Geek",
+ "triggers": [
+ "jdg"
+ ],
+ "regions": {
+ "default": "http://www.journaldugeek.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s1.lemde.fr/medias/web/1.2.707/ico/favicon.ico",
+ "name": "Le Monde",
+ "triggers": [
+ "lemonde"
+ ],
+ "regions": {
+ "default": "https://www.lemonde.fr/recherche/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.monde-diplomatique.fr/favicon.ico",
+ "name": "Le Monde Diplomatique",
+ "triggers": [
+ "diplo"
+ ],
+ "regions": {
+ "default": "https://www.monde-diplomatique.fr/recherche?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.monde-libertaire.fr/img/favicon.png",
+ "name": "Le Monde Libertaire",
+ "triggers": [
+ "mondelibe"
+ ],
+ "regions": {
+ "default": "http://www.monde-libertaire.fr/search?ordering=&searchphrase=all&searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://blog.monolecte.fr/wp-content/uploads/2017/11/cropped-fennec-192x192.png",
+ "name": "Le Monolecte",
+ "triggers": [
+ "monolecte"
+ ],
+ "regions": {
+ "default": "http://blog.monolecte.fr/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://lenewbie.com/wp-content/themes/bigfoot/images/favicon.ico",
+ "name": "Le Newbie",
+ "triggers": [
+ "ln"
+ ],
+ "regions": {
+ "default": "http://lenewbie.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lescienze.it/static/images/favicon.ico",
+ "name": "Le Scienze",
+ "triggers": [
+ "scienze"
+ ],
+ "regions": {
+ "default": "http://www.lescienze.it/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.siteduzero.com/favicon.ico?eae3b07",
+ "name": "Le Site du Zéro",
+ "triggers": [
+ "sdz"
+ ],
+ "regions": {
+ "default": "http://www.siteduzero.com/recherche.html?src={{{term}}}&c=3"
+ }
+ },
+ {
+ "favicon": "http://archives.lesoir.be/sites/all/themes/engbootstrap_lesoir/favicon.ico",
+ "name": "Le Soir",
+ "triggers": [
+ "lesoir"
+ ],
+ "regions": {
+ "default": "http://archives.lesoir.be/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.leafly.com/favicon.ico",
+ "name": "Leafly",
+ "triggers": [
+ "leafly"
+ ],
+ "regions": {
+ "default": "https://www.leafly.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/leagueoflegends/images/6/64/Favicon.ico/revision/latest?cb=20170101115856",
+ "name": "League of Legends Wiki",
+ "triggers": [
+ "lolwiki"
+ ],
+ "regions": {
+ "default": "http://leagueoflegends.wikia.com/wiki/Special:Search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://learn-anything.xyz/static/favicon.png",
+ "name": "Learn Anything",
+ "triggers": [
+ "learna"
+ ],
+ "regions": {
+ "default": "https://learn-anything.xyz/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://learnomnifocus.com/favicon.ico",
+ "name": "Learn OmniFocus",
+ "triggers": [
+ "lof"
+ ],
+ "regions": {
+ "default": "https://learnomnifocus.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://learnxinyminutes.com/favicon.ico",
+ "name": "Learn X in Y",
+ "triggers": [
+ "learnxiny"
+ ],
+ "regions": {
+ "default": "https://learnxinyminutes.com/docs/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://learnxinyminutes.com/favicon.ico",
+ "name": "Learn X in Y Minutes",
+ "triggers": [
+ "xiny",
+ "lxiny"
+ ],
+ "regions": {
+ "default": "https://learnxinyminutes.com/docs/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://learnzone.org.uk/img/icons/favicon.png",
+ "name": "Learn Zone",
+ "triggers": [
+ "learnzone"
+ ],
+ "regions": {
+ "default": "http://learnzone.org.uk/courses/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.learnersdictionary.com/favicon.ico",
+ "name": "Learner's Dictionary",
+ "triggers": [
+ "learnersdictionary",
+ "mwld",
+ "mwl"
+ ],
+ "regions": {
+ "default": "http://www.learnersdictionary.com/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.learngaelic.net/favicon-16x16.png",
+ "name": "LearnGaelic.net",
+ "triggers": [
+ "learngaelic"
+ ],
+ "regions": {
+ "default": "http://www.learngaelic.net/dictionary/index.jsp?slang=both&wholeword=false&abairt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lecker.de/sites/all/themes/lecker/icons/favicon-128.png",
+ "name": "Lecker",
+ "triggers": [
+ "lecker"
+ ],
+ "regions": {
+ "default": "http://www.lecker.de/suche-rezept/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.lectulandia.com/wp-content/themes/ubook/images/favicon.jpg",
+ "name": "Lectulandia",
+ "triggers": [
+ "lec"
+ ],
+ "regions": {
+ "default": "https://www.lectulandia.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://legadolibre.com.ar/favicon.ico",
+ "name": "legadolibre",
+ "triggers": [
+ "legadolibre"
+ ],
+ "regions": {
+ "default": "http://legadolibre.com.ar/search/notice?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.law.cornell.edu/sites/www.law.cornell.edu/files/favicon_0.ico",
+ "name": "Legal Information Institute",
+ "triggers": [
+ "law"
+ ],
+ "regions": {
+ "default": "https://www.law.cornell.edu/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://legendas.tv/favicon.ico",
+ "name": "Legendas TV",
+ "triggers": [
+ "legendas"
+ ],
+ "regions": {
+ "default": "http://legendas.tv/busca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.legends-decks.com/interface/thumbs_0.png",
+ "name": "Legends-Decks",
+ "triggers": [
+ "l-d"
+ ],
+ "regions": {
+ "default": "https://www.legends-decks.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ideascdn.lego.com/community/assets/1ab5420bd72644cc8f764d64aa2363e2/img/favicons/android-chrome-192x192.png",
+ "name": "LEGO Ideas",
+ "triggers": [
+ "legoideas"
+ ],
+ "regions": {
+ "default": "https://ideas.lego.com/discover#search/q:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search-en.lego.com/favicon.ico",
+ "name": "LEGO.com",
+ "triggers": [
+ "lego"
+ ],
+ "regions": {
+ "default": "http://search-en.lego.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://leifinder.com/favicon.ico",
+ "name": "leifinder",
+ "triggers": [
+ "lei"
+ ],
+ "regions": {
+ "default": "https://leifinder.com/search/{{{term}}}/0/15/results.html?"
+ }
+ },
+ {
+ "favicon": "http://www.leisurepro.com/favicon.ico",
+ "name": "LeisurePro",
+ "triggers": [
+ "leisurepro"
+ ],
+ "regions": {
+ "default": "http://www.leisurepro.com/search?searchinfo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//c.76.my/favicon.ico",
+ "name": "Lelong",
+ "triggers": [
+ "Lelong"
+ ],
+ "regions": {
+ "default": "https://www.lelong.com.my/catalog/all/list?TheKeyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shop.lenovo.com/favicon.ico",
+ "name": "Lenovo",
+ "triggers": [
+ "lenovo"
+ ],
+ "regions": {
+ "default": "http://shop.lenovo.com/SEUILibrary/controller/e/web/LenovoPortal/en_US/site.workflow:SimpleSiteSearch?q={{{term}}}&v=15&lang=en&cc=us&en=utf&Search.x=0&Search.y=0&Search=Search"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "Leo",
+ "triggers": [
+ "leop"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/ptde/?lp=ende&lang=de&searchLoc=0&cmpType=relaxed&sectHdr=on&spellToler=&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "Leo (Français-Deutsch)",
+ "triggers": [
+ "leofr"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/frde/index_de.html#/search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "Leo (Polski-Deutsch)",
+ "triggers": [
+ "leopl"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/plde/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary Chinese",
+ "triggers": [
+ "leoc"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/chde?lp=chde&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary English",
+ "triggers": [
+ "leoe"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/ende?lp=ende&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary French",
+ "triggers": [
+ "leof"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/frde?lp=frde&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary Italian",
+ "triggers": [
+ "leoi"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/itde?lp=itde&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary Russian",
+ "triggers": [
+ "leor"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/rude?lp=rude&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "LEO Dictionary Spanish",
+ "triggers": [
+ "leos"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/esde?lp=esde&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "Leo russisch-deutsch-Wörterbuch",
+ "triggers": [
+ "leoru"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/rude/index_de.html#/search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dict.leo.org/img/favicons/ende-16-19ba91e3.png",
+ "name": "Leo Translation EN<->DE",
+ "triggers": [
+ "dictleode"
+ ],
+ "regions": {
+ "default": "https://dict.leo.org/ende?cmpType=relaxed&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.leons.ca/Content/Leons/Images/Icons/favicon.ico",
+ "name": "Leon's Furniture",
+ "triggers": [
+ "leons"
+ ],
+ "regions": {
+ "default": "http://www.leons.ca/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.leroymerlin.it/favicon.ico",
+ "name": "LeroyMerlin.it",
+ "triggers": [
+ "leroymerlinit"
+ ],
+ "regions": {
+ "default": "http://www.leroymerlin.it/ricerca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hdrapin.files.wordpress.com/2018/04/cropped-attachment-1.png?w=192",
+ "name": "LES MISCELLANÉES NUMÉRIQUES",
+ "triggers": [
+ "hdrapin",
+ "hdr"
+ ],
+ "regions": {
+ "default": "http://hdrapin.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dyw7ncnq1en5l.cloudfront.net/css/images_v2/icons/html/favicon.ico",
+ "name": "Les Numériques",
+ "triggers": [
+ "lesnumeriques"
+ ],
+ "regions": {
+ "default": "http://www.lesnumeriques.com/recherche.html?q={{{term}}}&cx=partner-pub-8349656358827352%3A8590362607&cof=FORID%3A10&ie=UTF-8&hl=fr"
+ }
+ },
+ {
+ "favicon": "https://dyw7ncnq1en5l.cloudfront.net/css/images_v2/icons/html/favicon.ico",
+ "name": "Les Numériques",
+ "triggers": [
+ "lesnum"
+ ],
+ "regions": {
+ "default": "http://www.lesnumeriques.com/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lesfrontaliers.lu/misc/favicon.ico",
+ "name": "LesFrontaliers",
+ "triggers": [
+ "frontalux",
+ "lf"
+ ],
+ "regions": {
+ "default": "http://www.lesfrontaliers.lu/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lesswrong.com/favicon.ico",
+ "name": "LessWrong",
+ "triggers": [
+ "lw"
+ ],
+ "regions": {
+ "default": "http://lesswrong.com/search/results?cx=015839050583929870010%3A-802ptn4igi&cof=FORID%3A11&ie=UTF-8&sa=Search&siteurl=lesswrong.com%2F&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lparchive.org/favicon.ico",
+ "name": "Let's Play Archive",
+ "triggers": [
+ "lparchive"
+ ],
+ "regions": {
+ "default": "http://lparchive.org/search/{{{term}}} #results"
+ }
+ },
+ {
+ "favicon": "https://letgo.com/icons/favicon.ico",
+ "name": "Letgo",
+ "triggers": [
+ "letgo"
+ ],
+ "regions": {
+ "default": "https://letgo.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://tr.letgo.com/icons/favicon.ico",
+ "name": "letgo Turkey",
+ "triggers": [
+ "letgotr"
+ ],
+ "regions": {
+ "default": "https://tr.letgo.com/tr/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://letonika.lv/favicon.ico?v=2",
+ "name": "Letonika.lv",
+ "triggers": [
+ "leto"
+ ],
+ "regions": {
+ "default": "http://letonika.lv/default.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://studiosol-a.akamaihd.net/letras/static/img/favicon.vbc34a3b.ico",
+ "name": "Letras BR",
+ "triggers": [
+ "ltb"
+ ],
+ "regions": {
+ "default": "https://www.letras.mus.br/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://studiosol-a.akamaihd.net/letras/static/img/favicon.vbc34a3b.ico",
+ "name": "Letras.mus.br",
+ "triggers": [
+ "letras"
+ ],
+ "regions": {
+ "default": "http://letras.mus.br/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://studiosol-a.akamaihd.net/letras/static/img/favicon.vbc34a3b.ico",
+ "name": "letras.mus.br",
+ "triggers": [
+ "letrasbr"
+ ],
+ "regions": {
+ "default": "http://letras.mus.br/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://letterboxd.com/favicon.ico",
+ "name": "Letterboxd",
+ "triggers": [
+ "letterboxd"
+ ],
+ "regions": {
+ "default": "https://letterboxd.com/search/films/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://letterboxd.com/favicon.ico",
+ "name": "Letterboxd",
+ "triggers": [
+ "ltr"
+ ],
+ "regions": {
+ "default": "https://letterboxd.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eng.letscc.net/favicon.ico",
+ "name": "Let’s CC",
+ "triggers": [
+ "lcc"
+ ],
+ "regions": {
+ "default": "http://eng.letscc.net/?t=all&k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://level-1.fr/Principal/wp-content/uploads/2016/02/cropped-Level-1Logo-192x192.png",
+ "name": "Level 1",
+ "triggers": [
+ "l1"
+ ],
+ "regions": {
+ "default": "https://level-1.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.nautide.com/edu/assets/assets_01/img/favicon.png",
+ "name": "Lexicon (Es)",
+ "triggers": [
+ "eslexicon"
+ ],
+ "regions": {
+ "default": "http://lexicoon.org/es/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.udir.no/favicon.ico",
+ "name": "Lexin (Norsk Ordbok)",
+ "triggers": [
+ "lexin"
+ ],
+ "regions": {
+ "default": "http://lexin.udir.no/?search={{{term}}}&dict=nbo-maxi&ui-lang=NBO&startingfrom=&count=10&checked-languages=E&checked-languages=N"
+ }
+ },
+ {
+ "favicon": "http://directory.lex.ma/favicon.ico",
+ "name": "Lexington Business Directory",
+ "triggers": [
+ "lex"
+ ],
+ "regions": {
+ "default": "http://directory.lex.ma/search?utf8=✓&q={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "https://libcom.org/files/favicon.ico",
+ "name": "libcom.org",
+ "triggers": [
+ "libcom"
+ ],
+ "regions": {
+ "default": "https://libcom.org/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3n8a8pro7vhmx.cloudfront.net/libdems/sites/40/favicon_images/original/favicon-2.ico?1392657018",
+ "name": "Liberal Democrats (UK)",
+ "triggers": [
+ "libdems"
+ ],
+ "regions": {
+ "default": "http://www.libdems.org.uk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.liberty.edu/favicon.png",
+ "name": "Liberty University",
+ "triggers": [
+ "lu"
+ ],
+ "regions": {
+ "default": "https://www.liberty.edu/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://libflow.com/favicon.ico",
+ "name": "LibFlow",
+ "triggers": [
+ "libflow",
+ "lib"
+ ],
+ "regions": {
+ "default": "http://libflow.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://3ie87c2dond928rt2e2zzo8o-wpengine.netdna-ssl.com/wp-content/uploads/2018/03/cropped-doc515-1-192x192.png",
+ "name": "LibFlow",
+ "triggers": [
+ "doc"
+ ],
+ "regions": {
+ "default": "https://www.doctorofcredit.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gen.lib.rus.ec/favicon.ico",
+ "name": "Libgen",
+ "triggers": [
+ "lg"
+ ],
+ "regions": {
+ "default": "http://gen.lib.rus.ec/search.php?req={{{term}}}&open=0&view=simple&phrase=1&column=def"
+ }
+ },
+ {
+ "favicon": "http://gen.lib.rus.ec/favicon.ico",
+ "name": "Libgen Fiction",
+ "triggers": [
+ "libgenfiction"
+ ],
+ "regions": {
+ "default": "http://gen.lib.rus.ec/foreignfiction/index.php?s={{{term}}}&f_lang=0&f_columns=0&f_ext=0"
+ }
+ },
+ {
+ "favicon": "http://gen.lib.rus.ec/favicon.ico",
+ "name": "Libgen Mirror",
+ "triggers": [
+ "genlib",
+ "libgen"
+ ],
+ "regions": {
+ "default": "http://gen.lib.rus.ec/search.php?req={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gen.lib.rus.ec/favicon.ico",
+ "name": "Libgen Scientific Articles",
+ "triggers": [
+ "lga",
+ "lgsm",
+ "lgscimag"
+ ],
+ "regions": {
+ "default": "http://gen.lib.rus.ec/scimag/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://libgen.io/favicon.ico",
+ "name": "Libgen.io Mirror",
+ "triggers": [
+ "libgenio"
+ ],
+ "regions": {
+ "default": "http://libgen.io/search.php?req={{{term}}}&lg_topic=libgen&open=0&view=simple&res=25&phrase=1&column=def"
+ }
+ },
+ {
+ "favicon": "https://libgit2.github.com/favicon.ico",
+ "name": "libgit2 documentation",
+ "triggers": [
+ "git2"
+ ],
+ "regions": {
+ "default": "https://libgit2.github.com/libgit2/#HEAD/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://authorities.loc.gov/favicon.ico",
+ "name": "Library of Congress Authorities",
+ "triggers": [
+ "lcauth"
+ ],
+ "regions": {
+ "default": "http://authorities.loc.gov/cgi-bin/Pwebrecon.cgi?Search_0Arg={{{term}}}&Search_Code=SHED_&PID=pyauyDhI6ZL9vR3exz9cx8t8BF&SEQ=20161101104025&CNT=100&HIST=1"
+ }
+ },
+ {
+ "favicon": "https://www.loc.gov/static/images/fav.ico?70228.71692",
+ "name": "Library of Congress Catalog (loc.gov)",
+ "triggers": [
+ "loc"
+ ],
+ "regions": {
+ "default": "https://www.loc.gov/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://id.loc.gov/static/images/favicon.ico",
+ "name": "Library of Congress Linked Data",
+ "triggers": [
+ "lcid"
+ ],
+ "regions": {
+ "default": "http://id.loc.gov/search/?q={{{term}}}&q="
+ }
+ },
+ {
+ "favicon": "http://econlib.org/favicon.ico",
+ "name": "Library of Economics and Liberty",
+ "triggers": [
+ "econlib"
+ ],
+ "regions": {
+ "default": "http://econlib.org/cgi-bin/fullsearch.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.librarything.com/favicon.ico",
+ "name": "LibraryThing",
+ "triggers": [
+ "librarything"
+ ],
+ "regions": {
+ "default": "https://www.librarything.com/search_works.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.librarything.com/favicon.ico",
+ "name": "LibraryThing",
+ "triggers": [
+ "libthing"
+ ],
+ "regions": {
+ "default": "https://www.librarything.com/search.php?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.librarything.com/favicon.ico",
+ "name": "LibraryThing",
+ "triggers": [
+ "lt"
+ ],
+ "regions": {
+ "default": "https://www.librarything.com/search.php?searchtype=work&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://libre.fm/favicon.ico",
+ "name": "libre.fm",
+ "triggers": [
+ "librefm"
+ ],
+ "regions": {
+ "default": "http://libre.fm/search.php?search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://libregamewiki.org/favicon.png",
+ "name": "libregamewiki",
+ "triggers": [
+ "lgw"
+ ],
+ "regions": {
+ "default": "https://libregamewiki.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.documentfoundation.org/images/favicon.ico",
+ "name": "LibreOffice Bugs",
+ "triggers": [
+ "lobugs"
+ ],
+ "regions": {
+ "default": "https://bugs.documentfoundation.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.libreoffice.org/favicon.ico",
+ "name": "LibreOffice Help",
+ "triggers": [
+ "loh"
+ ],
+ "regions": {
+ "default": "https://help.libreoffice.org/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://opengrok.libreoffice.org/default/img/icon.png",
+ "name": "LibreOffice Source Code",
+ "triggers": [
+ "losource"
+ ],
+ "regions": {
+ "default": "https://opengrok.libreoffice.org/search?q={{{term}}}&project=core"
+ }
+ },
+ {
+ "favicon": "https://www.libreriauniversitaria.it/favicon.ico",
+ "name": "Libreria Universitaria",
+ "triggers": [
+ "liberia",
+ "libuniversitaria"
+ ],
+ "regions": {
+ "default": "http://www.libreriauniversitaria.it/c_power_search.php?shelf=BIT&q={{{term}}}&submit="
+ }
+ },
+ {
+ "favicon": "http://www.lsf.com.ar/content.tap-commerce.com/271/favicon",
+ "name": "Librerías Santa Fe",
+ "triggers": [
+ "lsf"
+ ],
+ "regions": {
+ "default": "http://www.lsf.com.ar/resulta.aspx?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://librestock.com/static/images/favicon-128.png",
+ "name": "Librestock",
+ "triggers": [
+ "librestock"
+ ],
+ "regions": {
+ "default": "http://librestock.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//librewiki.net/images/favicon.ico",
+ "name": "LibreWiki",
+ "triggers": [
+ "librewiki"
+ ],
+ "regions": {
+ "default": "https://librewiki.net/index.php?title=%ED%8A%B9%EC%88%98%3A%EA%B2%80%EC%83%89&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://libris.kb.se/images/favicon.ico",
+ "name": "Libris",
+ "triggers": [
+ "libris"
+ ],
+ "regions": {
+ "default": "http://libris.kb.se/hitlist?d=libris&q={{{term}}}&f=simp&spell=true"
+ }
+ },
+ {
+ "favicon": "https://librivox.org/wp-content/themes/librivox/favicon.ico",
+ "name": "LibriVox",
+ "triggers": [
+ "librivox"
+ ],
+ "regions": {
+ "default": "https://librivox.org/newcatalog/search.php?title={{{term}}}&author=&status=all&action=Search"
+ }
+ },
+ {
+ "favicon": "http://docs.libuv.org/en/latest/_static/favicon.ico",
+ "name": "Libuv API Docs",
+ "triggers": [
+ "libuv"
+ ],
+ "regions": {
+ "default": "http://docs.libuv.org/en/latest/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--N2eqEvT8--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/u0939doeuioaqhspkjyc.png",
+ "name": "Lifehacker",
+ "triggers": [
+ "lifehack",
+ "lh",
+ "lifehacker"
+ ],
+ "regions": {
+ "default": "https://lifehacker.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lifehacking.nl/wp-content/uploads/Lifehacking-Logo-512p-2.png",
+ "name": "Lifehacking",
+ "triggers": [
+ "lifehacking"
+ ],
+ "regions": {
+ "default": "http://lifehacking.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lignux.com/wp-content/uploads/2015/05/favicon-16x16.png",
+ "name": "LiGNUx",
+ "triggers": [
+ "lignux"
+ ],
+ "regions": {
+ "default": "http://lignux.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.lilosearch.org/img/newlogo/lilo16.png",
+ "name": "Lilo",
+ "triggers": [
+ "lilo"
+ ],
+ "regions": {
+ "default": "https://search.lilo.org/searchweb.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lsr.di.unimi.it/favicon.ico",
+ "name": "LilyPond Snippet Repository",
+ "triggers": [
+ "lsr",
+ "lilypond"
+ ],
+ "regions": {
+ "default": "http://lsr.di.unimi.it/LSR/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.limetorrents.cc/static/favicon.ico",
+ "name": "Lime Torrents",
+ "triggers": [
+ "lime"
+ ],
+ "regions": {
+ "default": "https://www.limetorrents.cc/search/all/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/www.lincoder.com/wp-content/uploads/2016/01/cropped-512sitelogo.png?fit=192,192",
+ "name": "lincoder",
+ "triggers": [
+ "lincoder"
+ ],
+ "regions": {
+ "default": "http://www.lincoder.com/?s={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://ling.pl/images/favicon.ico",
+ "name": "Ling.pl Angielsko-Polski",
+ "triggers": [
+ "ling"
+ ],
+ "regions": {
+ "default": "https://ling.pl/slownik/angielsko-polski/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lingualeo.com/favicon.ico",
+ "name": "lingualeo.com",
+ "triggers": [
+ "lingualeo"
+ ],
+ "regions": {
+ "default": "https://lingualeo.com/ru/glossary/learn/dictionary#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "linep"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-portuguese/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "linfd"
+ ],
+ "regions": {
+ "default": "https://www.linguee.fr/francais-allemand/search?source=auto&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "lingpf"
+ ],
+ "regions": {
+ "default": "https://www.linguee.fr/francais-portugais/search?source=portugais&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "lines"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-spanish/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "linfe"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-french/search?source=french&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "linguee",
+ "lide"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/deutsch-englisch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "lin"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-french/search?source=auto&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "lingueefe"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/francais-englisch/search?source=auto&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "lingp",
+ "lindp"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/deutsch-portugiesisch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "lineg"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-german/search?source=german&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "linge"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/deutsch-englisch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "les"
+ ],
+ "regions": {
+ "default": "https://www.linguee.es/espanol-ingles/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "linef"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-french/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "linbr"
+ ],
+ "regions": {
+ "default": "http://www.linguee.com.br/portugues-ingles/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "lingfp"
+ ],
+ "regions": {
+ "default": "https://www.linguee.fr/francais-portugais/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee",
+ "triggers": [
+ "lingf"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/deutsch-franzoesisch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "linguee",
+ "triggers": [
+ "linpe"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-portuguese/search?source=portuguese&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee (en français)",
+ "triggers": [
+ "lingfr",
+ "lingfe"
+ ],
+ "regions": {
+ "default": "https://www.linguee.fr/francais-anglais/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee (Fr-Nl)",
+ "triggers": [
+ "lingfn"
+ ],
+ "regions": {
+ "default": "https://www.linguee.fr/francais-neerlandais/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee De-Ita",
+ "triggers": [
+ "lidi"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/deutsch-italienisch/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee English - Dutch",
+ "triggers": [
+ "linen"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-dutch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee English-Swedish",
+ "triggers": [
+ "linsv"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-swedish/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee Ger - It",
+ "triggers": [
+ "lindit"
+ ],
+ "regions": {
+ "default": "https://www.linguee.de/deutsch-italienisch/search?source=auto&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee PL",
+ "triggers": [
+ "lingpl"
+ ],
+ "regions": {
+ "default": "http://www.linguee.pl/angielski-polski/t%C5%82umaczenie/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://d1wigddrwdtsce.cloudfront.net/img3/favicon.ico",
+ "name": "Linguee Swedish",
+ "triggers": [
+ "linse"
+ ],
+ "regions": {
+ "default": "https://www.linguee.com/english-swedish/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lingvolive.ru/favicon.ico",
+ "name": "Lingvo Live",
+ "triggers": [
+ "lingvo"
+ ],
+ "regions": {
+ "default": "https://lingvolive.ru/translate/en-ru/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lingvolive.com/favicon.ico",
+ "name": "Lingvo Live English Russian",
+ "triggers": [
+ "lvoenru"
+ ],
+ "regions": {
+ "default": "https://www.lingvolive.com/en-us/translate/en-ru/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.licdn.com/scds/common/u/images/logos/favicons/v1/favicon.ico",
+ "name": "LinkedIn",
+ "triggers": [
+ "linkedin",
+ "li"
+ ],
+ "regions": {
+ "default": "https://www.linkedin.com/search/results/index/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lk.shbcdn.com/css/img/favicon-big.png?_2018062801",
+ "name": "Linkiesta",
+ "triggers": [
+ "linkiesta"
+ ],
+ "regions": {
+ "default": "http://www.linkiesta.it/cerca/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://linklocker.co/favicon.ico",
+ "name": "LinkLocker",
+ "triggers": [
+ "linkl"
+ ],
+ "regions": {
+ "default": "https://linklocker.co/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.linkup.com/assets/img/favicon.ico",
+ "name": "LinkUp",
+ "triggers": [
+ "linkup"
+ ],
+ "regions": {
+ "default": "http://www.linkup.com/results.php#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.liu.se/favicon.ico",
+ "name": "Linköping University",
+ "triggers": [
+ "liu"
+ ],
+ "regions": {
+ "default": "http://search.liu.se/search?q={{{term}}}&site=liu&hl=en&getfields=description&client=default_frontend&proxystylesheet=default_frontend"
+ }
+ },
+ {
+ "favicon": "https://library.linode.com/favicon.ico",
+ "name": "Linode Library",
+ "triggers": [
+ "linode"
+ ],
+ "regions": {
+ "default": "https://library.linode.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://astatic.ccmbg.com/www.linternaute.com/img/icons/favicon-16x16.png",
+ "name": "linternaute",
+ "triggers": [
+ "linternaute"
+ ],
+ "regions": {
+ "default": "http://www.linternaute.com/encyclopedie/recherche/?f_libelle={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://linustechtips.com/main/uploads/monthly_2018_04/favicon.ico.4bb4554ba88ab34a8db45b9edec4a279.ico",
+ "name": "LinusTechTips Forum",
+ "triggers": [
+ "ltt"
+ ],
+ "regions": {
+ "default": "https://linustechtips.com/main/search/?&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lxr.free-electrons.com/favicon.ico",
+ "name": "Linux Cross Reference",
+ "triggers": [
+ "lcr"
+ ],
+ "regions": {
+ "default": "http://lxr.free-electrons.com/ident?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://elixir.bootlin.com/favicon.ico",
+ "name": "Linux Cross Reference",
+ "triggers": [
+ "lxr"
+ ],
+ "regions": {
+ "default": "http://elixir.bootlin.com/linux/latest/ident/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lgdb.org/sites/all/themes/bootstrap_lgdb/favicon.ico",
+ "name": "Linux Game Database",
+ "triggers": [
+ "lgdb"
+ ],
+ "regions": {
+ "default": "http://www.lgdb.org/search/luceneapi_node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://linuxhcl.com/favicon.ico",
+ "name": "Linux Hardware Compatibility List",
+ "triggers": [
+ "linuxhcl"
+ ],
+ "regions": {
+ "default": "http://linuxhcl.com/browse/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forums.linuxmint.com/favicon.ico",
+ "name": "Linux Mint Forums",
+ "triggers": [
+ "linuxmint"
+ ],
+ "regions": {
+ "default": "https://forums.linuxmint.com/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pkgs.org/assets/img/favicon.ico?v1",
+ "name": "Linux Packages Search",
+ "triggers": [
+ "pkgs"
+ ],
+ "regions": {
+ "default": "https://pkgs.org/search/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.linuxquestions.org/favicon.ico",
+ "name": "Linux Questions Wiki",
+ "triggers": [
+ "lqw"
+ ],
+ "regions": {
+ "default": "http://wiki.linuxquestions.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://linuxsnippets.net/sites/default/files/mix_and_match_favicon.png",
+ "name": "Linux Snippets",
+ "triggers": [
+ "linsnipp"
+ ],
+ "regions": {
+ "default": "http://linuxsnippets.net/en/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://linuxtracker.org/favicon.ico",
+ "name": "Linux Tracker",
+ "triggers": [
+ "linuxtracker"
+ ],
+ "regions": {
+ "default": "http://linuxtracker.org/index.php?page=torrents&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://untergang.de/templates/protostar/favicon.ico",
+ "name": "Linux und Technik",
+ "triggers": [
+ "untergang"
+ ],
+ "regions": {
+ "default": "http://untergang.de/index.php?option=search&searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.linuxvoice.com/wp-content/uploads/2015/12/favicon.ico",
+ "name": "Linux Voice",
+ "triggers": [
+ "linuxvoice",
+ "lvmag"
+ ],
+ "regions": {
+ "default": "https://www.linuxvoice.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.die.net/favicon.ico",
+ "name": "Linux.die.net man pages",
+ "triggers": [
+ "die"
+ ],
+ "regions": {
+ "default": "http://www.die.net/search/?q={{{term}}}&sa=Search&ie=ISO-8859-1&cx=partner-pub-5823754184406795%3A54htp1rtx5u&cof=FORID%3A9"
+ }
+ },
+ {
+ "favicon": "https://www.linux.org.ru/favicon.ico",
+ "name": "Linux.org.ru",
+ "triggers": [
+ "lor"
+ ],
+ "regions": {
+ "default": "https://www.linux.org.ru/search.jsp?q={{{term}}}&range=ALL&interval=ALL&user=&_usertopic=on"
+ }
+ },
+ {
+ "favicon": "https://linuxmint.com/favicon.ico",
+ "name": "LinuxMint",
+ "triggers": [
+ "mint"
+ ],
+ "regions": {
+ "default": "https://linuxmint.com/search.php?query={{{term}}}&search=1"
+ }
+ },
+ {
+ "favicon": "https://www.linuxquestions.org/favicon.ico",
+ "name": "linuxquestions",
+ "triggers": [
+ "linuxq"
+ ],
+ "regions": {
+ "default": "https://www.linuxquestions.org/questions/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.liquidation.com/favicon.ico",
+ "name": "Liquidation",
+ "triggers": [
+ "liquidation"
+ ],
+ "regions": {
+ "default": "http://www.liquidation.com/auction/search?cmd=keyword&searchparam_words={{{term}}}&flag=new"
+ }
+ },
+ {
+ "favicon": "http://wiki.teamliquid.net/starcraft2/favicon.ico",
+ "name": "Liquidpedia",
+ "triggers": [
+ "liquidpedia"
+ ],
+ "regions": {
+ "default": "http://wiki.teamliquid.net/starcraft2/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://wiki.teamliquid.net/counterstrike/favicon.ico",
+ "name": "Liquipedia Counter-Strike Wiki",
+ "triggers": [
+ "cslq",
+ "lcsgo"
+ ],
+ "regions": {
+ "default": "http://wiki.teamliquid.net/counterstrike/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://wiki.teamliquid.net/dota2/favicon.ico",
+ "name": "Liquipedia Dota 2 Wiki",
+ "triggers": [
+ "ldota",
+ "dota2"
+ ],
+ "regions": {
+ "default": "http://wiki.teamliquid.net/dota2/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.teamliquid.net/starcraft2/favicon.ico",
+ "name": "Liquipedia2",
+ "triggers": [
+ "liquipedia"
+ ],
+ "regions": {
+ "default": "http://wiki.teamliquid.net/starcraft2/index.php?title=Special%3ASearch&go=Go&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://l1sp.org/favicon.ico",
+ "name": "Lisp Docs",
+ "triggers": [
+ "l1sp"
+ ],
+ "regions": {
+ "default": "http://l1sp.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lispdoc.com/favicon.ico",
+ "name": "Lispdoc",
+ "triggers": [
+ "lisp"
+ ],
+ "regions": {
+ "default": "http://lispdoc.com/?q={{{term}}}&search=Basic+search"
+ }
+ },
+ {
+ "favicon": "http://www.list.am/favicon.ico",
+ "name": "List.am",
+ "triggers": [
+ "listam"
+ ],
+ "regions": {
+ "default": "http://www.list.am/category?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.listadomanga.es/favicon.gif",
+ "name": "Listado manga blog",
+ "triggers": [
+ "listadomangablog"
+ ],
+ "regions": {
+ "default": "http://www.listadomanga.es/blog/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.listal.com/favicon.ico",
+ "name": "Listal",
+ "triggers": [
+ "listal"
+ ],
+ "regions": {
+ "default": "http://www.listal.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.listennotes.com/static/v3/img/logo/favicon-16x16.png?v3=1",
+ "name": "Listen Notes",
+ "triggers": [
+ "podcast"
+ ],
+ "regions": {
+ "default": "https://www.listennotes.com/search/?q={{{term}}}&sort_by_date=0"
+ }
+ },
+ {
+ "favicon": "https://literana.de/wp-content/uploads/2017/02/cropped-cropped-literana-192x192.png",
+ "name": "Literana",
+ "triggers": [
+ "literana"
+ ],
+ "regions": {
+ "default": "https://literana.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Lithuanian Wikipedia",
+ "triggers": [
+ "ltwiki"
+ ],
+ "regions": {
+ "default": "https://lt.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://littlesis.org/favicon.ico",
+ "name": "LittleSis",
+ "triggers": [
+ "ls"
+ ],
+ "regions": {
+ "default": "https://littlesis.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://archive.org/favicon.ico",
+ "name": "Live Music Archive",
+ "triggers": [
+ "lma",
+ "etree"
+ ],
+ "regions": {
+ "default": "https://archive.org/search.php?query={{{term}}}%20AND%20collection%3Aetree"
+ }
+ },
+ {
+ "favicon": "http://www.live365.com/icons/favicon-16x16.png",
+ "name": "Live365",
+ "triggers": [
+ "l365"
+ ],
+ "regions": {
+ "default": "http://www.live365.com/cgi-bin/directory.cgi?searchdesc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.liveleak.com/favicon.ico",
+ "name": "LiveLeak",
+ "triggers": [
+ "ll"
+ ],
+ "regions": {
+ "default": "http://www.liveleak.com/browse?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.liveleak.com/favicon.ico",
+ "name": "LiveLeak",
+ "triggers": [
+ "liveleak"
+ ],
+ "regions": {
+ "default": "http://www.liveleak.com/browse?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.livemixtapes.com/favicon.ico",
+ "name": "LiveMixtapes",
+ "triggers": [
+ "lm"
+ ],
+ "regions": {
+ "default": "http://www.livemixtapes.com/main.php?artist={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.liveplasma.com/favicon.ico",
+ "name": "LivePlasma",
+ "triggers": [
+ "liveplasma"
+ ],
+ "regions": {
+ "default": "http://www.liveplasma.com/#/artist/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.livermore.lib.ca.us/favicon.ico",
+ "name": "Livermore library",
+ "triggers": [
+ "lv"
+ ],
+ "regions": {
+ "default": "http://www.livermore.lib.ca.us/search/a?searchtype=X&SORT=D&searchscope=7&searcharg={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://capitadiscovery.co.uk/sitefiles/images/icons/favicon-32x32.png",
+ "name": "Liverpool Libraries catalogue",
+ "triggers": [
+ "lluk"
+ ],
+ "regions": {
+ "default": "https://capitadiscovery.co.uk/liverpool/items?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.livestrong.com/favicon.png",
+ "name": "LIVESTRONG",
+ "triggers": [
+ "livestrong"
+ ],
+ "regions": {
+ "default": "https://www.livestrong.com/search/?mode=standard&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lizus.net/favicon.ico",
+ "name": "Lizus.net",
+ "triggers": [
+ "lizus"
+ ],
+ "regions": {
+ "default": "http://lizus.net/szukaj/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lizzart.fr/favicon.ico",
+ "name": "Lizzart - Original Handmade in France",
+ "triggers": [
+ "lizzart"
+ ],
+ "regions": {
+ "default": "http://www.lizzart.fr/boutique/tout/recherche.html?keyword={{{term}}}&limitstart=0&option=com_virtuemart&view=category"
+ }
+ },
+ {
+ "favicon": "http://llevatilde.es/favicon.ico",
+ "name": "Lleva tilde",
+ "triggers": [
+ "tilde"
+ ],
+ "regions": {
+ "default": "http://llevatilde.es/palabra/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lmddgtfy.co.cc/favicon.ico",
+ "name": "LMDDGTFY.CO.CC",
+ "triggers": [
+ "lmdtfy"
+ ],
+ "regions": {
+ "default": "http://lmddgtfy.co.cc/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lmddgtfy.net/favicon.ico",
+ "name": "LMDDGTFY.NET",
+ "triggers": [
+ "lmddgtfy"
+ ],
+ "regions": {
+ "default": "https://lmddgtfy.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lmgtfy.com/favicon-16x16.png",
+ "name": "LMGTFY",
+ "triggers": [
+ "lmgtfy"
+ ],
+ "regions": {
+ "default": "https://www.lmgtfy.com/?s=d&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lmms.io/img/logo_sm.png",
+ "name": "lmms wiki",
+ "triggers": [
+ "lmms"
+ ],
+ "regions": {
+ "default": "https://lmms.io/wiki/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://lnc2.com/favicon.ico",
+ "name": "Lnc2.com",
+ "triggers": [
+ "l"
+ ],
+ "regions": {
+ "default": "http://lnc2.com/cgi-bin/search.pl?q={{{term}}};"
+ }
+ },
+ {
+ "favicon": "https://assets.shop.loblaws.ca/ContentMedia/lsl/logos/64x64icon.ico",
+ "name": "Loblaws",
+ "triggers": [
+ "loblaws"
+ ],
+ "regions": {
+ "default": "https://www.loblaws.ca/search/?search-bar={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lobste.rs/favicon.ico",
+ "name": "Lobsters",
+ "triggers": [
+ "lobsters"
+ ],
+ "regions": {
+ "default": "https://lobste.rs/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tel.local.ch/assets/local-ui/favicons/local_favicon_96x96-75cd778e9e9227c13f78313c9651d9594a218ccfd7158905432c43898323fb73.png",
+ "name": "Local.ch",
+ "triggers": [
+ "locfr"
+ ],
+ "regions": {
+ "default": "https://tel.local.ch/fr/q?what={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tel.local.ch/assets/local-ui/favicons/local_favicon_96x96-75cd778e9e9227c13f78313c9651d9594a218ccfd7158905432c43898323fb73.png",
+ "name": "local.ch",
+ "triggers": [
+ "localch"
+ ],
+ "regions": {
+ "default": "https://tel.local.ch/de/q?what={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://locate.ph/wp-content/themes/locate15/favicon.ico",
+ "name": "Locate PH",
+ "triggers": [
+ "locate"
+ ],
+ "regions": {
+ "default": "http://locate.ph/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.getin.tech/wp-content/uploads/sites/33/2017/08/cropped-Jeremy-2k18-square-192x192.jpg",
+ "name": "Locita",
+ "triggers": [
+ "locita"
+ ],
+ "regions": {
+ "default": "http://fr.locita.com/?s={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.locksonline.co.uk/image/catalog/favicon.png",
+ "name": "LocksOnline.co.uk",
+ "triggers": [
+ "lol"
+ ],
+ "regions": {
+ "default": "https://www.locksonline.co.uk/search/search.html?zoom_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.locksonline.com/image/catalog/favicon.png",
+ "name": "LocksOnline.com",
+ "triggers": [
+ "lolcom"
+ ],
+ "regions": {
+ "default": "https://www.locksonline.com/search/search.html?zoom_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAABlBMVEVMaXExk//ImxjuAAAAAXRSTlMAQObYZgAAAA9JREFUeAFjIBLU/2MC0wALJgGAaiAmLQAAAABJRU5ErkJggg==",
+ "name": "lodash documentation",
+ "triggers": [
+ "lodash"
+ ],
+ "regions": {
+ "default": "https://lodash.com/docs#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://logeion.uchicago.edu/favicon.ico",
+ "name": "Logeion University of Chicago",
+ "triggers": [
+ "logeion"
+ ],
+ "regions": {
+ "default": "http://logeion.uchicago.edu/index.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://logopond.com/favicon.ico",
+ "name": "logopond",
+ "triggers": [
+ "logo"
+ ],
+ "regions": {
+ "default": "http://logopond.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.logos.com/favicon.ico",
+ "name": "Logos Bible Software",
+ "triggers": [
+ "lbs"
+ ],
+ "regions": {
+ "default": "https://www.logos.com/products/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images-americanas.b2w.io/zion/manifest/icons/5469ad8421a10676927c4f8dee1404a3.favicon.ico",
+ "name": "Lojas Americanas",
+ "triggers": [
+ "americanas"
+ ],
+ "regions": {
+ "default": "http://www.americanas.com.br/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mw.lojban.org/extensions/LojbanFavicon.ico",
+ "name": "Lojban.org (the official website and wiki)",
+ "triggers": [
+ "lojban"
+ ],
+ "regions": {
+ "default": "https://mw.lojban.org/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://lokan.jp/wp-content/themes/lokan2017/images/favicon.png",
+ "name": "LoKan.jp",
+ "triggers": [
+ "lkn"
+ ],
+ "regions": {
+ "default": "https://lokan.jp/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lolbuilder.net/favicon.ico",
+ "name": "LoL Builder",
+ "triggers": [
+ "lb"
+ ],
+ "regions": {
+ "default": "http://lolbuilder.net/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lolcounter.com/favicon.ico",
+ "name": "LOL counter",
+ "triggers": [
+ "lolcounter"
+ ],
+ "regions": {
+ "default": "http://www.lolcounter.com/champions/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lol.esportspedia.com/favicon.ico",
+ "name": "LoL Esportspedia",
+ "triggers": [
+ "esplol"
+ ],
+ "regions": {
+ "default": "http://lol.esportspedia.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lol.esportswikis.com/favicon.ico",
+ "name": "LoL EsportsWikis",
+ "triggers": [
+ "ewlol"
+ ],
+ "regions": {
+ "default": "http://lol.esportswikis.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-noxia.cursecdn.com/avatars/thumbnails/1/252/32/32/635145839745343114.png",
+ "name": "LoL Pro",
+ "triggers": [
+ "lolpro"
+ ],
+ "regions": {
+ "default": "http://www.lolpro.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/leagueoflegends/images/6/64/Favicon.ico/revision/latest?cb=20170101115856",
+ "name": "LoL Wikia",
+ "triggers": [
+ "lolwikia"
+ ],
+ "regions": {
+ "default": "http://leagueoflegends.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lolking.net/favicon.ico",
+ "name": "LolKing",
+ "triggers": [
+ "lk",
+ "elo",
+ "lolking"
+ ],
+ "regions": {
+ "default": "http://www.lolking.net/search?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lololyrics.com/favicon.ico",
+ "name": "Lololyrics",
+ "triggers": [
+ "lololyrics"
+ ],
+ "regions": {
+ "default": "http://www.lololyrics.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//static.lolskill.net/img/favicon/touch-icon-192x192.png",
+ "name": "Lolskill",
+ "triggers": [
+ "lolskill"
+ ],
+ "regions": {
+ "default": "http://www.lolskill.net/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.londondrugs.com/on/demandware.static/Sites-LondonDrugs-Site/-/default/dw38079b16/img/favicon.ico",
+ "name": "London Drugs",
+ "triggers": [
+ "londondrugs"
+ ],
+ "regions": {
+ "default": "https://www.londondrugs.com/on/demandware.store/Sites-LondonDrugs-Site/default/Search-Show?q={{{term}}}&simplesearch=Go"
+ }
+ },
+ {
+ "favicon": "http://www.standard.co.uk/img/shortcut-icons/favicon.ico",
+ "name": "London Evening Standard",
+ "triggers": [
+ "eveningstandard"
+ ],
+ "regions": {
+ "default": "http://www.standard.co.uk/search/site/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.lonelyplanet.com/favicon.ico",
+ "name": "lonelyplanet",
+ "triggers": [
+ "lonelyplanet"
+ ],
+ "regions": {
+ "default": "https://www.lonelyplanet.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d27ucmmhxk51xv.cloudfront.net/external/images/favicon.ico?version=1.1.58",
+ "name": "Longman Dictionary of Contemporary English",
+ "triggers": [
+ "ld"
+ ],
+ "regions": {
+ "default": "http://www.ldoceonline.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.loot.co.za/favicon.ico",
+ "name": "Loot.co.za",
+ "triggers": [
+ "loot"
+ ],
+ "regions": {
+ "default": "http://www.loot.co.za/search?cat=b&terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lipsum.com/favicon.ico",
+ "name": "Lorem Ipsum",
+ "triggers": [
+ "lipsum"
+ ],
+ "regions": {
+ "default": "http://www.lipsum.com/feed/html?amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/lostpedia/images/6/64/Favicon.ico/revision/latest?cb=20090505103117",
+ "name": "Lostpedia",
+ "triggers": [
+ "lost"
+ ],
+ "regions": {
+ "default": "http://lostpedia.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lotro-wiki.com/images/logo/favicon.ico",
+ "name": "LOTRO-Wiki",
+ "triggers": [
+ "lotrow"
+ ],
+ "regions": {
+ "default": "http://lotro-wiki.com/index.php?search={{{term}}}&button=&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://pac.lfpl.org/favicon.ico",
+ "name": "Louisville Free Public Library",
+ "triggers": [
+ "lfpl"
+ ],
+ "regions": {
+ "default": "http://pac.lfpl.org/polaris/search/searchresults.aspx?&type=Default&by=KW&sort=RELEVANCE&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lourdson.com/favicon.ico",
+ "name": "Lourdson",
+ "triggers": [
+ "lourd"
+ ],
+ "regions": {
+ "default": "http://www.lourdson.com/recherche/?cx=partner-pub-6470156003735169%3A9911196562&cof=FORID%3A10&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lovdata.no/favicon.ico",
+ "name": "Lovdata",
+ "triggers": [
+ "lovdata"
+ ],
+ "regions": {
+ "default": "http://lovdata.no/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/love-live/images/6/64/Favicon.ico/revision/latest?cb=20150503072421",
+ "name": "Love Live! Wiki",
+ "triggers": [
+ "lovelive"
+ ],
+ "regions": {
+ "default": "http://love-live.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lovefilm.com/favicon.ico",
+ "name": "lovefilm.com",
+ "triggers": [
+ "lovefilm"
+ ],
+ "regions": {
+ "default": "https://www.lovefilm.com/search/results/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d369mi6yjmkhlt.cloudfront.net/static/images/favicons/favicon-16x16.png",
+ "name": "Loveseat",
+ "triggers": [
+ "loveseat"
+ ],
+ "regions": {
+ "default": "https://www.loveseat.com/search/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lovisa2.lub.lu.se/favicon.ico",
+ "name": "Lovisa Library Catalogue",
+ "triggers": [
+ "lovisa"
+ ],
+ "regions": {
+ "default": "https://lovisa2.lub.lu.se/search/query?term_1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lowendbox.com/wp-content/themes/leb/favicon.ico",
+ "name": "LowEndBox",
+ "triggers": [
+ "leb"
+ ],
+ "regions": {
+ "default": "https://lowendbox.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lowendtalk.com/uploads/LowEndTalk.ico",
+ "name": "LowEndTalk",
+ "triggers": [
+ "let"
+ ],
+ "regions": {
+ "default": "https://www.lowendtalk.com/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/loweringthebar.net/wp-content/uploads/2018/06/cropped-LTB-512x512-1.jpg?fit=192,192",
+ "name": "Lowering the Bar",
+ "triggers": [
+ "loweringthebar"
+ ],
+ "regions": {
+ "default": "http://www.loweringthebar.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.lowes.com/favicon.ico",
+ "name": "Lowes",
+ "triggers": [
+ "lowes"
+ ],
+ "regions": {
+ "default": "https://www.lowes.com/SearchCatalogDisplay?Ntt={{{term}}}#!"
+ }
+ },
+ {
+ "favicon": "https://images.atgstores.com/images/lowesfavicon.ico",
+ "name": "Lowes Canada",
+ "triggers": [
+ "lowesca"
+ ],
+ "regions": {
+ "default": "https://www.lowes.ca/search/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://luarocks.org/favicon.ico",
+ "name": "LuaRocks",
+ "triggers": [
+ "luarocks",
+ "rock"
+ ],
+ "regions": {
+ "default": "https://luarocks.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://s.lubimyczytac.pl/img/favicon/favicon_64.png?2018061401",
+ "name": "lubimyczytac",
+ "triggers": [
+ "lubimyczytac"
+ ],
+ "regions": {
+ "default": "http://lubimyczytac.pl/szukaj/ksiazki?phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lubuntu.me/wp-content/uploads/fbrfg/favicon.ico",
+ "name": "Lubuntu.me",
+ "triggers": [
+ "lubuntu"
+ ],
+ "regions": {
+ "default": "http://lubuntu.me/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ludopedia.com.br/favicon-16x16.png",
+ "name": "Ludopedia",
+ "triggers": [
+ "ludopedia",
+ "ludo"
+ ],
+ "regions": {
+ "default": "http://ludopedia.com.br/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ludwig.guru/favicon.ico?v=PYEleBpK21",
+ "name": "Ludwig",
+ "triggers": [
+ "ludwig"
+ ],
+ "regions": {
+ "default": "https://ludwig.guru/s/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://news.lugnet.com/favicon.ico",
+ "name": "LUGNET",
+ "triggers": [
+ "lugnet"
+ ],
+ "regions": {
+ "default": "http://news.lugnet.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/mansionluigi/images/6/64/Favicon.ico/revision/latest?cb=20101214154943",
+ "name": "Luigi's Mansion Wiki",
+ "triggers": [
+ "lmwiki"
+ ],
+ "regions": {
+ "default": "http://luigi-mansion.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lumendatabase.org/favicon.ico",
+ "name": "LumenDatabase",
+ "triggers": [
+ "lumen"
+ ],
+ "regions": {
+ "default": "https://lumendatabase.org/notices/search?utf8=✓&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lumload.com/favicon.ico",
+ "name": "Lumload",
+ "triggers": [
+ "lumload"
+ ],
+ "regions": {
+ "default": "http://lumload.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://lurkmore.to/skins/common/favicon.png",
+ "name": "Lurkmoar",
+ "triggers": [
+ "lurk",
+ "lurkmore"
+ ],
+ "regions": {
+ "default": "https://lurkmore.to/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.lush.com/sites/all/themes/lush/favicon.ico",
+ "name": "Lush",
+ "triggers": [
+ "luch"
+ ],
+ "regions": {
+ "default": "https://de.lush.com/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lutris.net/static/favicon.ico",
+ "name": "Lutris - Open Gaming Platform",
+ "triggers": [
+ "lutris"
+ ],
+ "regions": {
+ "default": "https://lutris.net/games/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://luvit.io/favicon.png",
+ "name": "luvit.io",
+ "triggers": [
+ "lit"
+ ],
+ "regions": {
+ "default": "https://luvit.io/lit.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://luzme.com/favicon.ico",
+ "name": "Luzme",
+ "triggers": [
+ "luzme"
+ ],
+ "regions": {
+ "default": "http://luzme.com/search_all?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lwn.net/images/favicon.png",
+ "name": "LWN.net",
+ "triggers": [
+ "lwn"
+ ],
+ "regions": {
+ "default": "https://lwn.net/Search/DoSearch?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lxle.net/favicon.ico",
+ "name": "LXLE Linux",
+ "triggers": [
+ "lxle"
+ ],
+ "regions": {
+ "default": "http://lxle.net/forum/#/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ly.lygo.com/ly/lycos/3/img/favicon.ico",
+ "name": "Lycos",
+ "triggers": [
+ "lycos"
+ ],
+ "regions": {
+ "default": "http://search.lycos.com/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.lynda.com/static/favicon.ico",
+ "name": "Lynda.com",
+ "triggers": [
+ "lynda"
+ ],
+ "regions": {
+ "default": "http://www.lynda.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yellowpipe.com/favicon.ico",
+ "name": "Lynx Viewer (Yellowpipe.com)",
+ "triggers": [
+ "lynxview"
+ ],
+ "regions": {
+ "default": "http://www.yellowpipe.com/yis/tools/lynx/lynxview.cgi?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lynx.io/favicon.ico",
+ "name": "lynx.io",
+ "triggers": [
+ "lynx"
+ ],
+ "regions": {
+ "default": "http://lynx.io/#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/lyricwiki/images/6/64/Favicon.ico/revision/latest?cb=20161120182255",
+ "name": "Lyric Wiki",
+ "triggers": [
+ "lyrics",
+ "lyricswiki",
+ "lyricwiki"
+ ],
+ "regions": {
+ "default": "http://lyrics.wikia.com/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.lyricsmania.com/favicon.ico",
+ "name": "Lyrics Mania",
+ "triggers": [
+ "lyricsmania"
+ ],
+ "regions": {
+ "default": "http://www.lyricsmania.com/searchnew.php?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lyricstranslate-f2sqfo9.stackpathdns.com/misc/favicon.ico",
+ "name": "Lyrics Translate",
+ "triggers": [
+ "lyricstranslate"
+ ],
+ "regions": {
+ "default": "http://lyricstranslate.com/en/site-search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.lyrify.com/img/favicon.ico",
+ "name": "Lyrify",
+ "triggers": [
+ "lyr"
+ ],
+ "regions": {
+ "default": "http://www.lyrify.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lyriki.com/favicon.png",
+ "name": "Lyriki",
+ "triggers": [
+ "lyriki"
+ ],
+ "regions": {
+ "default": "http://lyriki.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "//cdn.lyrster.com/favicon.ico",
+ "name": "Lyrster",
+ "triggers": [
+ "lyrster"
+ ],
+ "regions": {
+ "default": "http://www.lyrster.com/songs-lyrics/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://love2d.org/w/favicon.png",
+ "name": "LÖVE",
+ "triggers": [
+ "love"
+ ],
+ "regions": {
+ "default": "https://love2d.org/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://love2d.org/w/favicon.png",
+ "name": "LÖVE Wiki",
+ "triggers": [
+ "lovewiki"
+ ],
+ "regions": {
+ "default": "https://love2d.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.love2d.org/w/favicon.png",
+ "name": "LÖVE2D",
+ "triggers": [
+ "love2d"
+ ],
+ "regions": {
+ "default": "https://www.love2d.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.maakjetaart.nl/favicon.ico",
+ "name": "Maak Je Taart",
+ "triggers": [
+ "maakjetaart"
+ ],
+ "regions": {
+ "default": "http://www.maakjetaart.nl/advanced_search_result.php?search_in_description=0&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.mabinogiworld.com/favicon_mw.ico",
+ "name": "Mabinogi World Wiki",
+ "triggers": [
+ "mabiwiki"
+ ],
+ "regions": {
+ "default": "http://wiki.mabinogiworld.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.macvendorlookup.com/favicon.png",
+ "name": "MAC address lookup",
+ "triggers": [
+ "mac",
+ "macvendor"
+ ],
+ "regions": {
+ "default": "http://www.macvendorlookup.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.macrumors.com/images-new/favicon.ico",
+ "name": "Mac Rumors",
+ "triggers": [
+ "mr"
+ ],
+ "regions": {
+ "default": "http://www.macrumors.com/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//mac-torrent-download.net/wp-content/themes/stinger5_child/images/rogo.ico",
+ "name": "Mac Torrent Download",
+ "triggers": [
+ "mtd"
+ ],
+ "regions": {
+ "default": "http://mac-torrent-download.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macg.co/sites/all/themes/gsphere_theme/icons/macg/favicon.ico",
+ "name": "MacGeneration",
+ "triggers": [
+ "macg"
+ ],
+ "regions": {
+ "default": "http://www.macg.co/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macmillandictionary.com/external/images/favicon.ico?version=3.0.120",
+ "name": "MacMillan Dictionary",
+ "triggers": [
+ "macmillan",
+ "macdic"
+ ],
+ "regions": {
+ "default": "https://www.macmillandictionary.com/dictionary/american/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macmillandictionary.com/external/images/favicon.ico?version=3.0.120",
+ "name": "Macmillan Dictionary",
+ "triggers": [
+ "mm"
+ ],
+ "regions": {
+ "default": "https://www.macmillandictionary.com/us/search/british/direct/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macmillandictionary.com/external/images/favicon.ico?version=3.0.120",
+ "name": "Macmillan Dictionary",
+ "triggers": [
+ "macbrit"
+ ],
+ "regions": {
+ "default": "https://www.macmillandictionary.com/dictionary/british/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macports.org/favicon.ico",
+ "name": "MacPorts",
+ "triggers": [
+ "macports"
+ ],
+ "regions": {
+ "default": "https://www.macports.org/ports.php?by=name&substr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.macrumors.com/images-new/favicon.ico",
+ "name": "MacRumors",
+ "triggers": [
+ "macrumors"
+ ],
+ "regions": {
+ "default": "http://www.macrumors.com/search/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macstories.net/app/themes/macstories4/images/favicon.png",
+ "name": "MacStories",
+ "triggers": [
+ "macstories"
+ ],
+ "regions": {
+ "default": "http://www.macstories.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.macupdate.com/favicon.ico",
+ "name": "MacUpdate",
+ "triggers": [
+ "macupdate"
+ ],
+ "regions": {
+ "default": "http://www.macupdate.com/find/mac/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://macupdate.com/favicon.ico",
+ "name": "MacUpdate",
+ "triggers": [
+ "mu"
+ ],
+ "regions": {
+ "default": "http://macupdate.com/find/mac/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.macwelt.de/favicon.ico",
+ "name": "Macwelt",
+ "triggers": [
+ "macwelt"
+ ],
+ "regions": {
+ "default": "http://www.macwelt.de/suche?searchStr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.macworld.com/www.idgcsmb.mw/favicon.ico",
+ "name": "Macworld",
+ "triggers": [
+ "macworld"
+ ],
+ "regions": {
+ "default": "https://www.macworld.com/search?query={{{term}}} &submit=search"
+ }
+ },
+ {
+ "favicon": "https://theme.made.com/skin/frontend/made/default/favicon.ico",
+ "name": "Made.com",
+ "triggers": [
+ "made.com",
+ "made"
+ ],
+ "regions": {
+ "default": "http://www.made.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://host.madison.com/content/tncms/site/icon.ico",
+ "name": "Madison.com",
+ "triggers": [
+ "madison"
+ ],
+ "regions": {
+ "default": "http://host.madison.com/search/?l=25&sd=desc&s=start_time&f=html&t=article%2Cvideo%2Cyoutube%2Ccollection&app=editorial&q={{{term}}}&nsa=eedition"
+ }
+ },
+ {
+ "favicon": "https://static.mmzstatic.com/misc/favicon.ico?v=2",
+ "name": "Madmoizelle",
+ "triggers": [
+ "mdmz"
+ ],
+ "regions": {
+ "default": "http://www.madmoizelle.com/recherche.php?q={{{term}}}&sitesearch=madmoizelle.com&cx=014204933963475694561%3Aq69po45gmum&cof=FORID%3A11&client=pub-9887088429202220&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A11&hl=fr&sa=Recherche"
+ }
+ },
+ {
+ "favicon": "http://www.maerklin.de/favicon.ico",
+ "name": "Maerklin.de",
+ "triggers": [
+ "maerklinde"
+ ],
+ "regions": {
+ "default": "http://www.maerklin.de/index.php?id=247&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www2.informatik.uni-hamburg.de/favicon.ico",
+ "name": "Mafiasi Wiki",
+ "triggers": [
+ "mafia",
+ "mafiasi"
+ ],
+ "regions": {
+ "default": "https://www2.informatik.uni-hamburg.de/fachschaft/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mageialinux-online.org/favicon.ico",
+ "name": "Mageia linux Online",
+ "triggers": [
+ "mlo"
+ ],
+ "regions": {
+ "default": "http://www.mageialinux-online.org/search/search.php#results?q={{{term}}}&search_submit=Recherche"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/magento/img/favicon.ico?v=ea0e961e7c23",
+ "name": "Magento StackExchange",
+ "triggers": [
+ "mse"
+ ],
+ "regions": {
+ "default": "https://magento.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.cardmarket.com/img/c0a10b062a8c3b48a5c29b779b3ac51e/static/misc/favicon-96x96.png",
+ "name": "MagicCardMarket",
+ "triggers": [
+ "mcm",
+ "mkm",
+ "magiccardmarket"
+ ],
+ "regions": {
+ "default": "https://www.magiccardmarket.eu/?mainPage=showSearchResult&searchFor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://magiccards.info/favicon.ico",
+ "name": "Magiccards",
+ "triggers": [
+ "mc.info",
+ "magiccard",
+ "magiccards"
+ ],
+ "regions": {
+ "default": "http://magiccards.info/query?q={{{term}}}&v=card&s=cname"
+ }
+ },
+ {
+ "favicon": "http://magiccards.info/favicon.ico",
+ "name": "magiccards.info",
+ "triggers": [
+ "mtg"
+ ],
+ "regions": {
+ "default": "http://magiccards.info/query?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://magma.maths.usyd.edu.au/favicon.ico",
+ "name": "Magma",
+ "triggers": [
+ "magma"
+ ],
+ "regions": {
+ "default": "http://magma.maths.usyd.edu.au/magma/handbook/search?query={{{term}}}&intrinsics=1"
+ }
+ },
+ {
+ "favicon": "http://df.magmawiki.com/favicon.ico",
+ "name": "MagmaWiki",
+ "triggers": [
+ "magmawiki"
+ ],
+ "regions": {
+ "default": "http://df.magmawiki.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.levinecentral.com/favicon.ico",
+ "name": "Maidenhead Grid Locator",
+ "triggers": [
+ "maid/mhead"
+ ],
+ "regions": {
+ "default": "http://www.levinecentral.com/ham/grid_square.php?Grid={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mailcatch.com/favicon.ico",
+ "name": "mailcatch.com",
+ "triggers": [
+ "mailcatch"
+ ],
+ "regions": {
+ "default": "http://mailcatch.com/en/temporary-inbox?box={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.maildrop.cc/favicon.ico",
+ "name": "MailDrop",
+ "triggers": [
+ "drop"
+ ],
+ "regions": {
+ "default": "https://www.maildrop.cc/inbox/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mailinator.com/ico/favicon.ico",
+ "name": "mailinator",
+ "triggers": [
+ "mailinator"
+ ],
+ "regions": {
+ "default": "https://www.mailinator.com/v2/inbox.jsp?zone=public&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.maisgasolina.com/favicon.ico",
+ "name": "Mais Gasolina",
+ "triggers": [
+ "gasolina"
+ ],
+ "regions": {
+ "default": "https://www.maisgasolina.com/pesquisa/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.majorgeeks.com/favicon.ico",
+ "name": "Major Geeks",
+ "triggers": [
+ "majorgeeks"
+ ],
+ "regions": {
+ "default": "http://www.majorgeeks.com/content/page/mg_search.html?cx=partner-pub-6960825562757852%3A6029691205&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa.x=0&sa.y=0&siteurl=www.majorgeeks.com%2F&ref=&ss=2260j663616j11&siteurl=www.majorgeeks.com%2F&ref=&ss=2258j662940j11"
+ }
+ },
+ {
+ "favicon": "http://www.majorgeeks.com/favicon.ico",
+ "name": "MajorGeeks",
+ "triggers": [
+ "mg"
+ ],
+ "regions": {
+ "default": "http://www.majorgeeks.com/content/page/mg_search.html?cx=partner-pub-6960825562757852%3A6029691205&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa.x=-1068&sa.y=-38&siteurl=www.majorgeeks.com%2F&ref=&ss=451j54533j5&siteurl=www.majorgeeks.com%2F&ref=&ss=451j54653j5 "
+ }
+ },
+ {
+ "favicon": "http://www.majorsbooks.com/Content/Images/favicon.png",
+ "name": "Majors Books",
+ "triggers": [
+ "majorsbooks"
+ ],
+ "regions": {
+ "default": "http://www.majorsbooks.com/search.aspx?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.makenewfriendspodcast.com/wp-content/uploads/2017/05/cropped-MNF-logo-plain-192x192.png",
+ "name": "Make New Friends Podcast",
+ "triggers": [
+ "mnf"
+ ],
+ "regions": {
+ "default": "https://www.makenewfriendspodcast.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i1.wp.com/makezine.com/wp-content/uploads/2018/06/favicon-32x32.png?fit=32,32&ssl=1",
+ "name": "Make:",
+ "triggers": [
+ "makezine"
+ ],
+ "regions": {
+ "default": "http://makezine.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.makemac.com/wp-content/uploads/2017/05/ikon-bookmark.jpg",
+ "name": "MakeMac",
+ "triggers": [
+ "makemac"
+ ],
+ "regions": {
+ "default": "http://makemac.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://makermex.com/web/image/website/1/favicon/",
+ "name": "MakerMEx",
+ "triggers": [
+ "mkmx"
+ ],
+ "regions": {
+ "default": "http://makermex.com/index.php?route=product/search&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://makeupalley.com/art/fav/icon.114x114.png",
+ "name": "Makeup Alley",
+ "triggers": [
+ "mua"
+ ],
+ "regions": {
+ "default": "http://makeupalley.com/search.asp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.makeuseof.com/wp-content/themes/makeuseof2016/components/icons/32x32.png",
+ "name": "MakeUseOf",
+ "triggers": [
+ "makeuseof"
+ ],
+ "regions": {
+ "default": "http://www.makeuseof.com/search/?cx=009717636731598800244%3Aqhe4rh7wuxs&cof=FORID%3A11&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.makeuseof.com/wp-content/themes/makeuseof2016/components/icons/32x32.png",
+ "name": "Makeuseof",
+ "triggers": [
+ "muo"
+ ],
+ "regions": {
+ "default": "http://www.makeuseof.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.makro.cz/favicon/makro-favicon-16x16.png",
+ "name": "Makro.cz",
+ "triggers": [
+ "makro"
+ ],
+ "regions": {
+ "default": "https://www.makro.cz/vyhledavani?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.maku.fi/static/favicons/meillakotona/favicon-16x16.png",
+ "name": "Maku.fi",
+ "triggers": [
+ "maku"
+ ],
+ "regions": {
+ "default": "http://www.maku.fi/haku/recipe?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.maltapark.com/favicon.ico",
+ "name": "Maltapark",
+ "triggers": [
+ "maltapark"
+ ],
+ "regions": {
+ "default": "http://www.maltapark.com/search.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Maltese Wikipedia",
+ "triggers": [
+ "wmt"
+ ],
+ "regions": {
+ "default": "http://mt.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.malwarebytes.com/favicon-16x16.png",
+ "name": "Malwarebytes Unpacked",
+ "triggers": [
+ "malwarebytesunpacked"
+ ],
+ "regions": {
+ "default": "https://blog.malwarebytes.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.malwarebytes.com/favicon-16x16.png",
+ "name": "Malwarebytes Unpacked",
+ "triggers": [
+ "mbamblog"
+ ],
+ "regions": {
+ "default": "https://blog.malwarebytes.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.malwareup.org/favicon.ico",
+ "name": "MalwareUp",
+ "triggers": [
+ "malwareup"
+ ],
+ "regions": {
+ "default": "http://www.malwareup.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mamf.com.br/wp-content/uploads/2018/05/cropped-FAVCOM-192x192.png",
+ "name": "Mamfonline News",
+ "triggers": [
+ "mamf"
+ ],
+ "regions": {
+ "default": "http://www.mamf.com.br/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mamma.com/favicon.ico",
+ "name": "Mamma",
+ "triggers": [
+ "mamma"
+ ],
+ "regions": {
+ "default": "http://www.mamma.com/result.php?q={{{term}}}&type=web"
+ }
+ },
+ {
+ "favicon": "http://www.mmnt.ru/favicon.ico",
+ "name": "Mamont",
+ "triggers": [
+ "mamont",
+ "mmnt"
+ ],
+ "regions": {
+ "default": "http://www.mmnt.ru/int/get?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://man.openbsd.org/favicon.ico",
+ "name": "man.openbsd.org",
+ "triggers": [
+ "openbsdman"
+ ],
+ "regions": {
+ "default": "https://man.openbsd.org/?query={{{term}}}&apropos=0&sec=0&arch=default&manpath=OpenBSD-current"
+ }
+ },
+ {
+ "favicon": "https://i.mgtbk.nl/platform/m3-555fa10/managementboek/images/favicon.ico",
+ "name": "Managementboek.nl",
+ "triggers": [
+ "mgtbk"
+ ],
+ "regions": {
+ "default": "https://www.managementboek.nl/zoeken?c=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ekizo.mandarake.co.jp/favicon.ico",
+ "name": "Mandarake",
+ "triggers": [
+ "mandarake"
+ ],
+ "regions": {
+ "default": "http://ekizo.mandarake.co.jp/shop/en/search.do?action=keyword&doujin=all&searchStrategy=keyword&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mandarintools.com/images/zi.ico",
+ "name": "Mandarin Tools Chinese-English Dictionary (Chinese/Pinyin)",
+ "triggers": [
+ "mtcn"
+ ],
+ "regions": {
+ "default": "http://www.mandarintools.com/cgi-bin/wordlook.pl?word={{{term}}}&where=whole"
+ }
+ },
+ {
+ "favicon": "http://www.mandarintools.com/images/zi.ico",
+ "name": "Mandarin Tools Chinese-English Dictionary (English)",
+ "triggers": [
+ "mten"
+ ],
+ "regions": {
+ "default": "http://www.mandarintools.com/cgi-bin/wordlook.pl?word={{{term}}}&searchtype=english&where=whole"
+ }
+ },
+ {
+ "favicon": "https://manga.akihabara.cz//design/default/aki.ico",
+ "name": "Manga Akihabara",
+ "triggers": [
+ "manbara"
+ ],
+ "regions": {
+ "default": "http://manga.akihabara.cz/vyhledavani/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mangafox.me/favicon.ico",
+ "name": "Manga Fox",
+ "triggers": [
+ "mangafox"
+ ],
+ "regions": {
+ "default": "http://mangafox.me/search.php?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s4.mangareader.net/favicon.ico",
+ "name": "Manga Reader",
+ "triggers": [
+ "mangar"
+ ],
+ "regions": {
+ "default": "http://www.mangareader.net/search/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.manga-sanctuary.com/favicon.png",
+ "name": "Manga Sanctuary",
+ "triggers": [
+ "msanctuary"
+ ],
+ "regions": {
+ "default": "http://www.manga-sanctuary.com/recherche.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mangago.me/favicon.ico",
+ "name": "mangago.me",
+ "triggers": [
+ "mangago"
+ ],
+ "regions": {
+ "default": "http://www.mangago.me/r/l_search/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mangahere.com/favicon.ico",
+ "name": "MangaHere",
+ "triggers": [
+ "mangahere"
+ ],
+ "regions": {
+ "default": "http://www.mangahere.com/search.php?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.manjaro.org/uploads/default/original/1X/f885dfed6066c21935e167d88830743bf7e86a78.png",
+ "name": "Manjaro Forum",
+ "triggers": [
+ "manjf"
+ ],
+ "regions": {
+ "default": "https://forum.manjaro.org/search?expanded=true&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.manjaro.org/uploads/default/original/1X/f885dfed6066c21935e167d88830743bf7e86a78.png",
+ "name": "Manjaro Linux Forums",
+ "triggers": [
+ "mlf"
+ ],
+ "regions": {
+ "default": "https://forum.manjaro.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.manjaro.org/favicon.ico",
+ "name": "Manjaro Wiki",
+ "triggers": [
+ "manjaro"
+ ],
+ "regions": {
+ "default": "https://wiki.manjaro.org/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://wiki.manjaro.org/favicon.ico",
+ "name": "Manjaro Wiki",
+ "triggers": [
+ "manjw"
+ ],
+ "regions": {
+ "default": "https://wiki.manjaro.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mankier.com/favicon.ico",
+ "name": "Mankier",
+ "triggers": [
+ "mankier"
+ ],
+ "regions": {
+ "default": "https://www.mankier.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.manta.com/favicon.ico",
+ "name": "Manta",
+ "triggers": [
+ "manta"
+ ],
+ "regions": {
+ "default": "https://www.manta.com/mb?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://manualsink.com/favicon.ico",
+ "name": "Manuals Ink",
+ "triggers": [
+ "manual"
+ ],
+ "regions": {
+ "default": "http://manualsink.com/Search.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.manualslib.com/favicon-16.png",
+ "name": "ManualsLib",
+ "triggers": [
+ "manualslib"
+ ],
+ "regions": {
+ "default": "http://www.manualslib.com/a/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://mapa.buenosaires.gov.ar/images/icons/f084e598.196.png",
+ "name": "Mapa Interactivo de Buenos Aires",
+ "triggers": [
+ "mbs",
+ "mdbs"
+ ],
+ "regions": {
+ "default": "http://mapa.buenosaires.gov.ar/buscador/?dir= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "//app.mappy.net/front/portal/5.1-20180628T1759-8311ac7/images/favicon/favicon.ico",
+ "name": "Mappy FR",
+ "triggers": [
+ "mappy"
+ ],
+ "regions": {
+ "default": "http://fr.mappy.com/#/TSearch/S{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://content.mqcdn.com/yogi/favicon-16x16.png",
+ "name": "MapQuest",
+ "triggers": [
+ "mq",
+ "mapquest"
+ ],
+ "regions": {
+ "default": "http://www.mapquest.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://content.mqcdn.com/yogi/favicon.ico",
+ "name": "Mapquest Open",
+ "triggers": [
+ "om"
+ ],
+ "regions": {
+ "default": "http://open.mapquest.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maps.yandex.ru/maps/favicon.png",
+ "name": "Maps.Yandex",
+ "triggers": [
+ "yxmaps"
+ ],
+ "regions": {
+ "default": "https://maps.yandex.ru/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zumi.pl/_d/favicon.ico",
+ "name": "Mapy Zumi",
+ "triggers": [
+ "zumi"
+ ],
+ "regions": {
+ "default": "http://mapy.zumi.pl/?loc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mapy.cz/img/favicon/apple-touch-icon.png",
+ "name": "Mapy.cz",
+ "triggers": [
+ "mapy"
+ ],
+ "regions": {
+ "default": "https://mapy.cz/zakladni?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://marc.info/favicon.ico",
+ "name": "MARC Linux Kernel",
+ "triggers": [
+ "lxml"
+ ],
+ "regions": {
+ "default": "https://marc.info/?l=linux-kernel&w=2&r=1&s={{{term}}}&q=b"
+ }
+ },
+ {
+ "favicon": "http://cgi.marca.com/favicon.ico",
+ "name": "Marca",
+ "triggers": [
+ "marca"
+ ],
+ "regions": {
+ "default": "http://cgi.marca.com/buscador/archivo_marca.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2378nh2nfow32gm3mb25krmuyy-wpengine.netdna-ssl.com/wp-content/uploads/2015/10/cropped-MR-logo-thumbnail-150x150.png",
+ "name": "Marginal Revolution",
+ "triggers": [
+ "marginalrevolution"
+ ],
+ "regions": {
+ "default": "http://marginalrevolution.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mariadb.com/sites/default/files/favicon.png",
+ "name": "Mariadb",
+ "triggers": [
+ "mariadb"
+ ],
+ "regions": {
+ "default": "https://mariadb.com/kb/en/+search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.marinetraffic.com/favicon.ico",
+ "name": "Marine Traffic",
+ "triggers": [
+ "marinetraffic"
+ ],
+ "regions": {
+ "default": "https://www.marinetraffic.com/en/ais/index/search/all?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.marinetraffic.com/favicon.ico",
+ "name": "MarineTraffic",
+ "triggers": [
+ "marine"
+ ],
+ "regions": {
+ "default": "https://www.marinetraffic.com/en/ais/index/search/all/keyword:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/mariokart/images/6/64/Favicon.ico/revision/latest?cb=20170621085447",
+ "name": "Mario Kart Racing Wiki",
+ "triggers": [
+ "mkrw"
+ ],
+ "regions": {
+ "default": "http://mariokart.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.markandgraham.com/mgimgs/ab/images/i/201826/0001/images/favicon.ico?v=3",
+ "name": "Mark and Graham",
+ "triggers": [
+ "markandgraham"
+ ],
+ "regions": {
+ "default": "http://www.markandgraham.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.marksdailyapple.com/wp-content/themes/dailyapple/images/favicon.ico",
+ "name": "Mark's Daily Apple",
+ "triggers": [
+ "mda"
+ ],
+ "regions": {
+ "default": "https://www.marksdailyapple.com/search-results/?cx=004987908667488763946%3Akd-fp2c7jek&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&siteurl=www.marksdailyapple.com%2F&ref=&ss=1623j619159j7"
+ }
+ },
+ {
+ "favicon": "https://mw4.wsj.net/mw5/content/logos/favicon.ico",
+ "name": "MarketWatch",
+ "triggers": [
+ "wsjmw"
+ ],
+ "regions": {
+ "default": "https://www.marketwatch.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mw4.wsj.net/mw5/content/logos/favicon.ico",
+ "name": "MarketWatch",
+ "triggers": [
+ "mktw"
+ ],
+ "regions": {
+ "default": "https://www.marketwatch.com/investing/stock/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://markmail.org/favicon.ico",
+ "name": "MarkMail",
+ "triggers": [
+ "markmail"
+ ],
+ "regions": {
+ "default": "http://markmail.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.marksandspencer.com/favicon.ico",
+ "name": "Marks & Spencer",
+ "triggers": [
+ "mands"
+ ],
+ "regions": {
+ "default": "https://www.marksandspencer.com/gp/search?field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.markt.de/bundles/3f739d82/favicon.ico",
+ "name": "Markt.de",
+ "triggers": [
+ "markt"
+ ],
+ "regions": {
+ "default": "http://www.markt.de/muenchen/keywords,{{{term}}}/suche.htm"
+ }
+ },
+ {
+ "favicon": "//s.marktplaats.com/z/res/images/mp-favicons/favicon-32x32.png?v=2",
+ "name": "Marktplaats",
+ "triggers": [
+ "marktplaats"
+ ],
+ "regions": {
+ "default": "https://www.marktplaats.nl/z.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.marktplaats.com/z/res/images/mp-favicons/favicon-32x32.png?v=2",
+ "name": "marktplaats.nl",
+ "triggers": [
+ "mar"
+ ],
+ "regions": {
+ "default": "https://marktplaats.nl/z.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.marmiton.org/favicon.ico",
+ "name": "Marmiton",
+ "triggers": [
+ "marmit"
+ ],
+ "regions": {
+ "default": "http://www.marmiton.org/recettes/recherche.aspx?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.marmiton.org/favicon.ico",
+ "name": "Marmiton",
+ "triggers": [
+ "marmiton"
+ ],
+ "regions": {
+ "default": "http://www.marmiton.org/recettes/recherche.aspx?aqt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.martinka.com/media/favicon/websites/2/MCO-M-Logo2.jpg",
+ "name": "martinka",
+ "triggers": [
+ "martinka"
+ ],
+ "regions": {
+ "default": "http://www.martinka.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//mrtns.eu/web/img/favicon/128x128.png",
+ "name": "Martinus",
+ "triggers": [
+ "martinus"
+ ],
+ "regions": {
+ "default": "https://www.martinus.sk/?uMod=list&uTyp=search&uQ={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/marvelcinematicuniverse/images/6/64/Favicon.ico/revision/latest?cb=20170503135554",
+ "name": "Marvel Cinematic Universe wiki",
+ "triggers": [
+ "mcu"
+ ],
+ "regions": {
+ "default": "http://marvelcinematicuniverse.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/marveldatabase/images/6/64/Favicon.ico/revision/latest?cb=20160609221240",
+ "name": "Marvel Comics Database",
+ "triggers": [
+ "marvelwiki"
+ ],
+ "regions": {
+ "default": "http://marvel.wikia.com/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://marvel.com/i/images/favicon/favicon.ico",
+ "name": "Marvel.com",
+ "triggers": [
+ "marvel"
+ ],
+ "regions": {
+ "default": "https://marvel.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mashable.com/favicon.ico?v=m2Pmw8zNwl",
+ "name": "Mashable",
+ "triggers": [
+ "msh"
+ ],
+ "regions": {
+ "default": "https://mashable.com/follow/search/?q={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "https://mashable.com/favicon.ico?v=m2Pmw8zNwl",
+ "name": "Mashable",
+ "triggers": [
+ "mashable"
+ ],
+ "regions": {
+ "default": "https://mashable.com/follow/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mashable.com/favicon.ico?v=m2Pmw8zNwl",
+ "name": "mashable",
+ "triggers": [
+ "mash"
+ ],
+ "regions": {
+ "default": "https://mashable.com/follow/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/masseffect/images/6/64/Favicon.ico/revision/latest?cb=20081023071606",
+ "name": "Mass Effect Wiki",
+ "triggers": [
+ "me"
+ ],
+ "regions": {
+ "default": "http://masseffect.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://massdrop-s3.imgix.net/img_site/favicon/touch-icon-192x192.png?auto=format&fm=jpg&fit=crop",
+ "name": "Massdrop",
+ "triggers": [
+ "massdrop"
+ ],
+ "regions": {
+ "default": "http://www.massdrop.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.masterani.me/favicon.ico",
+ "name": "Masterani.me",
+ "triggers": [
+ "mam"
+ ],
+ "regions": {
+ "default": "http://www.masterani.me/anime?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.masterani.me/favicon.ico",
+ "name": "MasterAnime",
+ "triggers": [
+ "manime"
+ ],
+ "regions": {
+ "default": "https://www.masterani.me/anime?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.masterseek.com/favicon.ico",
+ "name": "Masterseek",
+ "triggers": [
+ "masterseek"
+ ],
+ "regions": {
+ "default": "http://www.masterseek.com/lead_generation_final.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://match.audio/assets/images/logo-512.png",
+ "name": "match.audio",
+ "triggers": [
+ "match"
+ ],
+ "regions": {
+ "default": "https://match.audio/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.materiel.net/favicon.ico?1530629903",
+ "name": "materiel.net",
+ "triggers": [
+ "materiel"
+ ],
+ "regions": {
+ "default": "http://www.materiel.net/achat/{{{term}}} /"
+ }
+ },
+ {
+ "favicon": "https://www.mathsisfun.com/favicon.ico",
+ "name": "Math is fun",
+ "triggers": [
+ "mathisfun"
+ ],
+ "regions": {
+ "default": "https://www.mathsisfun.com/sphider/search.php?query={{{term}}}&submit=&search=1"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/math/img/favicon.ico?v=45993e464f86",
+ "name": "Math Stack",
+ "triggers": [
+ "mstack"
+ ],
+ "regions": {
+ "default": "https://math.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mathem.se/favicon.ico",
+ "name": "Mathem",
+ "triggers": [
+ "mathem"
+ ],
+ "regions": {
+ "default": "https://www.mathem.se/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://reference.wolfram.com/favicon.ico",
+ "name": "Mathematica",
+ "triggers": [
+ "mathematica",
+ "wlr"
+ ],
+ "regions": {
+ "default": "https://reference.wolfram.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.maa.org/sites/all/themes/maa/images/favicon.ico",
+ "name": "Mathematical Association of America",
+ "triggers": [
+ "maa"
+ ],
+ "regions": {
+ "default": "https://www.maa.org/search/node?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/math/img/favicon.ico?v=45993e464f86",
+ "name": "Mathematics - Stack Exchange",
+ "triggers": [
+ "mathse"
+ ],
+ "regions": {
+ "default": "http://math.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.mathjax.org/favicon.ico",
+ "name": "MathJax",
+ "triggers": [
+ "mathjax"
+ ],
+ "regions": {
+ "default": "https://docs.mathjax.org/en/latest/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/mathoverflow/img/favicon.ico?v=0671e3df3c98",
+ "name": "MathOverflow",
+ "triggers": [
+ "mo",
+ "mathoverflow"
+ ],
+ "regions": {
+ "default": "https://mathoverflow.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mathworld.wolfram.com/favicon.ico",
+ "name": "mathworld",
+ "triggers": [
+ "math",
+ "mathworld"
+ ],
+ "regions": {
+ "default": "http://mathworld.wolfram.com/search/?query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://uk.mathworks.com/etc/designs/mathworks/img/favicon.ico",
+ "name": "Matlab",
+ "triggers": [
+ "matlab"
+ ],
+ "regions": {
+ "default": "http://uk.mathworks.com/help/search.html?qdoc={{{term}}}&submitsearch=Search"
+ }
+ },
+ {
+ "favicon": "https://es.mathworks.com/etc/designs/mathworks/img/favicon.ico",
+ "name": "MATLAB Answers",
+ "triggers": [
+ "matlabans"
+ ],
+ "regions": {
+ "default": "https://es.mathworks.com/matlabcentral/answers/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mathworks.com/etc/designs/mathworks/img/favicon.ico",
+ "name": "Matlab File Exchange",
+ "triggers": [
+ "matlabfx"
+ ],
+ "regions": {
+ "default": "https://www.mathworks.com/matlabcentral/fileexchange/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://matplotlib.sourceforge.net/_static/favicon.ico",
+ "name": "matplotlib",
+ "triggers": [
+ "mpl",
+ "matplotlib"
+ ],
+ "regions": {
+ "default": "http://matplotlib.sourceforge.net/search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.matweb.com/favicon.ico",
+ "name": "MatWeb",
+ "triggers": [
+ "matweb"
+ ],
+ "regions": {
+ "default": "http://www.matweb.com/search/QuickText.aspx?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.maven.org/favicon.ico",
+ "name": "Maven Central",
+ "triggers": [
+ "mvn",
+ "maven"
+ ],
+ "regions": {
+ "default": "https://search.maven.org/#search|ga|1|{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mavin.io/favicon.ico",
+ "name": "Mavin",
+ "triggers": [
+ "mavin"
+ ],
+ "regions": {
+ "default": "https://mavin.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.maxgyan.com/favicon.ico",
+ "name": "Max Gyan Hindi to English",
+ "triggers": [
+ "hintoeng"
+ ],
+ "regions": {
+ "default": "http://www.maxgyan.com/search/hindi-to-english/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mpg.de/assets/touch-icon-32x32-a66937bcebc4e8894ebff1f41a366c7c7220fd97a38869ee0f2db65a9f59b6c1.png",
+ "name": "Max Planck Gesellschaft",
+ "triggers": [
+ "mpg",
+ "mpgde"
+ ],
+ "regions": {
+ "default": "https://www.mpg.de/en/search?utf8=%E2%9C%93&searchfield={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pubman.mpdl.mpg.de/pubman/faces/javax.faces.resources/pubman_favicon_32_32.png",
+ "name": "Max Planck Publication Repository",
+ "triggers": [
+ "mpgpure"
+ ],
+ "regions": {
+ "default": "http://pubman.mpdl.mpg.de/pubman/faces/SearchResultListPage.jsp?cql=escidoc.objecttype%3D%22item%22+AND+escidoc.content-model.objid%3D%22escidoc%3Apersistent4%22+AND+%28%28escidoc.metadata%3D%22{{{term}}}%22%29+OR+%28%28escidoc.any-identifier%3D%22acceggc%22+OR+escidoc.property.latest-release.objid%3D%22acceggc%22%29%29+%29"
+ }
+ },
+ {
+ "favicon": "http://www.maxthon.cn/favicon.ico",
+ "name": "Maxthon 3 Extension",
+ "triggers": [
+ "maxthon"
+ ],
+ "regions": {
+ "default": "http://extension.maxthon.com/all/index.php?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://download.autodesk.com/favicon.ico",
+ "name": "Maya PyMel",
+ "triggers": [
+ "pymel"
+ ],
+ "regions": {
+ "default": "http://download.autodesk.com/global/docs/maya2014/en_us/PyMel/search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.mayoclinic.org/favicon.ico",
+ "name": "Mayo Clinic",
+ "triggers": [
+ "mayo"
+ ],
+ "regions": {
+ "default": "https://www.mayoclinic.org/search/search-results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ethanent.me/favicon.png",
+ "name": "MC Server Ping",
+ "triggers": [
+ "mcserver"
+ ],
+ "regions": {
+ "default": "http://megamc.net/srvrping.html?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mcgill.ca/favicon.ico",
+ "name": "McGill University",
+ "triggers": [
+ "mcgill"
+ ],
+ "regions": {
+ "default": "http://www.mcgill.ca/search/?query={{{term}}}&find=Search"
+ }
+ },
+ {
+ "favicon": "https://mcgill.worldcat.org/favicon.ico",
+ "name": "McGill University Library",
+ "triggers": [
+ "mcgilllib"
+ ],
+ "regions": {
+ "default": "https://mcgill.worldcat.org/search?q={{{term}}}&qt=owc_search&scope=2"
+ }
+ },
+ {
+ "favicon": "https://images1.mcmaster.com/mvA/gfx/favicon/192x192.png?ver=1513345308",
+ "name": "McMaster-Carr",
+ "triggers": [
+ "mcmaster"
+ ],
+ "regions": {
+ "default": "http://www.mcmaster.com/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images1.mcmaster.com/mvA/gfx/favicon/192x192.png?ver=1513345308",
+ "name": "McMaster-Carr",
+ "triggers": [
+ "mmc"
+ ],
+ "regions": {
+ "default": "http://www.mcmaster.com/#{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://md5.gromweb.com/favicon.ico",
+ "name": "MD5 reverse lookup",
+ "triggers": [
+ "md5"
+ ],
+ "regions": {
+ "default": "http://md5.gromweb.com/?md5={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mdbg.net/chindict/rsc/ico/favicon.ico",
+ "name": "MDBG",
+ "triggers": [
+ "mdbgt"
+ ],
+ "regions": {
+ "default": "http://www.mdbg.net/chindict/chindict.php?page=worddict&wdrst=1&wdqb={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mdbg.net/chinese/rsc/ico/favicon.ico",
+ "name": "MDBG Dictionary",
+ "triggers": [
+ "mdbg"
+ ],
+ "regions": {
+ "default": "https://www.mdbg.net/chinese/dictionary?page=worddict&wdrst=0&wdqb={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "MDN API",
+ "triggers": [
+ "mdnapi"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en-US/search?q={{{term}}}&topic=api"
+ }
+ },
+ {
+ "favicon": "https://www.mdt.co.uk/media/favicon/default/favicon.ico",
+ "name": "MDT",
+ "triggers": [
+ "mdt"
+ ],
+ "regions": {
+ "default": "http://www.mdt.co.uk/catalogsearch/result/?q={{{term}}}&t=general&order=most_viewed"
+ }
+ },
+ {
+ "favicon": "http://meatballwiki.org/favicon.ico",
+ "name": "MeatballWiki",
+ "triggers": [
+ "meatball"
+ ],
+ "regions": {
+ "default": "http://meatballwiki.org/wiki/?action=search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mecabricks.com/assets/images/favicon.png",
+ "name": "Mecabricks.com",
+ "triggers": [
+ "mecabricks"
+ ],
+ "regions": {
+ "default": "http://mecabricks.com/en/library/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mechanicalkeyboards.com/images/favicon.ico",
+ "name": "Mechanical Keyboards",
+ "triggers": [
+ "mk"
+ ],
+ "regions": {
+ "default": "http://mechanicalkeyboards.com/search.php?switch_id=ALL&size=ALL&keyword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.mercurial-scm.org/images/favicon.ico",
+ "name": "Mecurial",
+ "triggers": [
+ "hg"
+ ],
+ "regions": {
+ "default": "https://www.mercurial-scm.org/wiki/Mercurial?action=fullsearch&context=180&value={{{term}}}&titlesearch=Title"
+ }
+ },
+ {
+ "favicon": "http://www.medbullets.com/favicon.ico",
+ "name": "Medbullets",
+ "triggers": [
+ "medb"
+ ],
+ "regions": {
+ "default": "http://www.medbullets.com/search?cx=011011587714199370644:0fb95tj2wze&cof=FORID:9&ie=UTF-8&sa.x=10&sa.y=12&sa=Search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2nznub4x5d61ra4q12fyu67t-wpengine.netdna-ssl.com/wp-content/uploads/2015/07/favicon.png",
+ "name": "Medgadget",
+ "triggers": [
+ "medgadget"
+ ],
+ "regions": {
+ "default": "https://www.medgadget.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/mediabiasfactcheck.com/wp-content/uploads/2017/04/globeredo-01.png?fit=192,192&ssl=1",
+ "name": "Media Bias Fact Check",
+ "triggers": [
+ "mbfc"
+ ],
+ "regions": {
+ "default": "https://mediabiasfactcheck.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://media.info/i/st/favicon-16x16.png",
+ "name": "media.info",
+ "triggers": [
+ "mediainfo"
+ ],
+ "regions": {
+ "default": "http://media.info/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mediadico.com/favicon.ico",
+ "name": "Mediadico",
+ "triggers": [
+ "mediadico"
+ ],
+ "regions": {
+ "default": "http://mediadico.com/dictionnaire/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mediamarkt.nl/favicon-32x32.png",
+ "name": "MediaMarkt",
+ "triggers": [
+ "mediamarkt"
+ ],
+ "regions": {
+ "default": "http://www.mediamarkt.nl/nl/search.html?storeId=10259&langId=-11&searchProfile=onlineshop&channel=mmnlnl&searchParams=&path=&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mediamarkt.be/favicon-32x32.png",
+ "name": "MediaMarkt FR",
+ "triggers": [
+ "mediamarktfr"
+ ],
+ "regions": {
+ "default": "http://www.mediamarkt.be/fr/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mediamarkt.nl/favicon-32x32.png",
+ "name": "MediaMarkt Nederland",
+ "triggers": [
+ "mediamarktnl"
+ ],
+ "regions": {
+ "default": "http://www.mediamarkt.nl/nl/search.html?query={{{term}}}&searchProfile=onlineshop&channel=mmnlnl"
+ }
+ },
+ {
+ "favicon": "https://static.mediapart.fr/favicon/favicon.ico?v=2",
+ "name": "Mediapart",
+ "triggers": [
+ "mediapart"
+ ],
+ "regions": {
+ "default": "https://www.mediapart.fr/search?search_word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mediawiki.org/static/favicon/mediawiki.ico",
+ "name": "MediaWiki",
+ "triggers": [
+ "mediawiki"
+ ],
+ "regions": {
+ "default": "https://www.mediawiki.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn1.medicalnewstoday.com/favicon.ico",
+ "name": "Medical News Today",
+ "triggers": [
+ "mnt"
+ ],
+ "regions": {
+ "default": "http://www.medicalnewstoday.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.medicinanet.com.br/img/favicon.ico",
+ "name": "medicinanet",
+ "triggers": [
+ "mn"
+ ],
+ "regions": {
+ "default": "http://www.medicinanet.com.br/pesquisas/{{{term}}}.htm"
+ }
+ },
+ {
+ "favicon": "https://www.medienpaedagogik-praxis.de/wp-content/themes/medienpaedagogik_2013/images/favicon.ico",
+ "name": "Medienpädagogik Praxis-Blog",
+ "triggers": [
+ "mppb"
+ ],
+ "regions": {
+ "default": "https://www.medienpaedagogik-praxis.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.medimops.de/out/fatchip/img/favicon.ico",
+ "name": "Medimops",
+ "triggers": [
+ "medimops"
+ ],
+ "regions": {
+ "default": "http://www.medimops.de/produkte-C0/?fcIsSearch=1&searchparam={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.plazademayo.com/favicon.ico",
+ "name": "Medios y Opinión",
+ "triggers": [
+ "myo"
+ ],
+ "regions": {
+ "default": "http://www.plazademayo.com/mediosyopinion/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-static-1.medium.com/_/fp/icons/favicon-rebrand-medium.3Y6xpZ-0FSdWDnPM3hSBIA.ico",
+ "name": "Medium",
+ "triggers": [
+ "medium",
+ "med"
+ ],
+ "regions": {
+ "default": "https://medium.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vsearch.nlm.nih.gov/favicon.ico",
+ "name": "MedlinePlus",
+ "triggers": [
+ "medlineplus"
+ ],
+ "regions": {
+ "default": "http://vsearch.nlm.nih.gov/vivisimo/cgi-bin/query-meta?v%3Aproject=medlineplus&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mednar.com/favicon.ico",
+ "name": "Mednar",
+ "triggers": [
+ "mednar"
+ ],
+ "regions": {
+ "default": "http://www.mednar.com/mednar/result-list/fullRecord:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.medscape.com/favicon.ico",
+ "name": "Medscape",
+ "triggers": [
+ "medscape",
+ "emedicine"
+ ],
+ "regions": {
+ "default": "http://search.medscape.com/reference-search?newSearchHeader=1&queryText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.meetup.com/mu_static/en-US/b5c9ccb2eec82ad0436c3b768a1bc348.png",
+ "name": "Meetup",
+ "triggers": [
+ "meetup"
+ ],
+ "regions": {
+ "default": "https://www.meetup.com/find/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mega.nz/favicon.ico?v=3",
+ "name": "Mega",
+ "triggers": [
+ "mega"
+ ],
+ "regions": {
+ "default": "https://www.mega.nz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/megaman/images/6/64/Favicon.ico/revision/latest?cb=20060329160405",
+ "name": "Mega Man Knowledge Base",
+ "triggers": [
+ "megaman"
+ ],
+ "regions": {
+ "default": "http://megaman.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/megamitensei/images/6/64/Favicon.ico/revision/latest?cb=20120614025251",
+ "name": "Megami Tensei Wiki",
+ "triggers": [
+ "megatenw"
+ ],
+ "regions": {
+ "default": "http://megamitensei.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/megamitensei/images/6/64/Favicon.ico/revision/latest?cb=20120614025251",
+ "name": "Megami Tensei Wikia",
+ "triggers": [
+ "megamitensei"
+ ],
+ "regions": {
+ "default": "http://megamitensei.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://megamozg.ru/images/favicon-16x16.png",
+ "name": "MegaMozg.ru",
+ "triggers": [
+ "mosk"
+ ],
+ "regions": {
+ "default": "https://megamozg.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.meijer.com/favicon.ico",
+ "name": "Meijer",
+ "triggers": [
+ "meijer"
+ ],
+ "regions": {
+ "default": "http://www.meijer.com/catalog/search_command.cmd?keyword={{{term}}}&tierId="
+ }
+ },
+ {
+ "favicon": "http://www.pcspinnt.de/favicon.ico",
+ "name": "Mein PC spinnt!",
+ "triggers": [
+ "pcspinnt"
+ ],
+ "regions": {
+ "default": "http://www.pcspinnt.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mein-hunde-platz.de/favicon.ico",
+ "name": "Mein-Hunde-Platz",
+ "triggers": [
+ "mein-hunde-platz"
+ ],
+ "regions": {
+ "default": "http://www.mein-hunde-platz.de/suche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mein-katzen-paradies.de/favicon.ico",
+ "name": "Mein-Katzen-Paradies",
+ "triggers": [
+ "mein-katzen-paradies"
+ ],
+ "regions": {
+ "default": "http://www.mein-katzen-paradies.de/suche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mejortorrent.com/favicon.ico",
+ "name": "Mejor Torrent",
+ "triggers": [
+ "mejoto",
+ "mejortorrent"
+ ],
+ "regions": {
+ "default": "http://www.mejortorrent.com/secciones.php?sec=buscador&valor={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.meligrana.com/favicon.ico",
+ "name": "meligrana.com",
+ "triggers": [
+ "meligrana"
+ ],
+ "regions": {
+ "default": "https://www.meligrana.com/es/alojamiento-turismo/buscar-alojamiento.asp?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://melpa.milkbox.net/favicon.ico",
+ "name": "MELPA",
+ "triggers": [
+ "melpa"
+ ],
+ "regions": {
+ "default": "http://melpa.milkbox.net/#/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://melvyl.worldcat.org/favicon.ico",
+ "name": "Melvyl Catalog (University of California Libraries)",
+ "triggers": [
+ "melvyl"
+ ],
+ "regions": {
+ "default": "https://melvyl.worldcat.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.memidex.com/favicon.ico",
+ "name": "Memidex",
+ "triggers": [
+ "memidex"
+ ],
+ "regions": {
+ "default": "http://www.memidex.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/memoryalpha/images/6/64/Favicon.ico/revision/latest?cb=20080612103849&path-prefix=en",
+ "name": "Memory Alpha",
+ "triggers": [
+ "startrek"
+ ],
+ "regions": {
+ "default": "http://memory-alpha.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&resultsLang=en"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/memoryalpha/images/6/64/Favicon.ico/revision/latest?cb=20080612103849&path-prefix=en",
+ "name": "Memory Alpha",
+ "triggers": [
+ "malpha"
+ ],
+ "regions": {
+ "default": "http://memory-alpha.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/memoryalpha/images/6/64/Favicon.ico/revision/latest?cb=20080612103849&path-prefix=en",
+ "name": "Memory Alpha",
+ "triggers": [
+ "memoryalpha"
+ ],
+ "regions": {
+ "default": "http://en.memory-alpha.org/wiki/Special:Search?search={{{term}}}&fulltext=Search&resultsLang=en"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/memoryalpha/images/6/64/Favicon.ico/revision/latest?cb=20080612103849&path-prefix=en",
+ "name": "Memory Alpha",
+ "triggers": [
+ "ma"
+ ],
+ "regions": {
+ "default": "http://en.memory-alpha.org/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/memoryalpha/images/6/64/Favicon.ico/revision/latest?cb=20080612103849&path-prefix=en",
+ "name": "Memory Alpha",
+ "triggers": [
+ "mema"
+ ],
+ "regions": {
+ "default": "http://en.memory-alpha.org/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns4=1#"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/startrek/images/6/64/Favicon.ico/revision/latest?cb=20060615215720",
+ "name": "Memory Beta",
+ "triggers": [
+ "memorybeta"
+ ],
+ "regions": {
+ "default": "http://memory-beta.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.memoryexpress.com/favicon.ico",
+ "name": "Memory Express",
+ "triggers": [
+ "memoryexpress",
+ "memx"
+ ],
+ "regions": {
+ "default": "http://www.memoryexpress.com/Search/Products?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.memrise.com/img/new_favicon.ico",
+ "name": "Memrise",
+ "triggers": [
+ "memrise"
+ ],
+ "regions": {
+ "default": "http://www.memrise.com/courses/english/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.menards.com/favicon.ico",
+ "name": "Menards",
+ "triggers": [
+ "menards"
+ ],
+ "regions": {
+ "default": "https://www.menards.com/main/search.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mendeley.com/themes/custom/mendeleycms/images/favicons/favicon-16x16.png",
+ "name": "Mendeley",
+ "triggers": [
+ "mendeley"
+ ],
+ "regions": {
+ "default": "https://www.mendeley.com/research-papers/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mennlex.de/lib/tpl/newday/images/favicon.ico",
+ "name": "Mennonitisches Lexikon",
+ "triggers": [
+ "mennlex"
+ ],
+ "regions": {
+ "default": "http://www.mennlex.de/doku.php?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpla"
+ ],
+ "regions": {
+ "default": "http://losangeles.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpbo"
+ ],
+ "regions": {
+ "default": "http://boston.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpfl"
+ ],
+ "regions": {
+ "default": "http://southflorida.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpny",
+ "mp",
+ "menupages"
+ ],
+ "regions": {
+ "default": "http://www.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpph"
+ ],
+ "regions": {
+ "default": "http://philadelphia.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpch"
+ ],
+ "regions": {
+ "default": "http://chicago.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpsf"
+ ],
+ "regions": {
+ "default": "http://sanfrancisco.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "http://static.menupages.com/images/favicon.ico",
+ "name": "MenuPages",
+ "triggers": [
+ "mpdc"
+ ],
+ "regions": {
+ "default": "http://washingtondc.menupages.com/restaurants/text/{{{term}}}/all-areas/all-neighborhoods/all-cuisines/"
+ }
+ },
+ {
+ "favicon": "https://mnmstatic.net/v_144/favicon.ico?v=E6bENepwgd",
+ "name": "Menéame",
+ "triggers": [
+ "meneame"
+ ],
+ "regions": {
+ "default": "http://www.meneame.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre",
+ "triggers": [
+ "mluy"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.uy/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Argentina",
+ "triggers": [
+ "mlar"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.ar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Chile",
+ "triggers": [
+ "mlcl"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.cl/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Colombia",
+ "triggers": [
+ "mlco"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.co/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Costa Rica",
+ "triggers": [
+ "mlcr"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.co.cr/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Dominicana",
+ "triggers": [
+ "mldo"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.do/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Ecuador",
+ "triggers": [
+ "mlec"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.ec/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Panama",
+ "triggers": [
+ "mlpa"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.pa/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Peru",
+ "triggers": [
+ "mlpe"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.pe/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Libre Venezuela",
+ "triggers": [
+ "mlve"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.ve/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Livre",
+ "triggers": [
+ "mlivre"
+ ],
+ "regions": {
+ "default": "http://lista.mercadolivre.com.br/{{{term}}}#D[A:lhbfjekjbaek]"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Livre",
+ "triggers": [
+ "mercadolivre"
+ ],
+ "regions": {
+ "default": "http://lista.mercadolivre.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercado Livre Brasil",
+ "triggers": [
+ "mlbr"
+ ],
+ "regions": {
+ "default": "http://lista.mercadolivre.com.br/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "MercadoLibre",
+ "triggers": [
+ "mercadolibrear"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.ar/{{{term}}}#D[A:fiihmilhdbeaa]"
+ }
+ },
+ {
+ "favicon": "//static.mlstatic.com/org-img/chico/img/favicon.ico?new",
+ "name": "MercadoLibre",
+ "triggers": [
+ "mercadolibre"
+ ],
+ "regions": {
+ "default": "http://mercadolibre.com/?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "MercadoLibre Colombia",
+ "triggers": [
+ "mlibreco"
+ ],
+ "regions": {
+ "default": "https://listado.mercadolibre.com.co/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "MercadoLibre Mexico",
+ "triggers": [
+ "mlmx"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.com.mx/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/ui/navigation/4.0.0/mercadolibre/favicon.ico",
+ "name": "MercadoLibre Venezuela",
+ "triggers": [
+ "mercadolibre.com.ve"
+ ],
+ "regions": {
+ "default": "http://www.mercadolibre.com.ve/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://http2.mlstatic.com/resources/frontend/commons-frontend/ui-dist/images/components/navigation/ML/favicon.ed1a7e19.ico",
+ "name": "Mercadolibre.cl",
+ "triggers": [
+ "mercadolibrecl"
+ ],
+ "regions": {
+ "default": "http://listado.mercadolibre.cl/{{{term}}}#D[A:decdafbb]"
+ }
+ },
+ {
+ "favicon": "https://www.mercurynews.com/wp-content/uploads/2016/10/32x32-mercury-news-white.png?w=32",
+ "name": "Mercury News",
+ "triggers": [
+ "mercurynews"
+ ],
+ "regions": {
+ "default": "http://www.mercurynews.com/circare/html/sca_template.jsp?runSearch=true&query={{{term}}}&searchButton.x=0&searchButton.y=0&searchButton=Search&view=entiresitesppublished"
+ }
+ },
+ {
+ "favicon": "http://meritbadge.org/favicon.ico",
+ "name": "MeritBadgeDotOrg",
+ "triggers": [
+ "merit"
+ ],
+ "regions": {
+ "default": "http://meritbadge.org/wiki/index.php/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://meritbadge.org/favicon.ico",
+ "name": "MeritBadgeDotOrg",
+ "triggers": [
+ "meritbadge"
+ ],
+ "regions": {
+ "default": "http://meritbadge.org/wiki/index.php/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "//static.merlin.pl/favicon.ico?v12",
+ "name": "Merlin.pl",
+ "triggers": [
+ "merlin"
+ ],
+ "regions": {
+ "default": "http://merlin.pl/browse/search.html?offer=O&phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.merlot.org/merlot/images/merlot_column.png",
+ "name": "Merlot.org",
+ "triggers": [
+ "mer"
+ ],
+ "regions": {
+ "default": "http://www.merlot.org/merlot/unifieds.htm;keywords={{{term}}}&searchtype=unified&searchtype=unified"
+ }
+ },
+ {
+ "favicon": "https://www.merriam-webster.com/favicon.png",
+ "name": "Merriam-Webster Pronunciation",
+ "triggers": [
+ "say"
+ ],
+ "regions": {
+ "default": "https://www.merriam-webster.com/dictionary/{{{term}}}?pronunciation"
+ }
+ },
+ {
+ "favicon": "http://unabridged.merriam-webster.com/skins/default/_assets/ico/favicon.ico",
+ "name": "Merriam-Webster Unabridged",
+ "triggers": [
+ "mwunabridged"
+ ],
+ "regions": {
+ "default": "http://unabridged.merriam-webster.com/unabridged/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wordcentral.com/favicon.ico",
+ "name": "Merriam-Webster's Word Central",
+ "triggers": [
+ "wordcentral"
+ ],
+ "regions": {
+ "default": "http://wordcentral.com/cgi-bin/student?book=Student&va={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.metoffice.gov.uk/favicon.ico",
+ "name": "Met Office",
+ "triggers": [
+ "metoff",
+ "metoffice"
+ ],
+ "regions": {
+ "default": "https://www.metoffice.gov.uk/public/weather/location-search/sitename?searchLocation={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/metacrawlersemelevatedmedia/1.1.1.12/favicon.ico",
+ "name": "Meta Crawler",
+ "triggers": [
+ "mcr"
+ ],
+ "regions": {
+ "default": "http://www.metacrawler.com/search/web?fcoid=417&fcop=topnav&fpid=2&om_nextpage=True&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/codegolfmeta/img/favicon.ico?v=52c88070da65",
+ "name": "Meta Programming Problems & Code Golf",
+ "triggers": [
+ "metappcg"
+ ],
+ "regions": {
+ "default": "https://codegolf.meta.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://meta.stackexchange.com/content/Sites/stackexchangemeta/img/favicon.ico?v=790c5f0d145d",
+ "name": "Meta Stack Exchange",
+ "triggers": [
+ "semeta"
+ ],
+ "regions": {
+ "default": "https://meta.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://meta.stackexchange.com/content/Sites/stackexchangemeta/img/favicon.ico?v=790c5f0d145d",
+ "name": "Meta Stack Exchange",
+ "triggers": [
+ "metasx"
+ ],
+ "regions": {
+ "default": "http://meta.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://meta.stackoverflow.com/content/Sites/stackoverflowmeta/img/favicon.ico?v=59edb4c8e3e3",
+ "name": "Meta Stack Overflow",
+ "triggers": [
+ "metaso"
+ ],
+ "regions": {
+ "default": "https://meta.stackoverflow.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.mcstatic.com/static/6615/frontend/images/favicons/favicon-16x16.png",
+ "name": "Metacafe",
+ "triggers": [
+ "metacafe"
+ ],
+ "regions": {
+ "default": "http://www.metacafe.com/videos_about/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://metacpan.org/static/icons/favicon.ico",
+ "name": "MetaCPAN",
+ "triggers": [
+ "cpan",
+ "mcpan",
+ "metacpan",
+ "cpanm"
+ ],
+ "regions": {
+ "default": "https://metacpan.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://metacpan.org/static/icons/favicon.ico",
+ "name": "MetaCPAN",
+ "triggers": [
+ "cpan1"
+ ],
+ "regions": {
+ "default": "https://metacpan.org/search?q={{{term}}}&lucky=1"
+ }
+ },
+ {
+ "favicon": "http://cdn3.inspsearchapi.com/metacrawlersemelevatedmedia/1.1.1.12/favicon.ico",
+ "name": "MetaCrawler",
+ "triggers": [
+ "metacrawler"
+ ],
+ "regions": {
+ "default": "http://www.metacrawler.com/search/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.metacritic.com/favicon.ico",
+ "name": "Metacritic",
+ "triggers": [
+ "mc",
+ "metacritic"
+ ],
+ "regions": {
+ "default": "http://www.metacritic.com/search/all/{{{term}}}/results"
+ }
+ },
+ {
+ "favicon": "//d3s0w6fek99l5b.cloudfront.net/static/icon128.5159aa57f610.png",
+ "name": "Metaculus",
+ "triggers": [
+ "metaculus"
+ ],
+ "regions": {
+ "default": "https://www.metaculus.com/questions/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d217i264rvtnq0.cloudfront.net/styles/mefi/favicon030514b.ico",
+ "name": "MetaFilter",
+ "triggers": [
+ "metafilter",
+ "mefi"
+ ],
+ "regions": {
+ "default": "http://www.metafilter.com/contribute/search.mefi?site=mefi&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.metager.de/favicon.ico",
+ "name": "Metager",
+ "triggers": [
+ "metager"
+ ],
+ "regions": {
+ "default": "https://www.metager.de/meta/meta.ger3?eingabe={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://metager.de/favicon.ico",
+ "name": "MetaGer English",
+ "triggers": [
+ "metageren"
+ ],
+ "regions": {
+ "default": "https://metager.de/meta/cgi-bin/meta.ger1?ui=en&lang=en&wikiboost=on&QuickTips=off&langfilter=yes&eingabe={{{term}}}&mm=and&time=1&exalead=on&fastbot=on&yacy=on&nebel=on&atsearch=on&acoon=on&overture=on&base=on&yandex=on&onenewspage=on&dmozint=on"
+ }
+ },
+ {
+ "favicon": "http://www.metal-archives.com/favicon.ico",
+ "name": "Metal Archives",
+ "triggers": [
+ "maalbum"
+ ],
+ "regions": {
+ "default": "http://www.metal-archives.com/search?searchString={{{term}}}&type=album_title"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/metalgear/images/6/64/Favicon.ico/revision/latest?cb=20080810183038",
+ "name": "Metal Gear Wiki",
+ "triggers": [
+ "mgw"
+ ],
+ "regions": {
+ "default": "http://metalgear.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.metalstorm.net/favicon.ico",
+ "name": "Metal Storm",
+ "triggers": [
+ "metalstorm"
+ ],
+ "regions": {
+ "default": "http://www.metalstorm.net/home/search.php?search_where=band&search_what={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://metalab.at/favicon.ico",
+ "name": "Metalab Mediawiki",
+ "triggers": [
+ "metalab"
+ ],
+ "regions": {
+ "default": "https://metalab.at/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://es.metapedia.org/favicon.ico",
+ "name": "Metapedia",
+ "triggers": [
+ "mtp"
+ ],
+ "regions": {
+ "default": "http://es.metapedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.meteli.net/static/SNqEYbqxgn2q4tG4YwDsShnLwSNavIY6YqXYf7km51k.ico",
+ "name": "Meteli",
+ "triggers": [
+ "meteli"
+ ],
+ "regions": {
+ "default": "http://www.meteli.net/tapahtumahaku?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.meteoblue.com/website/images/logo/launcher-icon-4x.png",
+ "name": "meteoblue",
+ "triggers": [
+ "meteoblue"
+ ],
+ "regions": {
+ "default": "https://www.meteoblue.com/en/weather/forecast/14-days/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.meteoblue.com/website/images/logo/launcher-icon-4x.png",
+ "name": "meteoblue",
+ "triggers": [
+ "mblue"
+ ],
+ "regions": {
+ "default": "https://www.meteoblue.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.meteociel.fr/favicon.ico",
+ "name": "Meteociel",
+ "triggers": [
+ "meteociel"
+ ],
+ "regions": {
+ "default": "https://www.meteociel.fr/prevville.php?action=getville&ville={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.meteor.com/images/favicon-meteor.png",
+ "name": "Meteor Docs",
+ "triggers": [
+ "meteorjs"
+ ],
+ "regions": {
+ "default": "http://docs.meteor.com/#/full/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.meteovista.com/3.7.3.2/Static/Images/favicon-new.ico",
+ "name": "meteovista",
+ "triggers": [
+ "wmv"
+ ],
+ "regions": {
+ "default": "http://www.meteovista.com/Go/Search/SearchResults?searchCriteria={{{term}}}&pageIndex=0&searchAction=WeatherInformation"
+ }
+ },
+ {
+ "favicon": "http://meteox.de/favicon.ico",
+ "name": "Meteox",
+ "triggers": [
+ "met"
+ ],
+ "regions": {
+ "default": "http://meteox.de/search.aspx?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.metrolyrics.com/favicon.ico",
+ "name": "Metro Lyrics",
+ "triggers": [
+ "metrolyrics"
+ ],
+ "regions": {
+ "default": "http://www.metrolyrics.com/search.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.wikimg.net/en/metroidwiki/favicon.ico",
+ "name": "Metroid Wiki",
+ "triggers": [
+ "metroidwiki"
+ ],
+ "regions": {
+ "default": "https://www.metroidwiki.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://metromatinee.com/wp-content/uploads/2017/10/favicon1.png",
+ "name": "MetroMatinee",
+ "triggers": [
+ "mme"
+ ],
+ "regions": {
+ "default": "https://metromatinee.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.allthingshair.com/pt-br/wp-content/themes/ath-2017/assets/images/favicon.ico",
+ "name": "MeuCrespo",
+ "triggers": [
+ "meucrespo"
+ ],
+ "regions": {
+ "default": "http://meucrespo.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://woerterbuchnetz.de/favicon.ico",
+ "name": "Meyers Großes Konversationslexikon",
+ "triggers": [
+ "meyers"
+ ],
+ "regions": {
+ "default": "http://woerterbuchnetz.de/Meyers/?lemme={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.onlinemheparts.com/favicon.ico",
+ "name": "MHE Conveyor Parts",
+ "triggers": [
+ "mhe"
+ ],
+ "regions": {
+ "default": "http://www.onlinemheparts.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.miabuelavende.com/wp-content/uploads/2016/01/favicon_mi_abuela_vende_144x144.png",
+ "name": "Mi abuela vende",
+ "triggers": [
+ "abuela"
+ ],
+ "regions": {
+ "default": "http://miabuelavende.com/?s={{{term}}}&post_type=product"
+ }
+ },
+ {
+ "favicon": "http://mi-soft.nl/images/favicon.ico",
+ "name": "Mi-Soft",
+ "triggers": [
+ "mi-soft"
+ ],
+ "regions": {
+ "default": "http://mi-soft.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.mibbit.com/favicon.ico",
+ "name": "Mibbit",
+ "triggers": [
+ "mib"
+ ],
+ "regions": {
+ "default": "https://search.mibbit.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://michaelis.uol.com.br/images/favicon/favicon-16x16.png",
+ "name": "Michaelis - Português - Inglês",
+ "triggers": [
+ "michaelis"
+ ],
+ "regions": {
+ "default": "http://michaelis.uol.com.br/busca?r=1&f=0&t=1&palavra={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://michaelis.uol.com.br/images/favicon/favicon-16x16.png",
+ "name": "Michaelis English - Portuguese",
+ "triggers": [
+ "michaelispt"
+ ],
+ "regions": {
+ "default": "http://michaelis.uol.com.br/busca?r=1&f=1&t=0&palavra={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.michaels.com/static/on/demandware.static/Sites-MichaelsUS-Site/-/default/dwa3609414/images/favicon.png",
+ "name": "Michaels Stores",
+ "triggers": [
+ "michaels"
+ ],
+ "regions": {
+ "default": "http://www.michaels.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://klnavarro.free.fr/spip/spip/squelettes/favicon.gif",
+ "name": "MicKey's Land",
+ "triggers": [
+ "kln"
+ ],
+ "regions": {
+ "default": "http://klnavarro.free.fr/spip/spip.php?page=recherche&recherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.microcenter.com/favicon.ico",
+ "name": "Micro Center",
+ "triggers": [
+ "microcenter"
+ ],
+ "regions": {
+ "default": "http://www.microcenter.com/search/search_results.phtml?Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.microsoft.com/favicon.ico",
+ "name": "Microsoft",
+ "triggers": [
+ "ms",
+ "microsoft"
+ ],
+ "regions": {
+ "default": "http://search.microsoft.com/results.aspx?mkt=en-US&form=MSHOME&setlang=en-US&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.microsoft.com/favicon.ico",
+ "name": "Microsoft .Net API",
+ "triggers": [
+ "ms.net"
+ ],
+ "regions": {
+ "default": "https://docs.microsoft.com/en-us/dotnet/api/?view=netframework-4.7&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://academic.research.microsoft.com/App/build/icons-75bfc40a2c7542928d63dac3594141ab/favicon.ico",
+ "name": "Microsoft Academic Search",
+ "triggers": [
+ "msacademic"
+ ],
+ "regions": {
+ "default": "http://academic.research.microsoft.com/Search?query={{{term}}}&s=0"
+ }
+ },
+ {
+ "favicon": "https://office.microsoft.com/favicon.ico",
+ "name": "Microsoft Clipart",
+ "triggers": [
+ "clipart"
+ ],
+ "regions": {
+ "default": "https://office.microsoft.com/en-us/clipart/results.aspx?qu={{{term}}}&sc=20"
+ }
+ },
+ {
+ "favicon": "https://docs.microsoft.com/favicon.ico",
+ "name": "Microsoft Docs",
+ "triggers": [
+ "msdocs",
+ "md"
+ ],
+ "regions": {
+ "default": "https://docs.microsoft.com/en-us/search/index?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Microsoft Groove",
+ "triggers": [
+ "groove"
+ ],
+ "regions": {
+ "default": "https://music.microsoft.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Microsoft Knowledge Base",
+ "triggers": [
+ "mskb"
+ ],
+ "regions": {
+ "default": "https://support.microsoft.com/en-us/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.microsoft.com/favicon.ico",
+ "name": "Microsoft Language Portal",
+ "triggers": [
+ "lanpor"
+ ],
+ "regions": {
+ "default": "https://www.microsoft.com/Language/en-US/Search.aspx?sString={{{term}}}&langID=pl-pl"
+ }
+ },
+ {
+ "favicon": "https://social.technet.microsoft.com/favicon.ico",
+ "name": "Microsoft TechNet",
+ "triggers": [
+ "technet"
+ ],
+ "regions": {
+ "default": "https://social.technet.microsoft.com/search/en-us/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://social.technet.microsoft.com/favicon.ico",
+ "name": "Microsoft TechNet Library",
+ "triggers": [
+ "technetlib"
+ ],
+ "regions": {
+ "default": "https://social.technet.microsoft.com/search/en-us/?query={{{term}}}#refinementChanges=85"
+ }
+ },
+ {
+ "favicon": "https://social.technet.microsoft.com/favicon.ico",
+ "name": "Microsoft TechNet SQL Server",
+ "triggers": [
+ "mssql"
+ ],
+ "regions": {
+ "default": "https://social.technet.microsoft.com/Search/en-US/sqlserver?query={{{term}}}&Refinement=30&ac=4"
+ }
+ },
+ {
+ "favicon": "https://www.microsofttranslator.com/sa/simg/bing_p_rr_teal_min.ico",
+ "name": "Microsoft Translator (for websites)",
+ "triggers": [
+ "translatesite"
+ ],
+ "regions": {
+ "default": "https://www.microsofttranslator.com/bv.aspx?from=&to=en&a={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.catalog.update.microsoft.com/favicon.ico",
+ "name": "Microsoft Update Catalog",
+ "triggers": [
+ "msupdate"
+ ],
+ "regions": {
+ "default": "https://www.catalog.update.microsoft.com/Search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Microsoft Windows",
+ "triggers": [
+ "win"
+ ],
+ "regions": {
+ "default": "http://windows.microsoft.com/en-US/windows/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bing.com/sa/simg/bing_p_rr_teal_min.ico",
+ "name": "Microsoft/Bing Translator",
+ "triggers": [
+ "bt"
+ ],
+ "regions": {
+ "default": "https://www.bing.com/translator?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.microsofttranslator.com/sa/simg/bing_p_rr_teal_min.ico",
+ "name": "Microsoft/Bing Translator URL",
+ "triggers": [
+ "mst",
+ "bturl"
+ ],
+ "regions": {
+ "default": "https://www.microsofttranslator.com/bv.aspx?a={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mightyape.co.nz/favicon-16x16.png",
+ "name": "Mighty Ape",
+ "triggers": [
+ "mightyape"
+ ],
+ "regions": {
+ "default": "http://www.mightyape.co.nz/search/?i=All&prev=&s={{{term}}}&SearchButton=Search"
+ }
+ },
+ {
+ "favicon": "https://cdn.migros.ch/ch.migros.shared-components/1/img/favicon/favicon.ico",
+ "name": "Migros (DE)",
+ "triggers": [
+ "migros_de"
+ ],
+ "regions": {
+ "default": "https://www.migros.ch/de/Suchergebnisse.html?queryStr={{{term}}}#pages"
+ }
+ },
+ {
+ "favicon": "https://cdn.migros.ch/ch.migros.shared-components/1/img/favicon/favicon.ico",
+ "name": "Migros (FR)",
+ "triggers": [
+ "migros_fr"
+ ],
+ "regions": {
+ "default": "https://www.migros.ch/fr/resultats-de-recherche.html?queryStr={{{term}}}#pages"
+ }
+ },
+ {
+ "favicon": "https://cdn.migros.ch/ch.migros.shared-components/1/img/favicon/favicon.ico",
+ "name": "Migros (IT)",
+ "triggers": [
+ "migros_it"
+ ],
+ "regions": {
+ "default": "https://www.migros.ch/it/risultati-di-ricerca.html?queryStr={{{term}}}#pages"
+ }
+ },
+ {
+ "favicon": "https://miiverse.nintendo.net/favicon.ico",
+ "name": "Miiverse",
+ "triggers": [
+ "miiverse"
+ ],
+ "regions": {
+ "default": "https://miiverse.nintendo.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://miiverse.nintendo.net/favicon.ico",
+ "name": "Miiverse Communities",
+ "triggers": [
+ "miigames"
+ ],
+ "regions": {
+ "default": "https://miiverse.nintendo.net/titles/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.mijnserie.nl/_styles/img/icons/nl/favicon.ico",
+ "name": "MijnSerie",
+ "triggers": [
+ "mijnserie"
+ ],
+ "regions": {
+ "default": "https://www.mijnserie.nl/zoeken/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mijnwoordenboek.nl/favicon.png",
+ "name": "Mijnwoordenboek",
+ "triggers": [
+ "mwb"
+ ],
+ "regions": {
+ "default": "http://www.mijnwoordenboek.nl/vertaal/NL/EN/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webflis.us//favicon.ico",
+ "name": "Military Part Lookup",
+ "triggers": [
+ "flis"
+ ],
+ "regions": {
+ "default": "http://www.webflis.us//webflis.aspx?All={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://millionshort.com/images/favicon.ico",
+ "name": "Million short",
+ "triggers": [
+ "millionshort"
+ ],
+ "regions": {
+ "default": "http://millionshort.com/search.php?q={{{term}}}&remove=1000k"
+ }
+ },
+ {
+ "favicon": "https://millionshort.com/images/favicon.ico",
+ "name": "millionshort.com",
+ "triggers": [
+ "mill"
+ ],
+ "regions": {
+ "default": "https://millionshort.com/search?keywords={{{term}}}&remove=1000000"
+ }
+ },
+ {
+ "favicon": "https://milog.co.il/favicon.ico",
+ "name": "Milog",
+ "triggers": [
+ "milog"
+ ],
+ "regions": {
+ "default": "http://milog.co.il/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mimeapplication.net/favicon.ico",
+ "name": "Mime Types Database",
+ "triggers": [
+ "mime"
+ ],
+ "regions": {
+ "default": "http://mimeapplication.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mimovrste.com/static/favicon-si10si.ico?rev=225",
+ "name": "Mimovrste",
+ "triggers": [
+ "mimovrste"
+ ],
+ "regions": {
+ "default": "https://www.mimovrste.com/iskanje?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mimvi.com/wp-content/uploads/2018/03/favicon-16x16.png",
+ "name": "Mimvi",
+ "triggers": [
+ "mimvi"
+ ],
+ "regions": {
+ "default": "http://www.mimvi.com/search/?q={{{term}}}&submit=Mimvi+Search"
+ }
+ },
+ {
+ "favicon": "http://www.mindat.org/fav/favicon-16x16.png",
+ "name": "Mindat",
+ "triggers": [
+ "mindat"
+ ],
+ "regions": {
+ "default": "http://www.mindat.org/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mindfactory.de/templates/mindfactory/images/squares/android-icon-192x192.png",
+ "name": "Mindfactory",
+ "triggers": [
+ "mfde"
+ ],
+ "regions": {
+ "default": "https://www.mindfactory.de/search_result.php?search_query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://cdn-assets.minds.com/front/dist/assets/logos/bulb-16x16.png",
+ "name": "Minds.com",
+ "triggers": [
+ "minds"
+ ],
+ "regions": {
+ "default": "https://www.minds.com/search;q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-minecraftforum.cursecdn.com/avatars/0/1/635356669593325566.png",
+ "name": "Minecraft Forum",
+ "triggers": [
+ "mcf"
+ ],
+ "regions": {
+ "default": "http://www.minecraftforum.net/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-minecraftforum.cursecdn.com/avatars/0/1/635356669593325566.png",
+ "name": "Minecraft Forums",
+ "triggers": [
+ "mineforum"
+ ],
+ "regions": {
+ "default": "http://www.minecraftforum.net/index.php?app=core&module=search&do=search&fromMainBar=1&search_term={{{term}}}&search_app=forums"
+ }
+ },
+ {
+ "favicon": "https://static.namemc.com/i/favicon-192.png",
+ "name": "Minecraft Name History",
+ "triggers": [
+ "mcname",
+ "nmc"
+ ],
+ "regions": {
+ "default": "https://namemc.com/s?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/minecraft-computer/images/6/64/Favicon.ico/revision/latest?cb=20140211225218",
+ "name": "Minecraft PC Wiki",
+ "triggers": [
+ "mcpc"
+ ],
+ "regions": {
+ "default": "http://minecraft-computer.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/minecraftpocketedition/images/6/64/Favicon.ico/revision/latest?cb=20170708074126",
+ "name": "Minecraft Pocket Edition Wiki",
+ "triggers": [
+ "mcpew"
+ ],
+ "regions": {
+ "default": "http://minecraftpocketedition.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://minecraft-seeds.net/favicon.ico",
+ "name": "Minecraft Seeds",
+ "triggers": [
+ "minecraftseeds"
+ ],
+ "regions": {
+ "default": "http://minecraft-seeds.net/seeds/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mcskinsearch.com/skin/favicon.ico",
+ "name": "Minecraft Skin Search",
+ "triggers": [
+ "mcskin"
+ ],
+ "regions": {
+ "default": "http://www.mcskinsearch.com/skin/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_gamepedia/6/64/Favicon.ico?version=ed57d32751506dd14279b7164eb8e848",
+ "name": "Minecraft Wiki",
+ "triggers": [
+ "mcwiki"
+ ],
+ "regions": {
+ "default": "https://minecraft.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_gamepedia/6/64/Favicon.ico?version=ed57d32751506dd14279b7164eb8e848",
+ "name": "Minecraft Wiki",
+ "triggers": [
+ "minecraftwiki"
+ ],
+ "regions": {
+ "default": "http://minecraft.gamepedia.com/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_gamepedia/6/64/Favicon.ico?version=ed57d32751506dd14279b7164eb8e848",
+ "name": "Minecraft Wiki",
+ "triggers": [
+ "minecratwiki",
+ "minecraft",
+ "mcw"
+ ],
+ "regions": {
+ "default": "http://minecraft.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_de_gamepedia/6/64/Favicon.ico?version=1bbb54630675203f5a5aeccb236457fc",
+ "name": "Minecraft Wiki (DE)",
+ "triggers": [
+ "minecraft-de"
+ ],
+ "regions": {
+ "default": "http://minecraft-de.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_de_gamepedia/6/64/Favicon.ico?version=1bbb54630675203f5a5aeccb236457fc",
+ "name": "Minecraft Wiki (deutsch)",
+ "triggers": [
+ "minecraftde"
+ ],
+ "regions": {
+ "default": "http://minecraft-de.gamepedia.com/index.php?search={{{term}}}&title=Spezial%3ASuche&go=Seite"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_de_gamepedia/6/64/Favicon.ico?version=1bbb54630675203f5a5aeccb236457fc",
+ "name": "Minecraft Wiki Deutsch",
+ "triggers": [
+ "mcwd"
+ ],
+ "regions": {
+ "default": "http://minecraft-de.gamepedia.com/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_fr_gamepedia/6/64/Favicon.ico?version=0a87920359af04d367d4dfbd1dcad701",
+ "name": "Minecraft Wiki FR",
+ "triggers": [
+ "mcwikifr"
+ ],
+ "regions": {
+ "default": "http://minecraft-fr.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/minecraft_ru_gamepedia/6/64/Favicon.ico?version=e853a6a5698918ebdf8dc3e8fadc2afc",
+ "name": "minecraft-ru.gamepedia.com",
+ "triggers": [
+ "minecraft-ru"
+ ],
+ "regions": {
+ "default": "https://minecraft-ru.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://minecraft.fr/favicon.ico",
+ "name": "Minecraft.fr",
+ "triggers": [
+ "mcfr"
+ ],
+ "regions": {
+ "default": "https://minecraft.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.minetest.net/styles/mt_v1/theme/images/favicon.ico",
+ "name": "Minetest Forums",
+ "triggers": [
+ "mtforums"
+ ],
+ "regions": {
+ "default": "https://forum.minetest.net/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://krock-works.16mb.com/favicon.ico",
+ "name": "Minetest Mod Search",
+ "triggers": [
+ "mtmod"
+ ],
+ "regions": {
+ "default": "http://krock-works.16mb.com/MTstuff/modSearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.miniclip.com/brand/favicons/icon-128x128.png",
+ "name": "Miniclip",
+ "triggers": [
+ "miniclip"
+ ],
+ "regions": {
+ "default": "https://www.miniclip.com/games/en/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.miniclip.com/brand/favicons/icon-128x128.png",
+ "name": "Miniclip",
+ "triggers": [
+ "minigame"
+ ],
+ "regions": {
+ "default": "https://www.miniclip.com/games/search/en/?query={{{term}}}#t-sd"
+ }
+ },
+ {
+ "favicon": "http://www.miniinthebox.com/favicon.ico",
+ "name": "MiniInTeBox",
+ "triggers": [
+ "miniinthebox"
+ ],
+ "regions": {
+ "default": "http://www.miniinthebox.com/index.php?main_page=advanced_search_result&inc_subcat=1&search_in_description=0&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://minimalsearch.com/favicon.ico",
+ "name": "minimalsearch",
+ "triggers": [
+ "minsearch"
+ ],
+ "regions": {
+ "default": "https://minimalsearch.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.minimins.com/favicon.ico",
+ "name": "MiniMins",
+ "triggers": [
+ "minimins"
+ ],
+ "regions": {
+ "default": "https://www.minimins.com/index.php?search/search&keywords={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.miningjobsearch.com/Public/site/mjs/images/favicon/favicon.ico",
+ "name": "Mining Job Search",
+ "triggers": [
+ "mjs"
+ ],
+ "regions": {
+ "default": "https://www.miningjobsearch.com/Mining-Jobs/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/miniology.com/wp-content/uploads/2015/05/miniology_icon-554fdd1dv1_site_icon.png?fit=192,192&ssl=1",
+ "name": "Miniology",
+ "triggers": [
+ "miniology"
+ ],
+ "regions": {
+ "default": "http://miniology.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://cerca.ministerosalute.it/favicon.ico",
+ "name": "Ministero della Salute",
+ "triggers": [
+ "minsal"
+ ],
+ "regions": {
+ "default": "http://cerca.ministerosalute.it/search?q={{{term}}}&client=defaultPORT_front-end&proxystylesheet=defaultPORT_front-end&site=default_collection&output=xml_no_dtd&filter=p"
+ }
+ },
+ {
+ "favicon": "http://find.minlib.net:80/iii/encore/local/images/favicon.ico",
+ "name": "Minuteman Library Network",
+ "triggers": [
+ "mmls"
+ ],
+ "regions": {
+ "default": "http://find.minlib.net/iii/encore/search?formids=target&lang=eng&suite=def&reservedids=lang%2Csuite&submitmode=&submitname=&target={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://find.minlib.net:443/iii/encore/local/images/favicon.ico",
+ "name": "Minuteman Library Network",
+ "triggers": [
+ "mln"
+ ],
+ "regions": {
+ "default": "https://find.minlib.net/iii/encore/search/C__S{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mirbsd.org/favicon.png",
+ "name": "MirBSD Acronyms Database",
+ "triggers": [
+ "wtf"
+ ],
+ "regions": {
+ "default": "https://www.mirbsd.org/wtf.cgi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mirbsd.org/favicon.png",
+ "name": "MirBSD Manpages",
+ "triggers": [
+ "mbsdman"
+ ],
+ "regions": {
+ "default": "https://www.mirbsd.org/man.cgi?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.mironet.cz/icons/touch-icon-57.png",
+ "name": "Mironet.cz",
+ "triggers": [
+ "mironet"
+ ],
+ "regions": {
+ "default": "https://www.mironet.cz/Productlist/showSearch?EXPS={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mises.org/sites/all/themes/bootsass/favicon.ico",
+ "name": "Mises Institute",
+ "triggers": [
+ "mises"
+ ],
+ "regions": {
+ "default": "https://mises.org/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gomiso.com/favicon.ico",
+ "name": "Miso",
+ "triggers": [
+ "miso"
+ ],
+ "regions": {
+ "default": "http://gomiso.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slot1-images.wikia.nocookie.net/__cb1530526546/common/skins/common/images/favicon.ico",
+ "name": "Mistborn Wiki",
+ "triggers": [
+ "mistborn"
+ ],
+ "regions": {
+ "default": "http://mistborn.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pgp.mit.edu/favicon.ico",
+ "name": "MIT PGP Public Key Server Lookup",
+ "triggers": [
+ "pgp"
+ ],
+ "regions": {
+ "default": "https://pgp.mit.edu/pks/lookup?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://student.mit.edu/favicon.ico",
+ "name": "MIT Subject Listing & Schedule",
+ "triggers": [
+ "mit"
+ ],
+ "regions": {
+ "default": "http://student.mit.edu/catalog/search.cgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://video.mit.edu/yts/img/favicon_144-vfliLAfaB.png",
+ "name": "MIT Video",
+ "triggers": [
+ "mitvid"
+ ],
+ "regions": {
+ "default": "http://video.mit.edu/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mixcloud.com/media/images/www/global/favicon-64.png",
+ "name": "MIxcloud",
+ "triggers": [
+ "mxc"
+ ],
+ "regions": {
+ "default": "https://www.mixcloud.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mixergy.com/wp-content/themes/mixergy-2015-v2/favicon.ico?20161117",
+ "name": "Mixergy",
+ "triggers": [
+ "mixergy"
+ ],
+ "regions": {
+ "default": "http://mixergy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn-mixesdb.com/static/images/MixesDB_Logo/MixesDB_Logo_2014_20_dont_crush.png",
+ "name": "MixesDB",
+ "triggers": [
+ "mixesdb"
+ ],
+ "regions": {
+ "default": "http://www.mixesdb.com/db/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://asset-cdn.chew.tv/v1/images/favicon/favicon.ico",
+ "name": "Mixify",
+ "triggers": [
+ "mixify"
+ ],
+ "regions": {
+ "default": "http://www.mixify.com/search/index?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://mixing.dj/wp-content/uploads/2017/08/favicon.jpg",
+ "name": "Mixing.DJ",
+ "triggers": [
+ "mdj"
+ ],
+ "regions": {
+ "default": "http://mixing.dj/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sammlungonline.mkg-hamburg.de/sites/all/themes/mkg_theme/assets/favicon/favicon-128.png",
+ "name": "MKG Sammlung Online",
+ "triggers": [
+ "mkg"
+ ],
+ "regions": {
+ "default": "https://sammlungonline.mkg-hamburg.de/de/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://a.espncdn.com/favicon.ico",
+ "name": "MLB Player Search",
+ "triggers": [
+ "mlbp"
+ ],
+ "regions": {
+ "default": "https://espn.go.com/mlb/players?=1&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//www.mlbstatic.com/mlb.com/builds/site-core/725f875cae43e229118cfe959b6e21ec6b7ea906_1530300402/images/favicon.png",
+ "name": "MLB.com",
+ "triggers": [
+ "mlb"
+ ],
+ "regions": {
+ "default": "http://mlb.mlb.com/searchGlobalSearchServlet?club=mlb&search_mode=1&searchtypeid=-1&page_number=1&query_text1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://league-mp7static.mlsdigital.net/favicon.ico?MbTlG7NMwJYaZIfo0mOlfyfDvF9eMba2",
+ "name": "MLS Soccer",
+ "triggers": [
+ "mls"
+ ],
+ "regions": {
+ "default": "http://www.mlssoccer.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mmlafleur.com/favicon.ico",
+ "name": "MM.LaFleur",
+ "triggers": [
+ "mmlafleur"
+ ],
+ "regions": {
+ "default": "https://mmlafleur.com/shop/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mmoga.de/favicon-mmoga.ico",
+ "name": "MMOGA",
+ "triggers": [
+ "mmoga"
+ ],
+ "regions": {
+ "default": "https://www.mmoga.de/advanced_search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mobafire.com/favicon.ico",
+ "name": "Mobafire",
+ "triggers": [
+ "mfg"
+ ],
+ "regions": {
+ "default": "http://www.mobafire.com/league-of-legends/{{{term}}}-guide"
+ }
+ },
+ {
+ "favicon": "http://www.mobafire.com/favicon.ico",
+ "name": "Mobafire Builds",
+ "triggers": [
+ "mobafirebuilds"
+ ],
+ "regions": {
+ "default": "http://www.mobafire.com/league-of-legends/browse/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://www.mobafire.com/favicon.ico",
+ "name": "MobaFire LOL Strategy",
+ "triggers": [
+ "mobafire"
+ ],
+ "regions": {
+ "default": "http://www.mobafire.com//?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.mobilegeeks.com/favicon.ico",
+ "name": "Mobile Geeks",
+ "triggers": [
+ "mobilegeeks"
+ ],
+ "regions": {
+ "default": "http://www.mobilegeeks.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.search.naver.com/favicon.ico",
+ "name": "Mobile Naver",
+ "triggers": [
+ "mnaver"
+ ],
+ "regions": {
+ "default": "https://m.search.naver.com/search.naver?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.mobilism.org/favicon.ico",
+ "name": "Mobilism",
+ "triggers": [
+ "mobilism"
+ ],
+ "regions": {
+ "default": "https://forum.mobilism.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.mobilism.org/favicon.ico",
+ "name": "Mobilism",
+ "triggers": [
+ "mobi"
+ ],
+ "regions": {
+ "default": "https://forum.mobilism.org/search.php?keywords={{{term}}}&sr=topics&sf=titleonly"
+ }
+ },
+ {
+ "favicon": "https://www.mobygames.com/favicon.ico",
+ "name": "Moby Games",
+ "triggers": [
+ "mobygames"
+ ],
+ "regions": {
+ "default": "https://www.mobygames.com/search/quick?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.mobygames.com/favicon.ico",
+ "name": "MobyGames",
+ "triggers": [
+ "moby"
+ ],
+ "regions": {
+ "default": "https://www.mobygames.com/search/quick?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://modarchive.org/favicon.ico?v=3",
+ "name": "Modarchive",
+ "triggers": [
+ "mod"
+ ],
+ "regions": {
+ "default": "http://modarchive.org/index.php?request=search&query={{{term}}}&submit=Find&search_type=filename_or_songtitle"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "MODAyDEPORTES.com",
+ "triggers": [
+ "moda"
+ ],
+ "regions": {
+ "default": "http://www.modaydeportes.com/buscar?controller=search&search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//marketing.modcloth.com/global/images/icons/modcloth/web-icons/favicon-196x196.png",
+ "name": "ModCloth",
+ "triggers": [
+ "modcloth"
+ ],
+ "regions": {
+ "default": "http://www.modcloth.com/shop/search?keyword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.moddb.com/favicon-192x192.png",
+ "name": "ModDB",
+ "triggers": [
+ "moddb"
+ ],
+ "regions": {
+ "default": "http://moddb.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://moddota.com/forums/uploads/favicon_8745f4101c391fa3.ico",
+ "name": "ModDota",
+ "triggers": [
+ "moddota"
+ ],
+ "regions": {
+ "default": "https://moddota.com/forums/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.modulargrid.net/favicon.png",
+ "name": "ModularGrid",
+ "triggers": [
+ "modulargrid"
+ ],
+ "regions": {
+ "default": "https://www.modulargrid.net/e/modules/browser?SearchName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.modulusfe.com/assets/images/ico/favicon.ico",
+ "name": "Modulus Financial Engineering",
+ "triggers": [
+ "modulusfe"
+ ],
+ "regions": {
+ "default": "http://www.modulusfe.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://rtfm.modx.com/assets/static/images/elements/favicon.ico?v=5",
+ "name": "MODX",
+ "triggers": [
+ "modx"
+ ],
+ "regions": {
+ "default": "http://rtfm.modx.com/dosearchsite.action?queryString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://78.media.tumblr.com/avatar_55f52acb1944_128.pnj",
+ "name": "MoeTube",
+ "triggers": [
+ "moe"
+ ],
+ "regions": {
+ "default": "http://www.moetube.net/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.mofakult.ch/media/favicon/default/favicon.ico",
+ "name": "Mofakult",
+ "triggers": [
+ "mofakult"
+ ],
+ "regions": {
+ "default": "https://www.mofakult.ch/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.mojang.com/s/qum0wu/79002/3d73a5f30bb614282b7f615e1ffeba20/_/favicon.ico",
+ "name": "Mojang Bug Tracker",
+ "triggers": [
+ "mojangbug"
+ ],
+ "regions": {
+ "default": "https://bugs.mojang.com/issues/?jql=text ~ '{{{term}}}'"
+ }
+ },
+ {
+ "favicon": "https://www.mojeek.com/favicon.ico",
+ "name": "mojeek",
+ "triggers": [
+ "mojeek"
+ ],
+ "regions": {
+ "default": "https://www.mojeek.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://moly.hu/favicon.ico",
+ "name": "Moly.hu",
+ "triggers": [
+ "moly"
+ ],
+ "regions": {
+ "default": "http://moly.hu/kereses?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mondadoristore.it/images/ico/favicon.ico",
+ "name": "Mondadori Store",
+ "triggers": [
+ "mondadoristore"
+ ],
+ "regions": {
+ "default": "http://www.mondadoristore.it/search/?tpr=10&g={{{term}}}&swe=N&search-input=active"
+ }
+ },
+ {
+ "favicon": "http://moneybadger.stocktwits.com/wp-content/uploads/fbrfg/favicon.ico",
+ "name": "Money Badger by StockTwits",
+ "triggers": [
+ "money"
+ ],
+ "regions": {
+ "default": "http://moneybadger.stocktwits.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.moneycontrol.com/favicon.ico",
+ "name": "MoneyControl",
+ "triggers": [
+ "moneycontrol"
+ ],
+ "regions": {
+ "default": "http://www.moneycontrol.com/stocks/cptmarket/compsearchnew.php?search_data=&cid=&mbsearch_str=&topsearch_type=1&search_str={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.moneyland.ch/themes/blank/public/own/img/favicon/favicon-16x16.png",
+ "name": "moneyland.ch",
+ "triggers": [
+ "moneyland"
+ ],
+ "regions": {
+ "default": "https://www.moneyland.ch/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.mongodb.org/favicon.ico",
+ "name": "MongoDB",
+ "triggers": [
+ "mongodb",
+ "mongo"
+ ],
+ "regions": {
+ "default": "http://docs.mongodb.org/manual/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://monome.org/community/search?Search=hgffefbh",
+ "name": "Monome Community",
+ "triggers": [
+ "monomec"
+ ],
+ "regions": {
+ "default": "http://monome.org/community/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://monome.org/docs/root?do=search&id=jfnenbfadacfag",
+ "name": "Monome Docs",
+ "triggers": [
+ "monomed"
+ ],
+ "regions": {
+ "default": "http://monome.org/docs/root?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.monoprice.com/favicon.ico",
+ "name": "Monoprice",
+ "triggers": [
+ "monoprice"
+ ],
+ "regions": {
+ "default": "https://www.monoprice.com/products/search.asp?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Monster Hunter Subreddit",
+ "triggers": [
+ "mhr"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/MonsterHunter/search?q={{{term}}}&restrict_sr=on"
+ }
+ },
+ {
+ "favicon": "https://securemedia.newjobs.com/favicon.ico",
+ "name": "Monster.com",
+ "triggers": [
+ "monster"
+ ],
+ "regions": {
+ "default": "http://jobsearch.monster.com/Search.aspx?re=130&cy=us&brd=1&JSNONREG=1&q={{{term}}}&rad=20&rad_units=miles"
+ }
+ },
+ {
+ "favicon": "https://www.monstercat.com/favicon.ico",
+ "name": "Monstercat",
+ "triggers": [
+ "monstercat",
+ "mcat"
+ ],
+ "regions": {
+ "default": "https://www.monstercat.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/monstercat/images/6/64/Favicon.ico/revision/latest?cb=20150823012857",
+ "name": "Monstercat Wiki",
+ "triggers": [
+ "mcatwiki"
+ ],
+ "regions": {
+ "default": "http://monstercat.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2lctzp6fxsd3d.cloudfront.net/favicon.ico",
+ "name": "Mooji TV",
+ "triggers": [
+ "mooji"
+ ],
+ "regions": {
+ "default": "http://mooji.tv/freemedia/?_fm_s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2q251whizk5ua.cloudfront.net/cdn/3.0.0.15585/responsivemasterpage/img/favicon.png",
+ "name": "MoonPig",
+ "triggers": [
+ "moonpig"
+ ],
+ "regions": {
+ "default": "https://moonpig.com/uk/Gallery/?sf1=ProductCategory&sv1=Cards&sf2=Keyword&sv2={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mootools.net/images/favicon/mootools.png",
+ "name": "mooTools Docs",
+ "triggers": [
+ "moo",
+ "mootools"
+ ],
+ "regions": {
+ "default": "http://mootools.net/search/?search=1&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.moralintelligence.net/favicon.gif",
+ "name": "MoralIntelligence.net",
+ "triggers": [
+ "moralintelligence"
+ ],
+ "regions": {
+ "default": "http://www.moralintelligence.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.moraneducation.com/favicon.ico",
+ "name": "Moran Education",
+ "triggers": [
+ "moraneducation"
+ ],
+ "regions": {
+ "default": "http://www.moraneducation.com/index.php?route=product/search&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://morbotron.com/favicon-228.png",
+ "name": "Morbotron",
+ "triggers": [
+ "morbo",
+ "morbotron"
+ ],
+ "regions": {
+ "default": "https://morbotron.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.morethan.tv/favicon.ico",
+ "name": "MoreThan.tv",
+ "triggers": [
+ "mtt"
+ ],
+ "regions": {
+ "default": "https://www.morethan.tv/torrents.php?searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.morfix.co.il/images/favicon.ico",
+ "name": "Morfix",
+ "triggers": [
+ "morfix",
+ "mfx"
+ ],
+ "regions": {
+ "default": "http://www.morfix.co.il/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://morguefile.com/favicon.ico",
+ "name": "Morguefile",
+ "triggers": [
+ "mf"
+ ],
+ "regions": {
+ "default": "https://morguefile.com/search/morguefile/1/{{{term}}}/pop"
+ }
+ },
+ {
+ "favicon": "http://static.moridb.com/favicon.ico",
+ "name": "MoriDB",
+ "triggers": [
+ "mdb"
+ ],
+ "regions": {
+ "default": "http://moridb.com/items/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.mormon.org/favicon.ico",
+ "name": "mormon.org",
+ "triggers": [
+ "mormon"
+ ],
+ "regions": {
+ "default": "https://www.mormon.org/searchresults#?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.morningstar.com/favicon.ico",
+ "name": "Morningstar",
+ "triggers": [
+ "msfq"
+ ],
+ "regions": {
+ "default": "http://www.morningstar.com/funds/xnas/{{{term}}}/quote.html"
+ }
+ },
+ {
+ "favicon": "http://etfs.morningstar.com/favicon.ico",
+ "name": "Morningstar (ETF quote)",
+ "triggers": [
+ "mseq"
+ ],
+ "regions": {
+ "default": "http://etfs.morningstar.com/quote?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://quote.morningstar.com/favicon.ico",
+ "name": "Morningstar Quote",
+ "triggers": [
+ "msq"
+ ],
+ "regions": {
+ "default": "http://quote.morningstar.com/stock/s.aspx?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.morningstar.com/favicon.ico",
+ "name": "Morningstar Search",
+ "triggers": [
+ "morningstar"
+ ],
+ "regions": {
+ "default": "http://search.morningstar.com/sitesearch/search.aspx?s=o&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Morrowind NexusMods",
+ "triggers": [
+ "mnm"
+ ],
+ "regions": {
+ "default": "https://morrowind.nexusmods.com/mods/searchresults/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mbglick.com/wp-content/uploads/glick-g-icon.png",
+ "name": "Moses B. Glick",
+ "triggers": [
+ "mbglick"
+ ],
+ "regions": {
+ "default": "http://www.mbglick.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0420/2505/t/82/assets/favicon.png?7250729458250572058",
+ "name": "Mostly Music",
+ "triggers": [
+ "mostlymusic"
+ ],
+ "regions": {
+ "default": "https://mostlymusic.com/?search={q={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "https://mothereff.in/favicon.ico",
+ "name": "Mothereff.in Byte Counter",
+ "triggers": [
+ "len"
+ ],
+ "regions": {
+ "default": "https://mothereff.in/byte-counter#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.motorelavoro.it/favicon.ico",
+ "name": "Motore Lavoro",
+ "triggers": [
+ "lavoro"
+ ],
+ "regions": {
+ "default": "http://www.motorelavoro.it/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.motorsport.com/favicon.ico",
+ "name": "Motorsport.com",
+ "triggers": [
+ "motorsport"
+ ],
+ "regions": {
+ "default": "http://www.motorsport.com/all/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.mec.ca/_uix/build-370/responsive/images/favicons/favicon.ico?v=GvJMgPgyYM",
+ "name": "Mountain Equipment Co-op",
+ "triggers": [
+ "mec"
+ ],
+ "regions": {
+ "default": "http://www.mec.ca/shop/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.apstatic.com/img/climb/favicons/favicon-180.png",
+ "name": "Mountain Project",
+ "triggers": [
+ "mtn"
+ ],
+ "regions": {
+ "default": "https://www.mountainproject.com/scripts/Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.apstatic.com/img/climb/favicons/favicon-180.png",
+ "name": "Mountain Project",
+ "triggers": [
+ "mproj"
+ ],
+ "regions": {
+ "default": "https://www.mountainproject.com/scripts/Search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mouser.com/favicon.ico",
+ "name": "Mouser Electronics",
+ "triggers": [
+ "mouser"
+ ],
+ "regions": {
+ "default": "http://www.mouser.com/Search/Refine.aspx?Keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.movieposterdb.com/favicon.ico",
+ "name": "Movie Poster Database",
+ "triggers": [
+ "movposdb",
+ "mpdb"
+ ],
+ "regions": {
+ "default": "http://www.movieposterdb.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.movieweb.com/assets/5afab34421ee1/sites/movieweb.com/icons/favicon.ico",
+ "name": "Movie Web",
+ "triggers": [
+ "movieweb"
+ ],
+ "regions": {
+ "default": "http://www.movieweb.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.movie-blog.org/favicon.ico",
+ "name": "movie-blog.org",
+ "triggers": [
+ "movieblog"
+ ],
+ "regions": {
+ "default": "http://www.movie-blog.org/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.movie-censorship.com/favicon.ico",
+ "name": "Movie-Censorship.com",
+ "triggers": [
+ "mcs"
+ ],
+ "regions": {
+ "default": "http://www.movie-censorship.com/list.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.movie4k.to/favicon.ico",
+ "name": "movie4k",
+ "triggers": [
+ "movie4k"
+ ],
+ "regions": {
+ "default": "https://www.movie4k.to/movies.php?list=search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://moviechat.org/favicons/favicon.ico",
+ "name": "MovieChat",
+ "triggers": [
+ "moviechat"
+ ],
+ "regions": {
+ "default": "https://moviechat.org/search?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://moviecovers.com/favicon.ico",
+ "name": "MovieCovers",
+ "triggers": [
+ "mcv"
+ ],
+ "regions": {
+ "default": "http://moviecovers.com/multicrit.html?titre={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.moviefone.com/favicon.ico",
+ "name": "Moviefone",
+ "triggers": [
+ "moviefone"
+ ],
+ "regions": {
+ "default": "https://www.moviefone.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.moviegr.am/favicon.ico",
+ "name": "moviegram",
+ "triggers": [
+ "mogr"
+ ],
+ "regions": {
+ "default": "http://www.moviegr.am/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.movieguide.org/favicon.ico",
+ "name": "MovieGuide",
+ "triggers": [
+ "movieguide"
+ ],
+ "regions": {
+ "default": "http://www.movieguide.org/?s={{{term}}}&submit.x=0&submit.y=0&submit=Search&key=hs"
+ }
+ },
+ {
+ "favicon": "https://www.movielike.fr/favicon.ico",
+ "name": "MovieLike",
+ "triggers": [
+ "movielike"
+ ],
+ "regions": {
+ "default": "https://www.movielike.fr/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://movieo.me/images/favicon_logo.png",
+ "name": "Movieo",
+ "triggers": [
+ "movieo"
+ ],
+ "regions": {
+ "default": "http://movieo.me/?grid=grid_movie&rate_by=imdb_top&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.moviepilot.de/favicon-16x16.png",
+ "name": "Moviepilot",
+ "triggers": [
+ "moviepilot"
+ ],
+ "regions": {
+ "default": "http://www.moviepilot.de/suche?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://m.moviepilot.de/favicon-16x16.png",
+ "name": "Moviepilot Mobile",
+ "triggers": [
+ "moviepilotm"
+ ],
+ "regions": {
+ "default": "http://m.moviepilot.de/suche?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "Mozilla Developer Network",
+ "triggers": [
+ "js"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en-US/search?topic=api&topic=js&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "Mozilla Developer Network",
+ "triggers": [
+ "mdnjs"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en-US/search?q={{{term}}}&topic=js"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "Mozilla Developer Network",
+ "triggers": [
+ "mdnhtml"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en-US/search?q={{{term}}}&topic=html"
+ }
+ },
+ {
+ "favicon": "https://developer.mozilla.org/static/img/favicon32.7f3da72dcea1.png",
+ "name": "Mozilla Developer Network",
+ "triggers": [
+ "svg"
+ ],
+ "regions": {
+ "default": "https://developer.mozilla.org/en-US/search?q={{{term}}}&topic=svg"
+ }
+ },
+ {
+ "favicon": "https://dxr.mozilla.org/static/icons/search.89fc4a92.png",
+ "name": "Mozilla DXR",
+ "triggers": [
+ "mozdxr",
+ "dxr"
+ ],
+ "regions": {
+ "default": "https://dxr.mozilla.org/mozilla-central/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searchfox.org/static/icons/search.png",
+ "name": "Mozilla Searchfox",
+ "triggers": [
+ "mozsf"
+ ],
+ "regions": {
+ "default": "https://searchfox.org/mozilla-central/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-media-prod-cdn.sumo.mozilla.net/static/sumo/img/favicon.ico",
+ "name": "Mozilla Support",
+ "triggers": [
+ "mozillasupport"
+ ],
+ "regions": {
+ "default": "https://support.mozilla.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.mozilla.org/skins/common/favicon.ico",
+ "name": "Mozilla Wiki",
+ "triggers": [
+ "mozwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.mozilla.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mozillians.org/static/mozillians/img/favicon.ico",
+ "name": "Mozillians",
+ "triggers": [
+ "mozillians"
+ ],
+ "regions": {
+ "default": "https://mozillians.org/en-US/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mp3c.cc/search/icon.jpg",
+ "name": "Mp3c",
+ "triggers": [
+ "mp3c"
+ ],
+ "regions": {
+ "default": "http://www.mp3c.cc/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "mp3juices",
+ "triggers": [
+ "mp3juices"
+ ],
+ "regions": {
+ "default": "http://mp3juices.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mp3lemon.org/favicon.ico",
+ "name": "MP3lemon",
+ "triggers": [
+ "mp3lemon"
+ ],
+ "regions": {
+ "default": "http://mp3lemon.org/search.php?search=pure%20heroine&query_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mp3raid.com/favicon.ico",
+ "name": "mp3raid",
+ "triggers": [
+ "mp3raid"
+ ],
+ "regions": {
+ "default": "http://www.mp3raid.com/music/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.mp3xd.com/favicon.ico",
+ "name": "MP3XD",
+ "triggers": [
+ "mp3xd"
+ ],
+ "regions": {
+ "default": "http://www.mp3xd.com/descargar-mp3/{{{term}}}-1.html"
+ }
+ },
+ {
+ "favicon": "http://rena.mpdl.mpg.de/favicon.ico",
+ "name": "MPG.ReNa - Max Planck Reseource Navigator",
+ "triggers": [
+ "mpgrena"
+ ],
+ "regions": {
+ "default": "http://rena.mpdl.mpg.de/rena/Search/Results?lookfor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.mpora.com/favicon-32x32.png?20180703-01",
+ "name": "MPORA",
+ "triggers": [
+ "mpora"
+ ],
+ "regions": {
+ "default": "http://mpora.com/search/videos?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mrmoneymustache.com/wp-content/uploads/2018/03/favicon1.jpg",
+ "name": "Mr. Money Moustache",
+ "triggers": [
+ "mrmoney"
+ ],
+ "regions": {
+ "default": "http://www.mrmoneymustache.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mrlooquer.com/assets/favicon.ico",
+ "name": "MrLooquer",
+ "triggers": [
+ "mrlooquer"
+ ],
+ "regions": {
+ "default": "http://mrlooquer.com/list?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "mrtzcmp3.net",
+ "triggers": [
+ "mrtzcmp3"
+ ],
+ "regions": {
+ "default": "http://mrtzcmp3.net/{{{term}}}_1s.html"
+ }
+ },
+ {
+ "favicon": "https://www.microsoft.com/favicon.ico",
+ "name": "MS Malware Encyclopedia",
+ "triggers": [
+ "msmalware"
+ ],
+ "regions": {
+ "default": "https://www.microsoft.com/security/portal/Threat/Encyclopedia/Search.aspx?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/mspaintadventures/images/6/64/Favicon.ico/revision/latest?cb=20090717040338",
+ "name": "MS Paint Adventures Wiki",
+ "triggers": [
+ "mspawiki",
+ "mspa"
+ ],
+ "regions": {
+ "default": "http://mspaintadventures.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://mspoweruser.com/wp-content/themes/shunno/inc/assets/logos/favicon.ico?v=6",
+ "name": "MS Power User",
+ "triggers": [
+ "mspu"
+ ],
+ "regions": {
+ "default": "http://mspoweruser.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.msarnoff.org/favicon.ico",
+ "name": "msarnoff.org ChipDB",
+ "triggers": [
+ "chipdb"
+ ],
+ "regions": {
+ "default": "http://www.msarnoff.org/chipdb/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.mscdirect.com/global/application-content/images/header/favicon.ico",
+ "name": "MSC Direct",
+ "triggers": [
+ "mscdirect"
+ ],
+ "regions": {
+ "default": "https://www.mscdirect.com/browse/?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://social.msdn.microsoft.com/favicon.ico",
+ "name": "MSDN",
+ "triggers": [
+ "msdn"
+ ],
+ "regions": {
+ "default": "https://social.msdn.microsoft.com/Search/en-US?query={{{term}}}&ac=8"
+ }
+ },
+ {
+ "favicon": "https://us.msi.com/favicon.png",
+ "name": "MSI USA",
+ "triggers": [
+ "msi"
+ ],
+ "regions": {
+ "default": "https://us.msi.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://msmvps.com/favicon.ico",
+ "name": "MSMVPs.com",
+ "triggers": [
+ "msmvps"
+ ],
+ "regions": {
+ "default": "http://msmvps.com/search/SearchResults.aspx?q={{{term}}}&o=Relevance"
+ }
+ },
+ {
+ "favicon": "http://investing.money.msn.com/favicon.ico",
+ "name": "MSN Money",
+ "triggers": [
+ "msnm"
+ ],
+ "regions": {
+ "default": "http://investing.money.msn.com/investments/stock-price?Symbol={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.msnbc.com/sites/msnbc/themes/leanforward/favicon.ico",
+ "name": "MSNBC",
+ "triggers": [
+ "msnbc"
+ ],
+ "regions": {
+ "default": "http://www.msnbc.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.mtb-news.de/header/favicon/favicon-32x32.png?0491582",
+ "name": "MTB-News",
+ "triggers": [
+ "ibc"
+ ],
+ "regions": {
+ "default": "http://www.mtb-news.de/forum/search/12469693/?q={{{term}}}&o=relevance"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/mtgsalvation_gamepedia/6/64/Favicon.ico?version=781d91f54a709fa706b326b235beec3a",
+ "name": "MTG Salvation",
+ "triggers": [
+ "mtgwiki"
+ ],
+ "regions": {
+ "default": "http://mtgsalvation.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/mtgsalvation_gamepedia/6/64/Favicon.ico?version=781d91f54a709fa706b326b235beec3a",
+ "name": "MTG Salvation Wiki",
+ "triggers": [
+ "mtgs"
+ ],
+ "regions": {
+ "default": "http://mtgsalvation.gamepedia.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hugh.justsoftware.org/favicon.ico",
+ "name": "MTG Strategy Guide",
+ "triggers": [
+ "mtgstrategyguide"
+ ],
+ "regions": {
+ "default": "http://hugh.justsoftware.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mtg.wtf/favicon.ico",
+ "name": "MTG WTF",
+ "triggers": [
+ "mtgw",
+ "mtgwtf"
+ ],
+ "regions": {
+ "default": "https://mtg.wtf/card?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mtg-hunter.com/favicon-16x16.png",
+ "name": "MTG-Hunter",
+ "triggers": [
+ "mtgh"
+ ],
+ "regions": {
+ "default": "http://mtg-hunter.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets1.mtggoldfish.com/assets/goldfish-32-22599602a047942143b34b034de85b0968d377caf56ff4a12c06146a4c13b989.png",
+ "name": "mtgGoldfish",
+ "triggers": [
+ "mtggf"
+ ],
+ "regions": {
+ "default": "http://www.mtggoldfish.com/q?query_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mtgotraders.com/favicon.ico",
+ "name": "MTGO Traders",
+ "triggers": [
+ "mtgotraders"
+ ],
+ "regions": {
+ "default": "http://www.mtgotraders.com/store/search.php?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.mturk.com/assets/images/favicon.ico",
+ "name": "mturk.com",
+ "triggers": [
+ "mtk"
+ ],
+ "regions": {
+ "default": "https://www.mturk.com/mturk/searchbar?selectedSearchType=hitgroups&searchWords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mtv.com/favicon.ico",
+ "name": "MTV",
+ "triggers": [
+ "mtv"
+ ],
+ "regions": {
+ "default": "http://www.mtv.com/search/?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mubi.com/favicon.ico",
+ "name": "Mubi",
+ "triggers": [
+ "mubi"
+ ],
+ "regions": {
+ "default": "http://mubi.com/search/results?cx=016360985607050269103%3Acmmod4epzpo&cof=FORID%3A10&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mudah.my/img/favicon.png",
+ "name": "Mudah.my",
+ "triggers": [
+ "Mudah"
+ ],
+ "regions": {
+ "default": "https://www.mudah.my/Malaysia/{{{term}}}-for-sale?lst=0&fs=1&w=3&cg=0&q=cedkbcebabbi&so=1&st=s"
+ }
+ },
+ {
+ "favicon": "https://www.muffwiggler.com/favicon.ico",
+ "name": "Muff Wiggler Forum",
+ "triggers": [
+ "muff"
+ ],
+ "regions": {
+ "default": "https://www.muffwiggler.com/forum/search.php?search_keywords={{{term}}}&search_terms=extended&search_author=&search_forum=-1&search_time=0&search_fields=all&sort_by=0&sort_dir=desc&show_results=topics&return_chars=200"
+ }
+ },
+ {
+ "favicon": "https://static.mugshots.com/templates/mugshots/images/favicon.png",
+ "name": "Mugshots.com",
+ "triggers": [
+ "mugshots"
+ ],
+ "regions": {
+ "default": "http://mugshots.com/search.html?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.multiled.com.ar/wp-content/uploads/2017/03/favicon-apple.png",
+ "name": "multiled",
+ "triggers": [
+ "multiled"
+ ],
+ "regions": {
+ "default": "http://www.multiled.com.ar/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.multitran.ru/gif/favicon.ico",
+ "name": "Multitran",
+ "triggers": [
+ "mt"
+ ],
+ "regions": {
+ "default": "https://www.multitran.ru/c/m.exe?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.multitran.ru/gif/favicon.ico",
+ "name": "Multitran",
+ "triggers": [
+ "multitran"
+ ],
+ "regions": {
+ "default": "https://www.multitran.ru/c/m.exe?CL=1&s={{{term}}}&l1=1"
+ }
+ },
+ {
+ "favicon": "http://mumimhere.info/images/icons/favicon.png",
+ "name": "Mum I'm Here",
+ "triggers": [
+ "mih"
+ ],
+ "regions": {
+ "default": "http://mumimhere.info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mungfali.com/favicon.ico",
+ "name": "Mungfali",
+ "triggers": [
+ "mungfali"
+ ],
+ "regions": {
+ "default": "http://mungfali.com/explore.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lib.thessaloniki.gr/favicon.ico",
+ "name": "Municipal Library of Thessaloniki",
+ "triggers": [
+ "libth"
+ ],
+ "regions": {
+ "default": "http://lib.thessaloniki.gr/ipac20/ipac.jsp?session=14048C549F1N5.44906&menu=search&aspect=subtab37&npp=10&ipp=20&spp=20&profile=central--1&ri=&term={{{term}}}&index=.GW&x=0&y=0&aspect=subtab37"
+ }
+ },
+ {
+ "favicon": "http://www.munju.net/wp-content/photos/favicon_1524172941.png",
+ "name": "Munju",
+ "triggers": [
+ "munju"
+ ],
+ "regions": {
+ "default": "http://www.munju.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/muppet/images/6/64/Favicon.ico/revision/latest?cb=20070104225244",
+ "name": "Muppet Wiki",
+ "triggers": [
+ "muppet"
+ ],
+ "regions": {
+ "default": "http://muppet.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://muralpsicologia.com.br/eventos/img/favicon-64.png",
+ "name": "Mural psicologia",
+ "triggers": [
+ "muralpsi"
+ ],
+ "regions": {
+ "default": "http://muralpsicologia.com.br/eventos/pesquisa?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.murfie.com/favicon.ico",
+ "name": "Murfie",
+ "triggers": [
+ "murfie"
+ ],
+ "regions": {
+ "default": "https://www.murfie.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forums.musculardevelopment.com/favicon.ico",
+ "name": "Muscular Development Forums",
+ "triggers": [
+ "muscdevforum"
+ ],
+ "regions": {
+ "default": "http://forums.musculardevelopment.com?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://musescore.com/static/public/img/product_icons/musescore/favicon.ico",
+ "name": "MuseScore.com",
+ "triggers": [
+ "musescore"
+ ],
+ "regions": {
+ "default": "http://musescore.com/sheetmusic?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vanilla.futurecdn.net/musicradar/20180621/favicon.ico",
+ "name": "Music Radar",
+ "triggers": [
+ "musicr"
+ ],
+ "regions": {
+ "default": "http://www.musicradar.com/search?searchTerm={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.music-map.com/favicon.ico",
+ "name": "music-map",
+ "triggers": [
+ "musicmap"
+ ],
+ "regions": {
+ "default": "https://www.music-map.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.musicaneto.com/wp-content/uploads/2014/03/favicon1.png",
+ "name": "Musicaneto",
+ "triggers": [
+ "musicaneto"
+ ],
+ "regions": {
+ "default": "http://www.musicaneto.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz",
+ "triggers": [
+ "musicbrainz",
+ "mb"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search/textsearch.html?type=artist&query={{{term}}}&handlearguments=1"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz",
+ "triggers": [
+ "mbrec"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=recording&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Annotations",
+ "triggers": [
+ "mbannotation"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=annotation"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Areas",
+ "triggers": [
+ "mbarea"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=area"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Artists",
+ "triggers": [
+ "mbartist"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=artist"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz CD Stubs",
+ "triggers": [
+ "mbcdstub"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=cdstub"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz documentation",
+ "triggers": [
+ "mbdoc"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=doc"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Editors",
+ "triggers": [
+ "mbeditor"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=editor"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz events",
+ "triggers": [
+ "mbe"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=event&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz events",
+ "triggers": [
+ "mbevent",
+ "mbseries"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=series"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz FreeDB",
+ "triggers": [
+ "mbfreedb"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=freedb"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz instruments",
+ "triggers": [
+ "mbinstrument"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=instrument"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Labels",
+ "triggers": [
+ "mblabel"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=label"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz labels",
+ "triggers": [
+ "mbl"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=label&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz places",
+ "triggers": [
+ "mbp"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=place&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Places",
+ "triggers": [
+ "mbplace"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=place"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Recordings",
+ "triggers": [
+ "mbrecording"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=recording"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Release Group",
+ "triggers": [
+ "mbrg"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=release_group&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Release Groups",
+ "triggers": [
+ "mbreleasegroup"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=release_group"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Releases",
+ "triggers": [
+ "mbrelease"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=release"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Releases",
+ "triggers": [
+ "mbr"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?type=release&query={{{term}}}&handlearguments=1"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz tags",
+ "triggers": [
+ "mbtag"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=tag"
+ }
+ },
+ {
+ "favicon": "https://wiki.musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Wiki",
+ "triggers": [
+ "mbwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.musicbrainz.org/index.php?title=Special%3ASearch&go=Go&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz work",
+ "triggers": [
+ "mbw"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=work&method=indexed"
+ }
+ },
+ {
+ "favicon": "https://musicbrainz.org/favicon.ico",
+ "name": "MusicBrainz Works",
+ "triggers": [
+ "mbwork"
+ ],
+ "regions": {
+ "default": "https://musicbrainz.org/search?query={{{term}}}&type=work"
+ }
+ },
+ {
+ "favicon": "https://static.musiciansfriend.com/img/brand/mobile-mf/favicon-16x16.png?vId=ecmd-2018.6.2-0d&cb=1",
+ "name": "Musician's Friend",
+ "triggers": [
+ "musiciansfriend"
+ ],
+ "regions": {
+ "default": "http://www.musiciansfriend.com/search/search.jsp?sB=r&question={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://store.musicmagpie.co.uk/assets/favicon-ab8a12a3a77534be6aa8ce1d627c1bf1.ico",
+ "name": "MusicMagPie",
+ "triggers": [
+ "magpie"
+ ],
+ "regions": {
+ "default": "http://store.musicmagpie.co.uk/category/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mmcdn2.hosting-media.net/pict/icons/me_196x196.png",
+ "name": "MusicMe",
+ "triggers": [
+ "musicme"
+ ],
+ "regions": {
+ "default": "http://www.musicme.com/page.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://musicmoz.org/favicon.ico",
+ "name": "MusicMoz",
+ "triggers": [
+ "mmoz"
+ ],
+ "regions": {
+ "default": "https://musicmoz.org/search/search.cgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://musicmoz.org/favicon.ico",
+ "name": "MusicMoz",
+ "triggers": [
+ "musicmoz"
+ ],
+ "regions": {
+ "default": "http://musicmoz.org/search/search.cgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vanilla.futurecdn.net/musicradar/20180621/favicon.ico",
+ "name": "MusicRadar",
+ "triggers": [
+ "msrd"
+ ],
+ "regions": {
+ "default": "http://www.musicradar.com/search?searchTerm={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.musicstack.com/favicon.ico",
+ "name": "MusicStack",
+ "triggers": [
+ "musicstack"
+ ],
+ "regions": {
+ "default": "http://www.musicstack.com/show.cgi?find={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.musik.kz/favicon.ico",
+ "name": "musik",
+ "triggers": [
+ "mkz"
+ ],
+ "regions": {
+ "default": "http://www.musik.kz/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.musik-meisinger.de/shop/out/meisinger/img/favicon.ico",
+ "name": "Musik Meisinger Burghausen",
+ "triggers": [
+ "musikm"
+ ],
+ "regions": {
+ "default": "http://www.musik-meisinger.de/1/advanced_search_result.php?keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.musik-sammler.de/favicon.ico",
+ "name": "Musik-Sammler",
+ "triggers": [
+ "msammler"
+ ],
+ "regions": {
+ "default": "https://www.musik-sammler.de/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://eu.musikazblai.com/favicon.ico",
+ "name": "Musikazblai Euskaraz",
+ "triggers": [
+ "musikazblai"
+ ],
+ "regions": {
+ "default": "http://eu.musikazblai.com/foro/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.musimundo.com/favicon.ico",
+ "name": "Musimundo",
+ "triggers": [
+ "musimundo"
+ ],
+ "regions": {
+ "default": "http://www.musimundo.com/Busqueda?cbrand=0&title=0&artist=0&categories=&search={{{term}}}&typeGrid=grid"
+ }
+ },
+ {
+ "favicon": "http://www.musipedia.org/fileadmin/mp/favicon.ico",
+ "name": "Musipedia",
+ "triggers": [
+ "musipedia"
+ ],
+ "regions": {
+ "default": "http://www.musipedia.org/result.html?tx_mpsearch_pi1[pc]={{{term}}}&tx_mpsearch_pi1[submit_button]=Search"
+ }
+ },
+ {
+ "favicon": "https://www.musixmatch.com/favicon.ico",
+ "name": "Musixmatch",
+ "triggers": [
+ "mmatch",
+ "musixmatch",
+ "mxm"
+ ],
+ "regions": {
+ "default": "https://www.musixmatch.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://muslimmanga.org/favicon.ico",
+ "name": "Muslim Manga",
+ "triggers": [
+ "mmanga",
+ "muslimmanga"
+ ],
+ "regions": {
+ "default": "http://muslimmanga.org/?lang=en&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://storage.musopen.org/static/icons/favicon.83e25470e16a.ico",
+ "name": "Musopen",
+ "triggers": [
+ "musopen"
+ ],
+ "regions": {
+ "default": "https://musopen.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mustachify.me/favicon.ico",
+ "name": "mustachify.me",
+ "triggers": [
+ "mustache"
+ ],
+ "regions": {
+ "default": "http://mustachify.me/?src={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://muusikoiden.net/favicon.ico",
+ "name": "Muusikoiden.net",
+ "triggers": [
+ "muusikoiden"
+ ],
+ "regions": {
+ "default": "https://muusikoiden.net/tori/haku.php?keyword={{{term}}}&title_only=0&location=all&province=&city=&type=all&price_min=&price_max=&category=all&with_image=0"
+ }
+ },
+ {
+ "favicon": "http://muvir.net/favicon.ico",
+ "name": "Muvir",
+ "triggers": [
+ "Мувир"
+ ],
+ "regions": {
+ "default": "http://muvir.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mvdbase.com/images/icons/favicon.ico?v=201803192",
+ "name": "mvdbase",
+ "triggers": [
+ "mvdb"
+ ],
+ "regions": {
+ "default": "http://www.mvdbase.com/index.php?term={{{term}}}&field=vid&page=results"
+ }
+ },
+ {
+ "favicon": "http://mvnrepository.com/assets/images/7080b8b0f6f48e6fbaffd5f9d85fcc7f-favicon.ico",
+ "name": "MVNRepository",
+ "triggers": [
+ "mvnrepository"
+ ],
+ "regions": {
+ "default": "http://mvnrepository.com/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.mxsimulator.com/favicon.ico",
+ "name": "MX Simulator",
+ "triggers": [
+ "mxs"
+ ],
+ "regions": {
+ "default": "http://forum.mxsimulator.com/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mxtoolbox.com/public/images/favicons/favicon-16x16.png",
+ "name": "MXToolbox",
+ "triggers": [
+ "blacklist",
+ "spamcheck"
+ ],
+ "regions": {
+ "default": "https://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a{{{term}}}&run=toolpage"
+ }
+ },
+ {
+ "favicon": "https://mxtoolbox.com/public/images/favicons/favicon-16x16.png",
+ "name": "MxToolbox",
+ "triggers": [
+ "mx"
+ ],
+ "regions": {
+ "default": "https://mxtoolbox.com/SuperTool.aspx?action=mx%3a{{{term}}}&run=networktools"
+ }
+ },
+ {
+ "favicon": "https://mxtoolbox.com/public/images/favicons/favicon-16x16.png",
+ "name": "MXToolbox",
+ "triggers": [
+ "rdns"
+ ],
+ "regions": {
+ "default": "https://mxtoolbox.com/SuperTool.aspx?action=ptr%3a{{{term}}}&run=toolpage"
+ }
+ },
+ {
+ "favicon": "https://mxtoolbox.com/public/images/favicons/favicon-16x16.png",
+ "name": "MXToolbox",
+ "triggers": [
+ "dns"
+ ],
+ "regions": {
+ "default": "https://mxtoolbox.com/SuperTool.aspx?action=a%3a{{{term}}}&run=toolpage"
+ }
+ },
+ {
+ "favicon": "https://mxtoolbox.com/public/images/favicons/favicon-16x16.png",
+ "name": "MXToolbox",
+ "triggers": [
+ "spf"
+ ],
+ "regions": {
+ "default": "https://mxtoolbox.com/SuperTool.aspx?action=spf%3a{{{term}}}&run=toolpage"
+ }
+ },
+ {
+ "favicon": "https://myanimelist.cdn-dena.com/images/faviconv5.ico",
+ "name": "My Anime List",
+ "triggers": [
+ "mal"
+ ],
+ "regions": {
+ "default": "https://myanimelist.net/anime.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "My Etymology",
+ "triggers": [
+ "myetym"
+ ],
+ "regions": {
+ "default": "http://www.myetymology.com/search.php?query={{{term}}}&search=Search"
+ }
+ },
+ {
+ "favicon": "http://www.myfitnesspal.com/favicon.ico",
+ "name": "My Fitness Pal",
+ "triggers": [
+ "mfp"
+ ],
+ "regions": {
+ "default": "http://www.myfitnesspal.com/food/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://buffy.mlpforums.com/monthly_2017_07/mlpf.ico.7f7a68773298870b70fba5cf5dd30043.ico",
+ "name": "My Little Pony Forums",
+ "triggers": [
+ "mlpf"
+ ],
+ "regions": {
+ "default": "https://mlpforums.com/index.php?app=core&module=search&do=search&search_app_filters[forums]&search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/mlp/images/6/64/Favicon.ico/revision/latest?cb=20101215000701",
+ "name": "My Little Pony: Friendship is Magic Wiki",
+ "triggers": [
+ "mlp"
+ ],
+ "regions": {
+ "default": "http://mlp.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.myminifactory.com/favicon.png?v16",
+ "name": "My Mini Factory",
+ "triggers": [
+ "mmf"
+ ],
+ "regions": {
+ "default": "https://www.myminifactory.com/search/?query={{{term}}}&searchType=1"
+ }
+ },
+ {
+ "favicon": "//pad.mymovies.it/v12/img/m_blu.png",
+ "name": "My Movies Italia",
+ "triggers": [
+ "mmi"
+ ],
+ "regions": {
+ "default": "http://www.mymovies.it/database/ricercalibera/default.asp?q={{{term}}}&cx=partner-pub-1699801751737986%3Ax7j961-1g3m&cof=FORID%3A9&ie=ISO-8859-1&sa=Cerca "
+ }
+ },
+ {
+ "favicon": "https://pt.myprotein.com/favicon.ico?v=myproteinpt8.1439.275",
+ "name": "My protein",
+ "triggers": [
+ "myp"
+ ],
+ "regions": {
+ "default": "https://pt.myprotein.com/elysium.search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://myreadingmanga.info/wp-content/themes/mrm/images/favicon.ico",
+ "name": "My Reading Manga",
+ "triggers": [
+ "myreadingmanga"
+ ],
+ "regions": {
+ "default": "http://myreadingmanga.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "My Vid Toplist",
+ "triggers": [
+ "myvid"
+ ],
+ "regions": {
+ "default": "http://myvid.top/search/videos/{{{term}}}/page1.html"
+ }
+ },
+ {
+ "favicon": "http://www.myallsearch.com/favicon.ico",
+ "name": "MyAllSearch",
+ "triggers": [
+ "myallsearch"
+ ],
+ "regions": {
+ "default": "http://www.myallsearch.com/Web/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://myanimelist.cdn-dena.com/images/faviconv5.ico",
+ "name": "MyAnimeList",
+ "triggers": [
+ "malist",
+ "myanimelist"
+ ],
+ "regions": {
+ "default": "http://myanimelist.net/anime.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://myanimelist.cdn-dena.com/images/faviconv5.ico",
+ "name": "MyAnimeList Search All",
+ "triggers": [
+ "malall"
+ ],
+ "regions": {
+ "default": "https://myanimelist.net/search/all?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.myanonamouse.net/favicon.ico?v=2018b",
+ "name": "MyAnonymouse",
+ "triggers": [
+ "myam"
+ ],
+ "regions": {
+ "default": "https://www.myanonamouse.net/tor/browse.php?action=search&tor%5Btext%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mybeercellar.com/favicon.ico",
+ "name": "mybeercellar",
+ "triggers": [
+ "mbc"
+ ],
+ "regions": {
+ "default": "https://www.mybeercellar.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mybestbrands.de/favicon.ico?v=RyoP62JNp3",
+ "name": "MYBESTBRANDS",
+ "triggers": [
+ "mybestbrands"
+ ],
+ "regions": {
+ "default": "http://www.mybestbrands.de/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://d2r89jww18ldvd.cloudfront.net/assets/favicon-be7d61c4fef9e5f9bdfdb652c3173158614b1022c9d92ae013d12abf05a5d78f.ico",
+ "name": "MyCallBot",
+ "triggers": [
+ "mcb"
+ ],
+ "regions": {
+ "default": "http://mycallbot.com/numbers/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mycom.nl/favicon.ico",
+ "name": "MyCom",
+ "triggers": [
+ "mycom"
+ ],
+ "regions": {
+ "default": "https://mycom.nl/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mycroftproject.com/images/favicon.ico",
+ "name": "Mycroft Project",
+ "triggers": [
+ "mycroft"
+ ],
+ "regions": {
+ "default": "http://mycroftproject.com/search-engines.html?name={{{term}}}&opensearch=yes"
+ }
+ },
+ {
+ "favicon": "https://www.mydealz.de/favicon.ico",
+ "name": "MyDealz",
+ "triggers": [
+ "mydealz"
+ ],
+ "regions": {
+ "default": "https://www.mydealz.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mydevworld.fr/wp-content/uploads/2017/11/201711_MDW_LOGO_GREEN-300x300.png",
+ "name": "mydevworld.fr",
+ "triggers": [
+ "mdw"
+ ],
+ "regions": {
+ "default": "http://www.mydevworld.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mydramalist.com/favicon.ico",
+ "name": "MyDramaList",
+ "triggers": [
+ "mdl"
+ ],
+ "regions": {
+ "default": "http://mydramalist.com/browse/all?sort[]=relevance&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://my.ecp.fr/favicon.ico?v=2",
+ "name": "MyECP",
+ "triggers": [
+ "myecp"
+ ],
+ "regions": {
+ "default": "https://my.ecp.fr/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.myfigurecollection.net/ressources/webicon.png",
+ "name": "MyFigureCollection",
+ "triggers": [
+ "mfc"
+ ],
+ "regions": {
+ "default": "http://myfigurecollection.net/search.php?overall={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://new.myfonts.com/favicon.ico",
+ "name": "Myfonts",
+ "triggers": [
+ "myfonts"
+ ],
+ "regions": {
+ "default": "http://new.myfonts.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.myfreemp3.eu/mp3/icon.jpg",
+ "name": "myfreemp3",
+ "triggers": [
+ "mp3"
+ ],
+ "regions": {
+ "default": "http://www.myfreemp3.eu/mp3/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mygofer.com/assets/images/icons/favicon-16x16.png",
+ "name": "MyGofer",
+ "triggers": [
+ "mygofer"
+ ],
+ "regions": {
+ "default": "http://www.mygofer.com/search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mygov.scot/favicon.ico",
+ "name": "mygov.scot",
+ "triggers": [
+ "mygovscot"
+ ],
+ "regions": {
+ "default": "https://www.mygov.scot/search?q={{{term}}}&cat=sitesearch"
+ }
+ },
+ {
+ "favicon": "http://www.myinstants.com/media/favicon-16x16.png",
+ "name": "myinstants",
+ "triggers": [
+ "mi",
+ "instants"
+ ],
+ "regions": {
+ "default": "http://www.myinstants.com/search/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//pad.mymovies.it/v12/img/m_blu.png",
+ "name": "MYmovies",
+ "triggers": [
+ "mymovies"
+ ],
+ "regions": {
+ "default": "http://www.mymovies.it/database/ricercalibera/default.asp?q={{{term}}}&cx=partner-pub-1699801751737986%3Ax7j961-1g3m&cof=FORID%3A9&ie=ISO-8859-1&sa=Cerca"
+ }
+ },
+ {
+ "favicon": "//pad.mymovies.it/v12/img/m_blu.png",
+ "name": "MYmovies",
+ "triggers": [
+ "mym"
+ ],
+ "regions": {
+ "default": "http://www.mymovies.it/database/ricerca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mymovingreviews.com/faviconani.gif",
+ "name": "MyMovingReviews.com",
+ "triggers": [
+ "mymovingreviews"
+ ],
+ "regions": {
+ "default": "http://www.mymovingreviews.com/search.php?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://cdn.myntassets.com/skin1/icons/favicon.ico",
+ "name": "Myntra",
+ "triggers": [
+ "myntra"
+ ],
+ "regions": {
+ "default": "http://www.myntra.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.myntassets.com/skin1/icons/favicon.ico",
+ "name": "Myntra",
+ "triggers": [
+ "myn"
+ ],
+ "regions": {
+ "default": "http://www.myntra.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://myrwatches.com/wp-content/uploads/2017/08/cropped-Schermafbeelding-2017-08-19-om-15.51.40-192x192.png",
+ "name": "MyrWatches",
+ "triggers": [
+ "watches"
+ ],
+ "regions": {
+ "default": "https://myrwatches.com/?s={{{term}}} &post_type=product"
+ }
+ },
+ {
+ "favicon": "https://myshows.me/favicon.ico",
+ "name": "myshows.ru",
+ "triggers": [
+ "myshows"
+ ],
+ "regions": {
+ "default": "http://myshows.me/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mysku.ru/favicon.ico",
+ "name": "Mysku.ru",
+ "triggers": [
+ "mysku"
+ ],
+ "regions": {
+ "default": "https://mysku.ru/search/topics/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mysongbook.com/favicon.ico",
+ "name": "mySongBook",
+ "triggers": [
+ "mysongbook"
+ ],
+ "regions": {
+ "default": "http://www.mysongbook.com/search?utf8=%E2%9C%93&search%5Btype_item%5D=4&search%5Bname%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://x.myspacecdn.com/new/common/images/favicons/favicon.png",
+ "name": "MySpace",
+ "triggers": [
+ "myspace"
+ ],
+ "regions": {
+ "default": "http://searchservice.myspace.com/index.cfm?fuseaction=sitesearch.results&orig=search_Header&origpfc=Splash&type=People&qry={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.myspleen.org/favicon.ico",
+ "name": "MySpleen",
+ "triggers": [
+ "myspleen"
+ ],
+ "regions": {
+ "default": "http://www.myspleen.org/browse.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mysupermarket.co.uk/favicon.ico",
+ "name": "mysupermarket.co.uk",
+ "triggers": [
+ "mys"
+ ],
+ "regions": {
+ "default": "http://www.mysupermarket.co.uk/Shopping/FindProducts.aspx?Query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.maxdome.de/bundles/mxdcommon/images/favicon-c29ccf3d.ico",
+ "name": "Myvideo",
+ "triggers": [
+ "mv"
+ ],
+ "regions": {
+ "default": "http://www.myvideo.de/Videos_A-Z?searchWord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.myvidster.com/favicon.ico",
+ "name": "MyVidster",
+ "triggers": [
+ "myvidster"
+ ],
+ "regions": {
+ "default": "https://www.myvidster.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://myzyp.com/favicon.ico",
+ "name": "myZyp.com",
+ "triggers": [
+ "myzyp"
+ ],
+ "regions": {
+ "default": "http://myzyp.com/myzyp/Public/ViewLocation.aspx?ZypTag={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://malid.is/favicon.ico",
+ "name": "Málið",
+ "triggers": [
+ "malid"
+ ],
+ "regions": {
+ "default": "http://malid.is/leit/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://france.meteofrance.com/favicon.ico",
+ "name": "Météo-France",
+ "triggers": [
+ "meteofr"
+ ],
+ "regions": {
+ "default": "http://france.meteofrance.com/france/accueil/resultat?RECHERCHE_RESULTAT_PORTLET.path=rechercheresultat&query={{{term}}}&type=PREV_FRANCE&satellite=france"
+ }
+ },
+ {
+ "favicon": "http://www.mvv-muenchen.de/favicon.ico",
+ "name": "Münchner Verkehrs- und Tarifbund (MVV)",
+ "triggers": [
+ "mvv"
+ ],
+ "regions": {
+ "default": "https://efa.mvv-muenchen.de/index.html?name_destination={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maoridictionary.co.nz/favicon.ico",
+ "name": "Māori Dictionary",
+ "triggers": [
+ "maori"
+ ],
+ "regions": {
+ "default": "https://maoridictionary.co.nz/search?idiom=&phrase=&proverb=&loan=&histLoanWords=&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//i.mlp.cz/noRW_layout/favicon.ico",
+ "name": "Městská knihovna v Praze",
+ "triggers": [
+ "mkp"
+ ],
+ "regions": {
+ "default": "https://search.mlp.cz/cz/?query={{{term}}}&kde=all#/c_s_ol=query-eq:cdfbecabjdb"
+ }
+ },
+ {
+ "favicon": "https://bilder1.n-tv.de/resources/30631997/style01/img/favicon.ico",
+ "name": "n-tv",
+ "triggers": [
+ "n-tv"
+ ],
+ "regions": {
+ "default": "https://www.n-tv.de/suche/?a=search&at=all&q={{{term}}}&submit=Suche starten"
+ }
+ },
+ {
+ "favicon": "https://n11scdn.akamaized.net/static/favicon.ico",
+ "name": "n11.com",
+ "triggers": [
+ "n11"
+ ],
+ "regions": {
+ "default": "http://www.n11.com/arama?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://boardgamegeek.com/favicon.ico",
+ "name": "na",
+ "triggers": [
+ "bgggm"
+ ],
+ "regions": {
+ "default": "https://boardgamegeek.com/geekmarket/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nachdenkseiten.de/wp-content/themes/nds2012/images/favicon.ico",
+ "name": "Nachdenkseiten",
+ "triggers": [
+ "nds"
+ ],
+ "regions": {
+ "default": "http://www.nachdenkseiten.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.najdi.si/assets/PROD-1.6.16/ctx/images/favicon.ico",
+ "name": "Najdi.si",
+ "triggers": [
+ "najdi"
+ ],
+ "regions": {
+ "default": "http://www.najdi.si/search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/36cdcb4bed050e19e465471a6bbe63b0?s=32",
+ "name": "Naked Security (by Sophos)",
+ "triggers": [
+ "nakedsec"
+ ],
+ "regions": {
+ "default": "https://nakedsecurity.sophos.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.name.com/favicon.ico",
+ "name": "Name.com",
+ "triggers": [
+ "name"
+ ],
+ "regions": {
+ "default": "https://www.name.com/name?&domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.namecheap.com/assets/img/nc-icon/favicon.ico",
+ "name": "NameCheap",
+ "triggers": [
+ "ncheap",
+ "domain"
+ ],
+ "regions": {
+ "default": "https://www.namecheap.com/domains/domain-name-search/results.aspx?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.namecheap.com/assets/img/nc-icon/favicon.ico",
+ "name": "Namecheap",
+ "triggers": [
+ "namecheap"
+ ],
+ "regions": {
+ "default": "https://www.namecheap.com/domains/registration/results.aspx?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nameling.net/favicon.ico",
+ "name": "Nameling",
+ "triggers": [
+ "nameling"
+ ],
+ "regions": {
+ "default": "http://nameling.net/name/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.namemc.com/i/favicon-192.png",
+ "name": "NameMC",
+ "triggers": [
+ "namemc"
+ ],
+ "regions": {
+ "default": "https://de.namemc.com/s?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://u.jimcdn.com/cms/o/sdb4161da9264ee97/img/favicon.ico?t=1454882420",
+ "name": "NameToolkit",
+ "triggers": [
+ "nametoolkit"
+ ],
+ "regions": {
+ "default": "http://nametoolkit.com/suggest?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://namu.wiki/img/icon.png",
+ "name": "namuwiki",
+ "triggers": [
+ "namu"
+ ],
+ "regions": {
+ "default": "https://namu.wiki/go/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nina.gov.pl/images/favicon.ico",
+ "name": "Narodowy Instytut Audiowizualny (nina.gov.pl)",
+ "triggers": [
+ "nina"
+ ],
+ "regions": {
+ "default": "http://www.nina.gov.pl/searchresult?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/naruto/images/6/64/Favicon.ico/revision/latest?cb=20141014010210",
+ "name": "Narutopedia",
+ "triggers": [
+ "naruto"
+ ],
+ "regions": {
+ "default": "http://naruto.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nasasearch.nasa.gov/favicon.ico",
+ "name": "NASA",
+ "triggers": [
+ "nasa"
+ ],
+ "regions": {
+ "default": "https://nasasearch.nasa.gov/search/search.jsp?nasaInclude={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ui.adsabs.harvard.edu/styles/img/favicon.ico",
+ "name": "Nasa ADS Beta",
+ "triggers": [
+ "adsbeta"
+ ],
+ "regions": {
+ "default": "https://ui.adsabs.harvard.edu/#search/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://adsabs.harvard.edu/cgi-bin/favicon.ico",
+ "name": "NASA ADS Bibliographical reference search",
+ "triggers": [
+ "adsref"
+ ],
+ "regions": {
+ "default": "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?db_key=ALL&bibcode={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://labs.adsabs.harvard.edu/wiki/lib/tpl/dokubrick/images/favicon.ico",
+ "name": "NASA ADS Labs",
+ "triggers": [
+ "adslabs"
+ ],
+ "regions": {
+ "default": "http://labs.adsabs.harvard.edu/ui/cgi-bin/topicSearch?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ned.ipac.caltech.edu/sites/default/files/NEDVectorLogo_Favicon_1Text_0.png",
+ "name": "NASA Extragalactic Database",
+ "triggers": [
+ "ned"
+ ],
+ "regions": {
+ "default": "https://ned.ipac.caltech.edu/cgi-bin/objsearch?objname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nasdaq.com/images/qfav.ico",
+ "name": "NASDAQ Real Time Quotes",
+ "triggers": [
+ "nrtq"
+ ],
+ "regions": {
+ "default": "http://www.nasdaq.com/symbol/{{{term}}}/real-time"
+ }
+ },
+ {
+ "favicon": "http://www.nb.no/content/themes/nasjonalbiblioteket/assets/graphics/favicons/favicon.ico",
+ "name": "Nasjonalbiblioteket",
+ "triggers": [
+ "nb"
+ ],
+ "regions": {
+ "default": "http://www.nb.no/nbsok/search?page=0&menuOpen=false&instant=true&action=search&currentHit=-1&searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.naslovi.net/favicon.ico",
+ "name": "Naslovi.net",
+ "triggers": [
+ "naslovi"
+ ],
+ "regions": {
+ "default": "http://www.naslovi.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.audubon.org/cdn/farfuture/TLBg-heSejmNIBsV9hPFJQaju25YEEwtokYFPQrzeVg/mtime:1422485354/sites/default/files/egret-64x64_0.png",
+ "name": "National Audubon Society",
+ "triggers": [
+ "audubon"
+ ],
+ "regions": {
+ "default": "https://www.audubon.org/search/node?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.audubon.org/cdn/farfuture/TLBg-heSejmNIBsV9hPFJQaju25YEEwtokYFPQrzeVg/mtime:1422485354/sites/default/files/egret-64x64_0.png",
+ "name": "National Audubon Society (birds)",
+ "triggers": [
+ "audubonb"
+ ],
+ "regions": {
+ "default": "http://birds.audubon.org/search/node?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nfib.com/favicon.ico",
+ "name": "National Federation of Independent Business",
+ "triggers": [
+ "nfib"
+ ],
+ "regions": {
+ "default": "http://www.nfib.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nationalgeographic.com/etc/designs/platform/refresh/images/favicon.ico",
+ "name": "National Geographic",
+ "triggers": [
+ "natgeo",
+ "nationalgeographic"
+ ],
+ "regions": {
+ "default": "https://www.nationalgeographic.com/search/?frontend=default_frontend&output_format=xml_no_dtd&num_results=25&filter=p&collection=default_collection&meta_field_to_return=ngs-gsa-feed-title&meta_field_to_return=ngs-gsa-feed-slug&meta_field_to_return=ngs-gsa-feed-description&meta_field_to_return=ngs-gsa-feed-keywords&meta_field_to_return=ngs-gsa-feed-thumbnail&required_meta_field_1=ngs-gsa-feed-mediaType%3Avideo&required_meta_field=ngs-gsa-feed-video-source%3Aanimals|ngs-gsa-feed-video-source%3Aenvironment|ngs-gsa-feed-video-source%3Amovies|ngs-gsa-feed-video-source%3Amusic|ngs-gsa-feed-video-source%3Anews|ngs-gsa-feed-video-source%3Aplaces|ngs-gsa-feed-video-source%3Aspecials|ngs-gsa-feed-video-source%3Ascience|ngs-gsa-feed-video-source%3Anat-geo-wild|ngs-gsa-feed-video-source%3Anational-geographic-channel|ngs-gsa-feed-video-source%3Akids|ngs-gsa-feed-video-source%3Athe-magazine&meta_field_filter=ngs-gsa-feed-title&meta_field_filter=ngs-gsa-feed-description&meta_field_filter=ngs-gsa-feed-keywords&oe=utf-8&search={{{term}}}&btnG=Go&start=0&sort="
+ }
+ },
+ {
+ "favicon": "https://kids.nationalgeographic.com/favicon.ico",
+ "name": "National Geographic Kids",
+ "triggers": [
+ "natgeokids"
+ ],
+ "regions": {
+ "default": "https://kids.nationalgeographic.com/search-results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.ni.com/favicon.ico",
+ "name": "National Instruments",
+ "triggers": [
+ "ni"
+ ],
+ "regions": {
+ "default": "http://search.ni.com/nisearch/app/main/p/bot/no/ap/global/lang/en/pg/1/q/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://catalogue.nla.gov.au/favicon.ico",
+ "name": "National Library of Australia Catalogue",
+ "triggers": [
+ "nla"
+ ],
+ "regions": {
+ "default": "http://catalogue.nla.gov.au/Search/Home?lookfor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nps.gov/common/commonspot/templates/images/icons/favicon.ico",
+ "name": "National Park Service (USA)",
+ "triggers": [
+ "nps"
+ ],
+ "regions": {
+ "default": "https://www.nps.gov/search/?affiliate=nps&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nseindia.com/common/images/favicon.ico",
+ "name": "National Stock Exchange of India",
+ "triggers": [
+ "nse"
+ ],
+ "regions": {
+ "default": "http://www.nseindia.com/gsa/search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nvd.nist.gov/App_Themes/Default/Images/favicon.ico",
+ "name": "National Vulnerability Database",
+ "triggers": [
+ "nvd"
+ ],
+ "regions": {
+ "default": "https://nvd.nist.gov/vuln/search/results?form_type=Basic&results_type=overview&query={{{term}}}&search_type=all"
+ }
+ },
+ {
+ "favicon": "http://forecast.weather.gov/favicon.ico",
+ "name": "National Weather Service",
+ "triggers": [
+ "nws",
+ "noaa"
+ ],
+ "regions": {
+ "default": "http://forecast.weather.gov/zipcity.php?inputstring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ne.se/info/wp-content/themes/nationalencyklopedin/favicons/sv-SE/favicon-32x32.png",
+ "name": "Nationalencyklopedin",
+ "triggers": [
+ "nese",
+ "nes"
+ ],
+ "regions": {
+ "default": "http://www.ne.se/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.parcs.at/favicon.ico",
+ "name": "Nationalparks Austria Datenzentrum",
+ "triggers": [
+ "npat"
+ ],
+ "regions": {
+ "default": "http://www.parcs.at/npa/mmd_data_by.php?q={{{term}}}&btnG=Suche+starten&searchval=30000"
+ }
+ },
+ {
+ "favicon": "https://nationstates.net/favicon.ico",
+ "name": "NationStates Nation",
+ "triggers": [
+ "nsn"
+ ],
+ "regions": {
+ "default": "https://nationstates.net/nation={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nationstates.net/favicon.ico",
+ "name": "NationStates Region",
+ "triggers": [
+ "nsr"
+ ],
+ "regions": {
+ "default": "https://nationstates.net/region={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nattly.com/media/images/favicon.ico",
+ "name": "Nattly",
+ "triggers": [
+ "nattly"
+ ],
+ "regions": {
+ "default": "http://nattly.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.naturaltherapypages.com.au/favicon.ico",
+ "name": "NaturalTherapyPages",
+ "triggers": [
+ "ntp"
+ ],
+ "regions": {
+ "default": "http://www.naturaltherapypages.com.au/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.naturespic.com/favicon.ico",
+ "name": "Nature's Pic Images",
+ "triggers": [
+ "naturespic"
+ ],
+ "regions": {
+ "default": "http://www.naturespic.com/NewZealand/result_search.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nautil.us/favicon.ico",
+ "name": "Nautil.us",
+ "triggers": [
+ "nautilus"
+ ],
+ "regions": {
+ "default": "http://nautil.us/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nautiljon.com/static/favicon.ico?1",
+ "name": "Nautiljon",
+ "triggers": [
+ "nautiljon"
+ ],
+ "regions": {
+ "default": "http://www.nautiljon.com/search.php?cx=partner-pub-0881008410530095%3Ad1y8wrnakj0&cof=FORID%3A10&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.naver.com/favicon.ico",
+ "name": "NAVER",
+ "triggers": [
+ "na"
+ ],
+ "regions": {
+ "default": "https://search.naver.com/search.naver?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://m.search.naver.com/favicon.ico",
+ "name": "Naver",
+ "triggers": [
+ "nv"
+ ],
+ "regions": {
+ "default": "http://m.search.naver.com/search.naver?query={{{term}}}):"
+ }
+ },
+ {
+ "favicon": "http://search.naver.com/favicon.ico",
+ "name": "Naver",
+ "triggers": [
+ "naver"
+ ],
+ "regions": {
+ "default": "http://search.naver.com/search.naver?where=nexearch&sm=osd&ie={inputEncoding}&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl.pstatic.net/dicimg/favicons/cndic-mobile/v2/Favicon.ico",
+ "name": "Naver Chinese Dictionary",
+ "triggers": [
+ "cndic"
+ ],
+ "regions": {
+ "default": "http://cndic.naver.com/search/all?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl.pstatic.net/dicimg/common/favicons/Favicon_32X32.ico",
+ "name": "Naver English Dictionary",
+ "triggers": [
+ "ndic"
+ ],
+ "regions": {
+ "default": "http://endic.naver.com/search.nhn?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl.pstatic.net/dicimg/common/favicons/Favicon_32X32.ico",
+ "name": "Naver Hanja Dictionary",
+ "triggers": [
+ "hanja"
+ ],
+ "regions": {
+ "default": "http://hanja.naver.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl.pstatic.net/dicimg/common/favicons/Favicon_32X32.ico",
+ "name": "Naver Japanese Dictionary",
+ "triggers": [
+ "jpdic"
+ ],
+ "regions": {
+ "default": "http://jpdic.naver.com/search.nhn?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://krdic.naver.com/favicon_32x32.ico",
+ "name": "Naver Korean Dictionary",
+ "triggers": [
+ "krdic"
+ ],
+ "regions": {
+ "default": "http://krdic.naver.com/search.nhn?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://map.naver.com/favicon.ico?v20140331",
+ "name": "Naver Map",
+ "triggers": [
+ "nmap"
+ ],
+ "regions": {
+ "default": "http://map.naver.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dicimg.naver.net/favicons/translator/v1/Favicon_pc.ico",
+ "name": "NAVER Translate from Korean to Japanese",
+ "triggers": [
+ "nvkrjp"
+ ],
+ "regions": {
+ "default": "http://translate.naver.com/#/ko/ja/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.navigium.de/favicon.ico",
+ "name": "Navigium",
+ "triggers": [
+ "nav"
+ ],
+ "regions": {
+ "default": "http://www.navigium.de/latein-woerterbuch.php?form={{{term}}}&wb=gross&phr=true&mh=true"
+ }
+ },
+ {
+ "favicon": "http://nayiri.com/favicon.ico",
+ "name": "Nayiri Armenian dictionary",
+ "triggers": [
+ "nayiri"
+ ],
+ "regions": {
+ "default": "http://nayiri.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ak-static.cms.nba.com/wp-content/uploads/sites/2/2017/06/g-league-icon-300x300.png",
+ "name": "NBA D-League",
+ "triggers": [
+ "nbadl",
+ "dleague"
+ ],
+ "regions": {
+ "default": "http://dleague.nba.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.nba.net/assets/icons/favicon16.ico",
+ "name": "NBA.com",
+ "triggers": [
+ "nba"
+ ],
+ "regions": {
+ "default": "http://www.nba.com/search/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "NCBI",
+ "triggers": [
+ "gene"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/gene/?term={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "NCBI",
+ "triggers": [
+ "ncbi"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/gquery/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "NCBI dbSNP",
+ "triggers": [
+ "dbsnp"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/snp?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "NCBI Gene Expresion Omnibus",
+ "triggers": [
+ "geo"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nciku.com/favicon.ico",
+ "name": "Nciku",
+ "triggers": [
+ "nck"
+ ],
+ "regions": {
+ "default": "http://nciku.com/search/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nciku.com/favicon.ico",
+ "name": "Nciku",
+ "triggers": [
+ "zhen",
+ "ncz"
+ ],
+ "regions": {
+ "default": "http://nciku.com/search/zh/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nciku.com/favicon.ico",
+ "name": "Nciku English",
+ "triggers": [
+ "nce"
+ ],
+ "regions": {
+ "default": "http://nciku.com/search/en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nciku.com/favicon.ico",
+ "name": "Nciku.com",
+ "triggers": [
+ "nciku"
+ ],
+ "regions": {
+ "default": "http://www.nciku.com/search/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ncixus.com/favicon.ico",
+ "name": "NCIX US",
+ "triggers": [
+ "ncixus"
+ ],
+ "regions": {
+ "default": "http://www.ncixus.com/search/?categoryid=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ncix.com/_img/favicon.ico",
+ "name": "NCIX.com",
+ "triggers": [
+ "ncix"
+ ],
+ "regions": {
+ "default": "http://ncix.com/search/?categoryid=0&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//lib.ncsu.edu/sites/all/themes/ncsulibraries/favicon.ico",
+ "name": "NCSU Libraries",
+ "triggers": [
+ "ncsulib"
+ ],
+ "regions": {
+ "default": "http://search.lib.ncsu.edu/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ndtv.com/images/icons/ndtv.ico",
+ "name": "NDTV",
+ "triggers": [
+ "ndtv"
+ ],
+ "regions": {
+ "default": "http://ndtv.com/topic/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://recherche.nebis.ch/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=NEBIS&frbg=&vl%28freeText0%29=gighidilihgc",
+ "name": "NEBIS",
+ "triggers": [
+ "nebis"
+ ],
+ "regions": {
+ "default": "http://recherche.nebis.ch/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=NEBIS&frbg=&vl%28freeText0%29={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/necyklopedie/images/6/64/Favicon.ico/revision/latest?cb=20081223164507",
+ "name": "Necyklopedie CZ",
+ "triggers": [
+ "necy"
+ ],
+ "regions": {
+ "default": "http://necyklopedie.wikia.com/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.npo.nl/favicon-16x16.png",
+ "name": "Nederlandse Publieke Omroep",
+ "triggers": [
+ "npo",
+ "uzg"
+ ],
+ "regions": {
+ "default": "https://www.npo.nl/zoeken?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wetten.overheid.nl/App_Themes/Algemeen/images/favicon.ico",
+ "name": "Nederlandse wet- en regelgeving",
+ "triggers": [
+ "wetten"
+ ],
+ "regions": {
+ "default": "http://wetten.overheid.nl/zoeken/rs/2,3,4/titel/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://nedir-sozluk.com/imgs/icons/favicon-16x16.png",
+ "name": "Nedir Sözlük",
+ "triggers": [
+ "nedir",
+ "anlamı"
+ ],
+ "regions": {
+ "default": "http://nedir-sozluk.com/ara/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/nfs/images/6/64/Favicon.ico/revision/latest?cb=20171112222340&path-prefix=en",
+ "name": "Need for Speed Wiki",
+ "triggers": [
+ "nfsw"
+ ],
+ "regions": {
+ "default": "http://nfs.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nefasto.cl/favicon.ico",
+ "name": "Nefasto.cl",
+ "triggers": [
+ "nefasto"
+ ],
+ "regions": {
+ "default": "http://nefasto.cl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://neocities.org/favicon.ico?v=4",
+ "name": "Neocities",
+ "triggers": [
+ "Neo"
+ ],
+ "regions": {
+ "default": "https://neocities.org/browse?tag={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.neowin.net/images/orion/icons/favicon-196x196.png",
+ "name": "Neowin",
+ "triggers": [
+ "neowin"
+ ],
+ "regions": {
+ "default": "https://www.neowin.net/search/news?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nerdstore.com.br/arquivos/favicon.png?v=635470022087300000",
+ "name": "Nerd Store",
+ "triggers": [
+ "nerdstore"
+ ],
+ "regions": {
+ "default": "http://www.nerdstore.com.br/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nerdscoop.com/favicon.ico",
+ "name": "Nerdscoop",
+ "triggers": [
+ "nerdscoop"
+ ],
+ "regions": {
+ "default": "http://www.nerdscoop.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nerdwallet.com/cdn/favicon.ico",
+ "name": "NerdWallet",
+ "triggers": [
+ "nerdwallet"
+ ],
+ "regions": {
+ "default": "http://www.nerdwallet.com/search/results#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.nesdev.com/favicon.ico",
+ "name": "NESDev Wiki",
+ "triggers": [
+ "nesdev"
+ ],
+ "regions": {
+ "default": "http://wiki.nesdev.com/w/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=1"
+ }
+ },
+ {
+ "favicon": "http://www.nestoria.de/favicon.ico",
+ "name": "Nestoria Deutschland",
+ "triggers": [
+ "nestde"
+ ],
+ "regions": {
+ "default": "http://www.nestoria.de/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nestoria.co.uk/favicon.ico",
+ "name": "Nestoria UK",
+ "triggers": [
+ "nestuk"
+ ],
+ "regions": {
+ "default": "http://www.nestoria.co.uk/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://man.netbsd.org/NetBSD.ico",
+ "name": "NetBSD Manual Pages",
+ "triggers": [
+ "netbsdman"
+ ],
+ "regions": {
+ "default": "http://man.netbsd.org/man/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://netbsd.gw.com/favicon.ico",
+ "name": "NetBSD manual pages",
+ "triggers": [
+ "nbsdman"
+ ],
+ "regions": {
+ "default": "http://netbsd.gw.com/cgi-bin/man-cgi?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.netcarshow.com/favicon.ico",
+ "name": "NetCarShow",
+ "triggers": [
+ "ncs"
+ ],
+ "regions": {
+ "default": "http://www.netcarshow.com/search.htm?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.netcarshow.com/favicon.ico",
+ "name": "NetCarShow",
+ "triggers": [
+ "netcarshow"
+ ],
+ "regions": {
+ "default": "https://www.netcarshow.com/search.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://toolbar.netcraft.com/favicon.ico",
+ "name": "Netcraft",
+ "triggers": [
+ "netcraft"
+ ],
+ "regions": {
+ "default": "http://toolbar.netcraft.com/site_report?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.nflxext.com/us/ffe/siteui/common/icons/nficon2016.ico",
+ "name": "Netflix",
+ "triggers": [
+ "netflix",
+ "nf"
+ ],
+ "regions": {
+ "default": "https://www.netflix.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.nflxext.com/us/dvd/dexter/favicons/favicon.ico",
+ "name": "Netflix DVD",
+ "triggers": [
+ "netflixdvd"
+ ],
+ "regions": {
+ "default": "https://dvd.netflix.com/Search?v1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://netgear.com/favicon.ico",
+ "name": "Netgear",
+ "triggers": [
+ "netgear"
+ ],
+ "regions": {
+ "default": "https://netgear.com/Search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nethackwiki.com/mediawiki/images/6/64/Favicon.ico",
+ "name": "NetHack Wiki",
+ "triggers": [
+ "nethack"
+ ],
+ "regions": {
+ "default": "http://nethackwiki.com/mediawiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://nethackwiki.com/mediawiki/images/6/64/Favicon.ico",
+ "name": "Nethack Wiki",
+ "triggers": [
+ "nhw"
+ ],
+ "regions": {
+ "default": "https://nethackwiki.com/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.neti.ee/favicon.ico",
+ "name": "NETI",
+ "triggers": [
+ "neti"
+ ],
+ "regions": {
+ "default": "http://www.neti.ee/cgi-bin/otsing?src=web&query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.netlib.org/favicon.ico",
+ "name": "Netlib",
+ "triggers": [
+ "lapack"
+ ],
+ "regions": {
+ "default": "http://www.netlib.org/lapack/complex16/{{{term}}}.f"
+ }
+ },
+ {
+ "favicon": "http://www.netlingo.com/favicon.ico",
+ "name": "NetLingo",
+ "triggers": [
+ "lingo",
+ "netlingo"
+ ],
+ "regions": {
+ "default": "http://www.netlingo.com/search.php?searchtxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.netonnet.no/favicon.ico",
+ "name": "NetOnNet",
+ "triggers": [
+ "netonnet"
+ ],
+ "regions": {
+ "default": "https://www.netonnet.no/Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.netophonix.com/favicon.ico",
+ "name": "Netophonix",
+ "triggers": [
+ "neto"
+ ],
+ "regions": {
+ "default": "http://wiki.netophonix.com/Sp%C3%A9cial:Recherche?search={{{term}}}&go=Lire+la+page"
+ }
+ },
+ {
+ "favicon": "http://netrunnerdb.com/icon.png",
+ "name": "NetrunnerDB",
+ "triggers": [
+ "nrdb",
+ "netrunner"
+ ],
+ "regions": {
+ "default": "http://netrunnerdb.com/find/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://script.nettix.fi/extra/common_image_new/mobile/nf_faviconNL.ico",
+ "name": "NettiMarkkina",
+ "triggers": [
+ "nettimarkkina"
+ ],
+ "regions": {
+ "default": "https://www.nettimarkkina.com/haku?tag_cld=Y&site=A&status_typeF=F&status_typeR=R&status_typeP=P&search_keyword[]={{{term}}}&"
+ }
+ },
+ {
+ "favicon": "https://static.tutsplus.com/assets/favicon-b490c89e0c7d5748dbde558df6385abb.png",
+ "name": "Nettuts+",
+ "triggers": [
+ "nettuts"
+ ],
+ "regions": {
+ "default": "http://net.tutsplus.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://network-tools.com/favicon.ico",
+ "name": "Network-Tools.com",
+ "triggers": [
+ "traceroute"
+ ],
+ "regions": {
+ "default": "https://network-tools.com/default.asp?prog=trace&host={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://networkpeople.nl/wp-content/uploads/2016/10/square57.png",
+ "name": "NetworkPeople",
+ "triggers": [
+ "netwerk",
+ "networkpeople"
+ ],
+ "regions": {
+ "default": "http://networkpeople.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://networkx.lanl.gov/favicon.ico",
+ "name": "networkx",
+ "triggers": [
+ "networkx",
+ "nx"
+ ],
+ "regions": {
+ "default": "http://networkx.lanl.gov/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://netzpolitik.org/favicon.ico",
+ "name": "Netzpolitik.org",
+ "triggers": [
+ "netzpolitik"
+ ],
+ "regions": {
+ "default": "https://netzpolitik.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.static-nzz.ch/nzz-niobe/assets/i/favicons/favicon-32x32.png",
+ "name": "Neue Zürcher Zeitung",
+ "triggers": [
+ "nzz"
+ ],
+ "regions": {
+ "default": "https://www.nzz.ch/suche?form%5Bq%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://newalbumreleases.net/favicon.ico",
+ "name": "New Album Releases",
+ "triggers": [
+ "newalbumreleases",
+ "nar"
+ ],
+ "regions": {
+ "default": "http://newalbumreleases.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.biblegateway.com/favicon.ico",
+ "name": "New American Standard Bible",
+ "triggers": [
+ "nasb"
+ ],
+ "regions": {
+ "default": "https://www.biblegateway.com/quicksearch/?quicksearch={{{term}}}&qs_version=NASB"
+ }
+ },
+ {
+ "favicon": "https://www.neb.com/Content/img/favicon.ico",
+ "name": "New England BioLabs",
+ "triggers": [
+ "neb"
+ ],
+ "regions": {
+ "default": "https://www.neb.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nejm.org/favicon.ico",
+ "name": "New England Journal Of Medicine",
+ "triggers": [
+ "nejm"
+ ],
+ "regions": {
+ "default": "http://www.nejm.org/search?q={{{term}}}&asug="
+ }
+ },
+ {
+ "favicon": "https://nhs-static.secure.footprint.net//globalresources14/default/images/favicon.ico",
+ "name": "New Home Source",
+ "triggers": [
+ "newhomes"
+ ],
+ "regions": {
+ "default": "https://www.newhomesource.com/locationhandler?searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://browse.nypl.org:443/iii/encore/resources/gold/images/favicon.ico",
+ "name": "New York Public Library",
+ "triggers": [
+ "nypl"
+ ],
+ "regions": {
+ "default": "https://browse.nypl.org/iii/encore/search/C__S{{{term}}}__Orightresult__U?lang=eng"
+ }
+ },
+ {
+ "favicon": "http://cooking.nytimes.com/favicon.ico",
+ "name": "New York Times Cooking",
+ "triggers": [
+ "nytc"
+ ],
+ "regions": {
+ "default": "http://cooking.nytimes.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nzlc.natlib.govt.nz/assets/favicon-7a23221897e0df2930a03c63730710c9.ico",
+ "name": "New Zealand Libraries' Catalogue",
+ "triggers": [
+ "nzlibraries"
+ ],
+ "regions": {
+ "default": "http://nzlc.natlib.govt.nz/cgi-bin/Pwebrecon.cgi?DB=local&Search_Arg={{{term}}}&SL=None&Search_Code=GKEY^*&CNT=25&HIST=1"
+ }
+ },
+ {
+ "favicon": "//c1.neweggimages.com/WebResource/Themes/2005/Nest/Newegg.ico",
+ "name": "Newegg",
+ "triggers": [
+ "ne",
+ "newegg"
+ ],
+ "regions": {
+ "default": "https://www.newegg.com/Product/ProductList.aspx?Submit=ENE&DEPA=0&Description={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//c1.neweggimages.com/WebResource/Themes/2005/Nest/Newegg.ico",
+ "name": "Newegg Canada",
+ "triggers": [
+ "neweggca"
+ ],
+ "regions": {
+ "default": "https://www.newegg.ca/Product/ProductList.aspx?Submit=ENE&DEPA=0&Order=BESTMATCH&Description={{{term}}}&N=-1&isNodeId=1"
+ }
+ },
+ {
+ "favicon": "//c1.neweggimages.com/WebResource/Themes/2005/Nest/Newegg.ico",
+ "name": "Newegg Canada",
+ "triggers": [
+ "neca"
+ ],
+ "regions": {
+ "default": "http://www.newegg.ca/Product/ProductList.aspx?Submit=ENE&DEPA=0&Order=BESTMATCH&Description={{{term}}}&N=-1&isNodeId=1"
+ }
+ },
+ {
+ "favicon": "http://newffr.com/favicon.ico",
+ "name": "NewFFR",
+ "triggers": [
+ "newffr"
+ ],
+ "regions": {
+ "default": "http://newffr.com/search.php?words={{{term}}}&mode=1&s_in_forum=1"
+ }
+ },
+ {
+ "favicon": "https://www.newgrounds.com/favicon.ico",
+ "name": "Newgrounds",
+ "triggers": [
+ "newgrounds"
+ ],
+ "regions": {
+ "default": "https://www.newgrounds.com/portal/search/title/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.newgrounds.com/favicon.ico",
+ "name": "Newgrounds Games",
+ "triggers": [
+ "ngg"
+ ],
+ "regions": {
+ "default": "https://www.newgrounds.com/portal/search/games/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.newhome.se/images/favicon-16x16.png",
+ "name": "NewHome.se",
+ "triggers": [
+ "newhome"
+ ],
+ "regions": {
+ "default": "http://www.newhome.se/index.php?route=product/search&filter_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.newport.com/_ui/desktop/theme-green/images/favicon.ico",
+ "name": "Newport",
+ "triggers": [
+ "newport"
+ ],
+ "regions": {
+ "default": "http://search.newport.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.wp.com/wp-content/themes/vip/newscorpau-nca/assets/dist/img/common/favicon/favicon.ico",
+ "name": "News.com.au",
+ "triggers": [
+ "newscomau"
+ ],
+ "regions": {
+ "default": "http://search.news.com.au/search?us=ndmnews&as=NEWS&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.news24.com/favicon.ico",
+ "name": "News24",
+ "triggers": [
+ "n24"
+ ],
+ "regions": {
+ "default": "http://www.news24.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.newsday.com/img/newsday/favicon.ico",
+ "name": "NewsDay.com",
+ "triggers": [
+ "newsday"
+ ],
+ "regions": {
+ "default": "https://www.newsday.com/7.25434?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://60087d7c26b56f5fda6854fc441d5101.static.newsela.com/images/icons/favicon.ico",
+ "name": "Newsela",
+ "triggers": [
+ "newsela"
+ ],
+ "regions": {
+ "default": "https://newsela.com/search/#/?needle={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://us.newshub.org/images/favicon.ico",
+ "name": "NewsHub",
+ "triggers": [
+ "newsh"
+ ],
+ "regions": {
+ "default": "http://us.newshub.org/search/{{{term}}}/us/all/p1"
+ }
+ },
+ {
+ "favicon": "http://s2.newsnow.net/ico/nn.ico?v=201612141100",
+ "name": "NewsNow",
+ "triggers": [
+ "newsnow"
+ ],
+ "regions": {
+ "default": "http://www.newsnow.co.uk/h/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//download.newstapa.org/common/favicon-newsapa.org.ico",
+ "name": "Newstapa",
+ "triggers": [
+ "newstapa"
+ ],
+ "regions": {
+ "default": "http://newstapa.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nodeassets.nbcnews.com/cdnassets/projects/socialshareimages-bento/favicon.ico",
+ "name": "Newsvine",
+ "triggers": [
+ "newsvine"
+ ],
+ "regions": {
+ "default": "https://www.newsvine.com/_vine/search?q={{{term}}}&sa=Search&cx=012943277593349087480%3Axx9wfuef0se&cof=FORID%3A11&searchIn=x#1062"
+ }
+ },
+ {
+ "favicon": "https://www.thedailybeast.com/static/images/favicon.3b3165d8.ico?v=1",
+ "name": "Newsweek",
+ "triggers": [
+ "newsweek"
+ ],
+ "regions": {
+ "default": "http://www.thedailybeast.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://newzleech.com/favicon.ico",
+ "name": "Newzleech",
+ "triggers": [
+ "nzl"
+ ],
+ "regions": {
+ "default": "http://newzleech.com/?group=&min=Size+%28Min%29&max=Size+%28Max%29&poster=Poster&q={{{term}}}&m=search&adv="
+ }
+ },
+ {
+ "favicon": "http://www.nexpresslibrary.org/wp-content/uploads/favicon.ico",
+ "name": "NExpress Catalog",
+ "triggers": [
+ "nexpress"
+ ],
+ "regions": {
+ "default": "https://catalog.nexpresslibrary.org/cgi-bin/koha/opac-search.pl?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.nextinpact.com/Images/favicon.ico",
+ "name": "Next INpact",
+ "triggers": [
+ "nxi"
+ ],
+ "regions": {
+ "default": "http://www.nextinpact.com/recherche?_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.next-episode.net/favicon.ico",
+ "name": "Next-Episode.net",
+ "triggers": [
+ "next"
+ ],
+ "regions": {
+ "default": "http://next-episode.net/site-search-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.imagely.com/wp-content/uploads/2016/02/cropped-favicon-circle-250x250.png",
+ "name": "NextGEN Gallery",
+ "triggers": [
+ "nextgengallery"
+ ],
+ "regions": {
+ "default": "http://www.nextgen-gallery.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Nexus Mods",
+ "triggers": [
+ "nm"
+ ],
+ "regions": {
+ "default": "https://www.nexusmods.com/games/mods/searchresults/?quicksrc_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.neyzen.com/favicon.ico",
+ "name": "Neyzen.com",
+ "triggers": [
+ "neyzen"
+ ],
+ "regions": {
+ "default": "http://www.neyzen.com/aramasonuc.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.nfl.com/favicon.ico",
+ "name": "NFL.com",
+ "triggers": [
+ "nfl"
+ ],
+ "regions": {
+ "default": "http://search.nfl.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-1.wp.nginx.com/wp-content/themes/nginx-theme/assets/img/nginx-favicon.png",
+ "name": "nginx wiki",
+ "triggers": [
+ "nginxwiki"
+ ],
+ "regions": {
+ "default": "https://www.nginx.com/resources/wiki/?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://cdn-1.wp.nginx.com/wp-content/themes/nginx-theme/assets/img/nginx-favicon.png",
+ "name": "Nginx wiki",
+ "triggers": [
+ "nginx"
+ ],
+ "regions": {
+ "default": "https://www.nginx.com/resources/wiki/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.bibleserver.com/favicon.ico",
+ "name": "NGÜ auf Bibleserver",
+ "triggers": [
+ "ngü"
+ ],
+ "regions": {
+ "default": "http://www.bibleserver.com/search/NG%C3%9C/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cgi2.nhk.or.jp/favicon.ico",
+ "name": "NHK News Web",
+ "triggers": [
+ "nhk"
+ ],
+ "regions": {
+ "default": "http://cgi2.nhk.or.jp/news/nsearch/query.cgi?col=news&st=1&rf=1&charset=utf-8&qt={{{term}}}&search.x=-318&search.y=-183"
+ }
+ },
+ {
+ "favicon": "//www-league.nhlstatic.com/nhl.com/builds/site-core/1a1429171ae76810964a29dde00cf9d3f015af7c_1530561314/images/favicon.ico",
+ "name": "NHL.com",
+ "triggers": [
+ "nhl"
+ ],
+ "regions": {
+ "default": "http://www.nhl.com/ice/search.htm?tab=news&q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.nhs.uk/favicon.ico",
+ "name": "NHS Choices",
+ "triggers": [
+ "nhs"
+ ],
+ "regions": {
+ "default": "http://www.nhs.uk/Search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nibl.co.uk/favicon.ico",
+ "name": "nibl - bots",
+ "triggers": [
+ "nibl"
+ ],
+ "regions": {
+ "default": "http://nibl.co.uk/bots.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nicegear.co.nz/favicon.ico",
+ "name": "nicegear",
+ "triggers": [
+ "nicegear"
+ ],
+ "regions": {
+ "default": "http://nicegear.co.nz/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nicovideo.cdn.nimg.jp/uni/img/favicon.ico",
+ "name": "Nico Nico Douga",
+ "triggers": [
+ "nico",
+ "nnd"
+ ],
+ "regions": {
+ "default": "http://www.nicovideo.jp/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.niconico.sarashi.com/favicon.ico",
+ "name": "niconico douga bypass",
+ "triggers": [
+ "douga"
+ ],
+ "regions": {
+ "default": "http://en.niconico.sarashi.com/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nicovideo.cdn.nimg.jp/uni/img/favicon.ico",
+ "name": "Nicovideo jp",
+ "triggers": [
+ "ncvi"
+ ],
+ "regions": {
+ "default": "http://www.nicovideo.jp/search/{{{term}}}?track=nicouni_search_keyword"
+ }
+ },
+ {
+ "favicon": "//niebezpiecznik.pl/favicon.ico",
+ "name": "Niebezpiecznik",
+ "triggers": [
+ "niebezpiecznik"
+ ],
+ "regions": {
+ "default": "https://niebezpiecznik.pl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nihongodict.com/img/favicon.png",
+ "name": "NihongoDict",
+ "triggers": [
+ "nihongodict"
+ ],
+ "regions": {
+ "default": "http://www.nihongodict.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://niice.co/favicon-16x16.png",
+ "name": "Niice.",
+ "triggers": [
+ "1",
+ "niice"
+ ],
+ "regions": {
+ "default": "http://niice.co/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kifu.gov.hu/sites/default/files/favicon%2032x32.png",
+ "name": "NIIF Institute",
+ "triggers": [
+ "niif"
+ ],
+ "regions": {
+ "default": "https://www.niif.hu/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nikonusa.com/favicon.ico",
+ "name": "Nikon USA",
+ "triggers": [
+ "nikon"
+ ],
+ "regions": {
+ "default": "http://www.nikonusa.com/en/about-nikon/search.page?searchCollection=SEARCH_ALL&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nildeal.com/favicon.ico",
+ "name": "NilDeal",
+ "triggers": [
+ "nildeal",
+ "nd"
+ ],
+ "regions": {
+ "default": "http://nildeal.com/index.php?route=product/search&filter_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.intercomassets.com/assets/educate/educate-favicon-64x64-at-2x-52016a3500a250d0b118c0a04ddd13b1a7364a27759483536dd1940bccdefc20.png",
+ "name": "Nimvelo",
+ "triggers": [
+ "nimvelo"
+ ],
+ "regions": {
+ "default": "http://kb.nimvelo.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ninwiki.com/favicon.ico",
+ "name": "Nine Inch Nails Wiki",
+ "triggers": [
+ "nin"
+ ],
+ "regions": {
+ "default": "http://www.ninwiki.com/index.php?title=Special:Search&redirs=0&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://ninjawords.com/images/favicon.ico",
+ "name": "Ninja Words",
+ "triggers": [
+ "nw",
+ "ninja"
+ ],
+ "regions": {
+ "default": "http://ninjawords.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nintendo.com/favicon.ico",
+ "name": "Nintendo",
+ "triggers": [
+ "nintendo"
+ ],
+ "regions": {
+ "default": "https://www.nintendo.com/search/#/results/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.nintendolife.com/favicon.ico",
+ "name": "Nintendo Life",
+ "triggers": [
+ "nintendolife"
+ ],
+ "regions": {
+ "default": "http://www.nintendolife.com/search?query={{{term}}}&submit=Go"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/nintendo/images/6/64/Favicon.ico/revision/latest?cb=20180120170521&path-prefix=en",
+ "name": "Nintendo Wiki",
+ "triggers": [
+ "nintendowiki"
+ ],
+ "regions": {
+ "default": "http://nintendo.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eirikb.github.io/favicon.ico",
+ "name": "Nipster!",
+ "triggers": [
+ "nipster"
+ ],
+ "regions": {
+ "default": "https://eirikb.github.io/nipster/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dlmf.nist.gov/search/style/DLMF-16.png",
+ "name": "NIST Digital Library of Mathematical Functions",
+ "triggers": [
+ "dlmf"
+ ],
+ "regions": {
+ "default": "http://dlmf.nist.gov/search/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nitrc.org/favicon.ico",
+ "name": "NITRC",
+ "triggers": [
+ "nitrc"
+ ],
+ "regions": {
+ "default": "http://www.nitrc.org/search/?type_of_search=group&term[]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn.nitrome.com/favicon.ico",
+ "name": "Nitrome",
+ "triggers": [
+ "nitrome"
+ ],
+ "regions": {
+ "default": "http://www.nitrome.com/search.php?id={{{term}}}&search_type=default"
+ }
+ },
+ {
+ "favicon": "http://nitroroms.com/favicon.ico",
+ "name": "Nitroroms",
+ "triggers": [
+ "nroms"
+ ],
+ "regions": {
+ "default": "http://nitroroms.com/search/All/{{{term}}}/page-1"
+ }
+ },
+ {
+ "favicon": "https://www.cyberciti.biz/cms/wp-content/themes/cybercity/assets/images/icon/favicon-16x16.png",
+ "name": "Nix Craft",
+ "triggers": [
+ "nixcraft"
+ ],
+ "regions": {
+ "default": "http://www.cyberciti.biz/faq/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nixos.org/favicon.png",
+ "name": "NixOS Wiki",
+ "triggers": [
+ "nixos",
+ "nixoswiki"
+ ],
+ "regions": {
+ "default": "https://nixos.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nisanyansozluk.com/images/favicon.ico",
+ "name": "Nişanyan Etimolojik Sözlük",
+ "triggers": [
+ "nisanyan"
+ ],
+ "regions": {
+ "default": "http://www.nisanyansozluk.com/?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.njuskalo.hr/_cache/9dd851367c.ico",
+ "name": "Njuškalo",
+ "triggers": [
+ "njuskalo"
+ ],
+ "regions": {
+ "default": "http://www.njuskalo.hr/?ctl=search_ads&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ncatlab.org/favicon.ico",
+ "name": "nLab",
+ "triggers": [
+ "ncatlab"
+ ],
+ "regions": {
+ "default": "https://ncatlab.org/nlab/show/HomePage/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nlab.mathforge.org/favicon.ico",
+ "name": "nLab",
+ "triggers": [
+ "nlab"
+ ],
+ "regions": {
+ "default": "http://nlab.mathforge.org/nlab/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nmac.to/wp-content/uploads/2016/01/nmac_fav.png",
+ "name": "nmac",
+ "triggers": [
+ "nmac"
+ ],
+ "regions": {
+ "default": "http://nmac.to/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.nndb.com/favicon.ico",
+ "name": "NNDB",
+ "triggers": [
+ "nndb"
+ ],
+ "regions": {
+ "default": "http://search.nndb.com/search/nndb.cgi?nndb=1&omenu=unspecified&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nodejs.org/static/favicon.png",
+ "name": "node.js docs",
+ "triggers": [
+ "node"
+ ],
+ "regions": {
+ "default": "https://nodejs.org/api/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://nolife-wiki.fr/favicon.ico",
+ "name": "Nolife-Wiki",
+ "triggers": [
+ "nlw"
+ ],
+ "regions": {
+ "default": "http://nolife-wiki.fr/index.php?title=Spécial%3ARecherche&go=Lire&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nolo.com/themes/hubv6_nolo/favicon/favicon.ico?v=1.0.0",
+ "name": "Nolo.com",
+ "triggers": [
+ "nolo"
+ ],
+ "regions": {
+ "default": "http://www.nolo.com/info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.riziv.fgov.be/_layouts/images/RIZIV-INAMI/favicon.ico",
+ "name": "Nomensoft",
+ "triggers": [
+ "riziv"
+ ],
+ "regions": {
+ "default": "https://www.riziv.fgov.be/webprd/appl/pnomen/DetailNomen.aspx?lg=N&id={{{term}}}#top"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/nonciclopedia/images/6/64/Favicon.ico/revision/latest?cb=20090401231857",
+ "name": "Nonciclopedia",
+ "triggers": [
+ "nonciclopedia"
+ ],
+ "regions": {
+ "default": "http://nonciclopedia.wikia.com/index.php?title=Speciale%3ARicerca&search={{{term}}}&go=Vai"
+ }
+ },
+ {
+ "favicon": "https://cdn.noodle.com/static/img/favicon-16x16.58e054a3822f.png",
+ "name": "Noodle",
+ "triggers": [
+ "noodle"
+ ],
+ "regions": {
+ "default": "http://www.noodle.com/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nookipedia.com/favicon.ico",
+ "name": "Nookipedia",
+ "triggers": [
+ "nook"
+ ],
+ "regions": {
+ "default": "https://nookipedia.com/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/1029/2279/t/7/assets/favicon.png?2510887665787293205",
+ "name": "NoraJanine.com",
+ "triggers": [
+ "norajanine.com"
+ ],
+ "regions": {
+ "default": "http://norajanine.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.ndr.de/favicon-16x16.png",
+ "name": "Norddeutscher Rundfunk",
+ "triggers": [
+ "ndr"
+ ],
+ "regions": {
+ "default": "https://www.ndr.de/suche10.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nordkurier.de/sites/default/files/favicon_1.ico",
+ "name": "Nordkurier",
+ "triggers": [
+ "nkurier"
+ ],
+ "regions": {
+ "default": "https://www.nordkurier.de/suche?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//n.nordstrommedia.com/id/64d55b9a-e509-4f4a-ab29-fc97a0a9202e.png?w=96&amp;h=96",
+ "name": "Nordstrom",
+ "triggers": [
+ "nordstrom"
+ ],
+ "regions": {
+ "default": "http://shop.nordstrom.com/sr?origin=keywordsearch&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.norid.no/wp-content/themes/norid/favicon.ico",
+ "name": "Norid",
+ "triggers": [
+ "norid"
+ ],
+ "regions": {
+ "default": "https://www.norid.no/index.html?charset=UTF-8&page=index&sok=Søk&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ne.ord.se/favicon.png",
+ "name": "Norstedts ordböcker",
+ "triggers": [
+ "ord"
+ ],
+ "regions": {
+ "default": "https://ne.ord.se/ordbok/svenska/engelska/s%C3%B6k/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://safeweb.norton.com/images/favicon.ico",
+ "name": "Norton Safe Web",
+ "triggers": [
+ "safeweb",
+ "nortonsafe",
+ "nortonsafeweb",
+ "nsf"
+ ],
+ "regions": {
+ "default": "https://safeweb.norton.com/report/show?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ordbok.uib.no/apple-touch-icon.png",
+ "name": "Norwegian Bokmål Dictionary",
+ "triggers": [
+ "nbd"
+ ],
+ "regions": {
+ "default": "http://ordbok.uib.no/perl/ordbok.cgi?bokmaal=1&opp={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dnt.no/static/img/favicon.ico",
+ "name": "Norwegian Trekking Association",
+ "triggers": [
+ "dnt"
+ ],
+ "regions": {
+ "default": "https://www.dnt.no/søk/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ntnu.edu/ntnu-theme/images/favicon.ico",
+ "name": "Norwegian University of Science and Technology",
+ "triggers": [
+ "ntnu"
+ ],
+ "regions": {
+ "default": "https://www.ntnu.edu/sok?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://no.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Norwegian Wikipedia",
+ "triggers": [
+ "wno"
+ ],
+ "regions": {
+ "default": "https://no.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nos.nl/favicon.ico",
+ "name": "NOS (Nederlandse Omroep Stichting)",
+ "triggers": [
+ "nos"
+ ],
+ "regions": {
+ "default": "https://nos.nl/zoeken/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://noslivres.net/favicon.ico",
+ "name": "NosLivres",
+ "triggers": [
+ "noslivres"
+ ],
+ "regions": {
+ "default": "http://noslivres.net/?r={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://notalwaysright.com/favicon_nar.png",
+ "name": "Not Always Right",
+ "triggers": [
+ "notalwaysright"
+ ],
+ "regions": {
+ "default": "https://notalwaysright.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.notdoppler.com/favicon.ico",
+ "name": "Not Doppler",
+ "triggers": [
+ "notdoppler"
+ ],
+ "regions": {
+ "default": "http://www.notdoppler.com/search.php?cx=partner-pub-5587930311934766%3A9473942733&cof=FORID%3A9&ie=UTF-8&q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "https://www.notebooksbilliger.de/favicon.ico",
+ "name": "NotebooksBillger",
+ "triggers": [
+ "nbooks"
+ ],
+ "regions": {
+ "default": "https://www.notebooksbilliger.de/produkte/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.noteflight.com/favicon.ico?v=XBr5qnywLR",
+ "name": "Noteflight",
+ "triggers": [
+ "noteflight"
+ ],
+ "regions": {
+ "default": "http://www.noteflight.com/public_scores#/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Notepad",
+ "triggers": [
+ "notepad"
+ ],
+ "regions": {
+ "default": "http://notepad.cc/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.notesinspanish.com/favicon.ico",
+ "name": "Notes in Spanish",
+ "triggers": [
+ "nis"
+ ],
+ "regions": {
+ "default": "http://www.notesinspanish.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slot1-images.wikia.nocookie.net/__cb1530526546/common/skins/common/images/favicon.ico",
+ "name": "Novai-World XL Wikia",
+ "triggers": [
+ "nwxl"
+ ],
+ "regions": {
+ "default": "http://novaiworld-xl.wikia.com/wiki/Novai-World_XL_Wikia{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s1.wp.com/i/favicon.ico",
+ "name": "Novedades Linux",
+ "triggers": [
+ "nlinux"
+ ],
+ "regions": {
+ "default": "https://novedadeslinux.wordpress.com/?s={{{term}}}&submit=Buscar"
+ }
+ },
+ {
+ "favicon": "http://www.novelupdates.com/favicon.ico",
+ "name": "Novel updates",
+ "triggers": [
+ "novelupdates",
+ "nvu"
+ ],
+ "regions": {
+ "default": "http://www.novelupdates.com/?s={{{term}}}&post_type=seriesplans"
+ }
+ },
+ {
+ "favicon": "http://www.novinky.cz/static/images/favicons/favicon.ico",
+ "name": "Novinky.cz",
+ "triggers": [
+ "novinky"
+ ],
+ "regions": {
+ "default": "http://www.novinky.cz/hledej?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.npmjs.com/da3ab40fb0861d15c83854c29f5f2962.png",
+ "name": "npm",
+ "triggers": [
+ "npm"
+ ],
+ "regions": {
+ "default": "https://www.npmjs.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://npmsearch.com/favicon.ico",
+ "name": "NPM Search",
+ "triggers": [
+ "npms"
+ ],
+ "regions": {
+ "default": "http://npmsearch.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://npms.io/favicon.ico",
+ "name": "npms",
+ "triggers": [
+ "npmsio"
+ ],
+ "regions": {
+ "default": "https://npms.io/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://npmsearch.com/favicon.ico",
+ "name": "npmsearch.com",
+ "triggers": [
+ "npmsearch"
+ ],
+ "regions": {
+ "default": "https://npmsearch.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.npr.org/templates/favicon/favicon-16x16.png",
+ "name": "NPR.org",
+ "triggers": [
+ "npr"
+ ],
+ "regions": {
+ "default": "http://www.npr.org/search/index.php?searchinput={{{term}}}&tabId=all&dateId=0&prgId=0&topicId=0"
+ }
+ },
+ {
+ "favicon": "https://www.nrc.nl/static/front/icons/favicon.ico",
+ "name": "NRC",
+ "triggers": [
+ "nrc"
+ ],
+ "regions": {
+ "default": "https://www.nrc.nl/php/zoeken.php?cx=000950122183490940160%3Afse5ljfbq2u&q={{{term}}}:&ie=anci&sa=&cof=FORID%3A9#449"
+ }
+ },
+ {
+ "favicon": "http://www.nrcnext.nl/static/front/icons/favicon.ico",
+ "name": "NRC Next",
+ "triggers": [
+ "nrcnext"
+ ],
+ "regions": {
+ "default": "http://www.nrcnext.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.nrk.no/kurator/front/favicon.ico",
+ "name": "NRK",
+ "triggers": [
+ "nrk"
+ ],
+ "regions": {
+ "default": "https://www.nrk.no/sok/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://radio.nrk.no/dist/favicons/favicon.ico",
+ "name": "NRK Radio",
+ "triggers": [
+ "nrkr"
+ ],
+ "regions": {
+ "default": "http://radio.nrk.no/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tv.nrk.no/Pakke74/3.0.629.0a/content/images/tv/favicon.ico",
+ "name": "NRK TV",
+ "triggers": [
+ "nrktv"
+ ],
+ "regions": {
+ "default": "https://tv.nrk.no/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nshipster.com/favicon-16x16.png",
+ "name": "NSHipster",
+ "triggers": [
+ "nshipster"
+ ],
+ "regions": {
+ "default": "http://nshipster.com/#stq={{{term}}}&stp=1"
+ }
+ },
+ {
+ "favicon": "http://nshipster.com/favicon-16x16.png",
+ "name": "NSHipster",
+ "triggers": [
+ "nsh"
+ ],
+ "regions": {
+ "default": "http://nshipster.com/#stq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nu.nl/static/img/atoms/images/favicon/favicon.ico",
+ "name": "Nu.nl",
+ "triggers": [
+ "nu"
+ ],
+ "regions": {
+ "default": "http://www.nu.nl/zoeken/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://nuget.org/favicon.ico",
+ "name": "nuget gallery",
+ "triggers": [
+ "nuget"
+ ],
+ "regions": {
+ "default": "https://nuget.org/packages?q={{{term}}}&sortOrder=package-download-count"
+ }
+ },
+ {
+ "favicon": "https://docs.thefoundry.co.uk/favicon.ico",
+ "name": "Nuke Dev Guide",
+ "triggers": [
+ "nukepy"
+ ],
+ "regions": {
+ "default": "https://docs.thefoundry.co.uk/products/nuke/developers/80/pythondevguide/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://img.wonderhowto.com/images/favicons/wonderhowto/favicon-16x16.png",
+ "name": "Null Byte",
+ "triggers": [
+ "nullbyte"
+ ],
+ "regions": {
+ "default": "https://null-byte.wonderhowto.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://nullege.com/favicon.ico",
+ "name": "Nullege",
+ "triggers": [
+ "nullege"
+ ],
+ "regions": {
+ "default": "http://nullege.com/codes/search?cq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.numbergossip.com/favicon.ico",
+ "name": "Number Gossip",
+ "triggers": [
+ "gossip"
+ ],
+ "regions": {
+ "default": "http://www.numbergossip.com/?number={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.numerama.com/content/uploads/2015/12/w-logo-blue.png",
+ "name": "Numerama",
+ "triggers": [
+ "numerama"
+ ],
+ "regions": {
+ "default": "http://www.numerama.com/magazine/recherche/1/{{{term}}}/date"
+ }
+ },
+ {
+ "favicon": "https://www.numeroinconnu.fr/favicon.ico",
+ "name": "numeroinconnu",
+ "triggers": [
+ "ntel"
+ ],
+ "regions": {
+ "default": "https://www.numeroinconnu.fr/numero/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.numista.com/favicon-16x16.png?v=E6vrePyX0j",
+ "name": "Numista",
+ "triggers": [
+ "numista"
+ ],
+ "regions": {
+ "default": "https://en.numista.com/catalogue/index.php?r={{{term}}}&mode=simplifie&p=1"
+ }
+ },
+ {
+ "favicon": "https://docs.scipy.org/doc/numpy/_static/favicon.ico",
+ "name": "numpy",
+ "triggers": [
+ "numpy"
+ ],
+ "regions": {
+ "default": "https://docs.scipy.org/doc/numpy/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://nusearch.nottingham.ac.uk/primo_library/libweb/action/search.do?dscnt=0&scp.scps=scope%3A%28UNUK%29%2Cscope%3A%28unuk_pda_ebl%29&frbg=&tab=default_tab&dstmp=1430162925299&srt=rank&ct=search&mode=Basic&dum=true&indx=1&tb=t&vl(freeText0)=fghebidcjd&fn=search&vid=UNUK",
+ "name": "NUsearch",
+ "triggers": [
+ "nusearch"
+ ],
+ "regions": {
+ "default": "http://nusearch.nottingham.ac.uk/primo_library/libweb/action/search.do?dscnt=0&scp.scps=scope%3A%28UNUK%29%2Cscope%3A%28unuk_pda_ebl%29&frbg=&tab=default_tab&dstmp=1430162925299&srt=rank&ct=search&mode=Basic&dum=true&indx=1&tb=t&vl(freeText0)={{{term}}}&fn=search&vid=UNUK"
+ }
+ },
+ {
+ "favicon": "http://www.ethernut.de/favicon.ico",
+ "name": "Nut/OS Wiki",
+ "triggers": [
+ "nutos"
+ ],
+ "regions": {
+ "default": "http://www.ethernut.de/srcwiki/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nutritiondata.self.com/images/favicon.ico",
+ "name": "nutritiondata",
+ "triggers": [
+ "nutridata"
+ ],
+ "regions": {
+ "default": "https://nutritiondata.self.com/foods-{{{term}}}}000000000000000000000.html"
+ }
+ },
+ {
+ "favicon": "https://nutritiondata.self.com/images/favicon.ico",
+ "name": "NutritionData",
+ "triggers": [
+ "nutritiondata"
+ ],
+ "regions": {
+ "default": "https://nutritiondata.self.com/foods-{{{term}}}000000000000000000000.html"
+ }
+ },
+ {
+ "favicon": "https://nuts.com/favicon.ico",
+ "name": "Nuts.com",
+ "triggers": [
+ "nuts.com"
+ ],
+ "regions": {
+ "default": "https://nuts.com/search/instant?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.nvidia.com/favicon.ico",
+ "name": "Nvidia",
+ "triggers": [
+ "nvidia"
+ ],
+ "regions": {
+ "default": "http://search.nvidia.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nyaa.si/static/favicon.png",
+ "name": "Nyaa.si",
+ "triggers": [
+ "nyaasi"
+ ],
+ "regions": {
+ "default": "https://nyaa.si/?f=0&c=0_0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nyan.cat/favicon.ico",
+ "name": "Nyan.cat",
+ "triggers": [
+ "nyan"
+ ],
+ "regions": {
+ "default": "http://nyan.cat/"
+ }
+ },
+ {
+ "favicon": "http://ordbok.uib.no/apple-touch-icon.png",
+ "name": "Nynorskordboka og Bokmålsordboka",
+ "triggers": [
+ "norsk"
+ ],
+ "regions": {
+ "default": "http://ordbok.uib.no/perl/ordbok.cgi?OPP={{{term}}}&ant_bokmaal=5&ant_nynorsk=5&begge=+&ordbok=begge"
+ }
+ },
+ {
+ "favicon": "https://cooking.nytimes.com/favicon.ico",
+ "name": "NYT Cooking",
+ "triggers": [
+ "cooking"
+ ],
+ "regions": {
+ "default": "https://cooking.nytimes.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nzbclub.com/favicon.ico",
+ "name": "nzbclub.com",
+ "triggers": [
+ "nzbc"
+ ],
+ "regions": {
+ "default": "http://www.nzbclub.com/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nzbindex.com/template/nzbindex/images/icon.png",
+ "name": "Nzbindex.nl",
+ "triggers": [
+ "nzbi"
+ ],
+ "regions": {
+ "default": "https://nzbindex.com/search/?q={{{term}}}&age=&max=100&minage=&sort=agedesc&minsize=&maxsize=&dq=&poster=&nfo=&hidespam=0&hidespam=1&more=0"
+ }
+ },
+ {
+ "favicon": "http://nzbndx.com/templates/default/images/favicon.ico",
+ "name": "nzbndx",
+ "triggers": [
+ "nzbndx"
+ ],
+ "regions": {
+ "default": "http://nzbndx.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.naointendo.com.br/icon-192x192.png",
+ "name": "Não Intendo",
+ "triggers": [
+ "naointendo"
+ ],
+ "regions": {
+ "default": "http://www.naointendo.com.br/blog/busca?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://statics.estadao.com.br/s2016/favicon.ico",
+ "name": "O Estado de S. Paulo",
+ "triggers": [
+ "estadao"
+ ],
+ "regions": {
+ "default": "http://www.estadao.com.br/busca/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/2034/7683/t/31/assets/favicon_32x32.png?8309697801939064768",
+ "name": "O'Neill",
+ "triggers": [
+ "oneill"
+ ],
+ "regions": {
+ "default": "http://us.oneill.com/shop/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.oreilly.com/favicon.ico",
+ "name": "O'Reilly",
+ "triggers": [
+ "oreilly"
+ ],
+ "regions": {
+ "default": "http://search.oreilly.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.overclockers.at/favicon.ico",
+ "name": "o.v.e.r.clockers.at",
+ "triggers": [
+ "ocat"
+ ],
+ "regions": {
+ "default": "https://www.overclockers.at/search.php?action=simplesearch&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.o2-graphics.fr/favicon.ico",
+ "name": "O2 Graphics",
+ "triggers": [
+ "o2g"
+ ],
+ "regions": {
+ "default": "https://www.o2-graphics.fr/search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://or.justice.cz/ias/ui/resource/images/favicon.ico",
+ "name": "Obchodní rejstřík – Ministerstvo spravedlnosti České republiky",
+ "triggers": [
+ "or"
+ ],
+ "regions": {
+ "default": "https://or.justice.cz/ias/ui/rejstrik-$firma?jenPlatne=PLATNE&nazev={{{term}}}&polozek=50&typHledani=STARTS_WITH"
+ }
+ },
+ {
+ "favicon": "https://www.obi.de/skin/b32dfab/images/logos/browser-icons/favicon.ico",
+ "name": "OBI",
+ "triggers": [
+ "obi"
+ ],
+ "regions": {
+ "default": "https://www.obi.de/decom/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Oblivion NexusMods",
+ "triggers": [
+ "onm"
+ ],
+ "regions": {
+ "default": "https://oblivion.nexusmods.com/mods/searchresults/?name={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "//observador-observadorontime.netdna-ssl.com/wp-content/themes/observador/assets_v2/build/img/global/favicon.ico",
+ "name": "observador",
+ "triggers": [
+ "observador"
+ ],
+ "regions": {
+ "default": "http://observador.pt/pesquisa/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.obspy.org/_static/favicon.ico",
+ "name": "Obspy documentation",
+ "triggers": [
+ "obspy"
+ ],
+ "regions": {
+ "default": "http://docs.obspy.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.obspy.org/master/_static/favicon.ico",
+ "name": "Obspy documentation of development version",
+ "triggers": [
+ "obspydev"
+ ],
+ "regions": {
+ "default": "http://docs.obspy.org/master/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ocado.com/webshop/static/images/7.1.3/favicon.png",
+ "name": "Ocado",
+ "triggers": [
+ "ocado"
+ ],
+ "regions": {
+ "default": "https://www.ocado.com/webshop/getSearchProducts.do?entry={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://caml.inria.fr/pub/docs/manual-ocaml/libref/styles/icons/caml.ico",
+ "name": "OCaml Lib Ref",
+ "triggers": [
+ "ocaml"
+ ],
+ "regions": {
+ "default": "http://caml.inria.fr/pub/docs/manual-ocaml/libref/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://camlspotter.github.io/favicon.ico",
+ "name": "OCamlOscope",
+ "triggers": [
+ "oco",
+ "ocamloscope"
+ ],
+ "regions": {
+ "default": "https://camlspotter.github.io/ocamloscope.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://occuprint.org/favicon.ico",
+ "name": "Occuprint",
+ "triggers": [
+ "occuprint"
+ ],
+ "regions": {
+ "default": "http://occuprint.org/?action=search&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://i1.haidii.com/favicon.ico",
+ "name": "ocean dictionary",
+ "triggers": [
+ "dicn"
+ ],
+ "regions": {
+ "default": "http://dict.cn/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.worldcat.org/favicon.ico",
+ "name": "OCLC Worldcat",
+ "triggers": [
+ "oclc"
+ ],
+ "regions": {
+ "default": "https://www.worldcat.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://n1.octostatic.com/web/cache/favicon-808dde09cc.ico",
+ "name": "Octopart",
+ "triggers": [
+ "octopart",
+ "octo"
+ ],
+ "regions": {
+ "default": "https://octopart.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.odigo.jp/favicon.png",
+ "name": "Odigo Japan Travel",
+ "triggers": [
+ "odigo"
+ ],
+ "regions": {
+ "default": "https://www.odigo.travel/search_results/spots?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//odoocdn.com/web/image/website/1/favicon/",
+ "name": "Odoo Apps",
+ "triggers": [
+ "odoo"
+ ],
+ "regions": {
+ "default": "https://www.odoo.com/apps?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://odpiralnicasi.com/images/favico/favicon-32x32.png",
+ "name": "Odpiralni časi",
+ "triggers": [
+ "odpiralni"
+ ],
+ "regions": {
+ "default": "http://odpiralnicasi.com/spots?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oed.com/assets/ctx/20180611/images/favicon.ico",
+ "name": "OED - Oxford English Dictionary",
+ "triggers": [
+ "oed"
+ ],
+ "regions": {
+ "default": "http://www.oed.com/search?searchType=dictionary&q={{{term}}}&_searchBtn=Search"
+ }
+ },
+ {
+ "favicon": "http://www.oercommons.org/static/images/favicon.ico?5ea7dcf3fcd2",
+ "name": "OER Commons",
+ "triggers": [
+ "oer"
+ ],
+ "regions": {
+ "default": "http://www.oercommons.org/search?f.search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oeticket.com/obj/media/AT-eventim/specialLogos/favicons/favicon-16x16.png",
+ "name": "oeticket",
+ "triggers": [
+ "oeticket"
+ ],
+ "regions": {
+ "default": "https://www.oeticket.com/Tickets.html?affiliate=EOE&fun=search&fuzzy=yes&doc=search&action=grouped&inline=false&suchbegriff={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ons.gov.uk/favicon.ico",
+ "name": "Office for National Statistics",
+ "triggers": [
+ "ons"
+ ],
+ "regions": {
+ "default": "http://www.ons.gov.uk/ons/search/index.html?newquery={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.office-furniture-direct.co.uk/resources/channels/officefurnituredirect/favicon.ico",
+ "name": "Office Furniture Direct",
+ "triggers": [
+ "officefurniture"
+ ],
+ "regions": {
+ "default": "https://www.office-furniture-direct.co.uk/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://officedepot.scene7.com/is/image/officedepot/od_favicon?fmt=png-alpha&wid=96",
+ "name": "OfficeDepot",
+ "triggers": [
+ "officedepot"
+ ],
+ "regions": {
+ "default": "http://www.officedepot.com/catalog/search.do?Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/ftb_gamepedia/6/64/Favicon.ico?version=dbf70b01f3a432553420042aaa273591",
+ "name": "Official Feed The Beast Wiki",
+ "triggers": [
+ "ftb"
+ ],
+ "regions": {
+ "default": "http://ftb.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pixelmonmod.com/favicon.ico",
+ "name": "Official Pixelmon Wiki",
+ "triggers": [
+ "pixel"
+ ],
+ "regions": {
+ "default": "http://pixelmonmod.com/wiki/index.php?title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/terraria_gamepedia/6/64/Favicon.ico?version=9974882dd9307ed881b2782ff587be07",
+ "name": "Official Terraria Wiki",
+ "triggers": [
+ "terraria"
+ ],
+ "regions": {
+ "default": "http://terraria.gamepedia.com/index.php?title=Special%3ASearch&profile=default&search={{{term}}} &fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://offliberty.com/favicon.ico",
+ "name": "Offliberty",
+ "triggers": [
+ "offliberty"
+ ],
+ "regions": {
+ "default": "http://offliberty.com/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.offresasaisir.fr/favicon.ico",
+ "name": "Offres à Saisir",
+ "triggers": [
+ "oas"
+ ],
+ "regions": {
+ "default": "https://www.offresasaisir.fr/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ogol.com.br/favicon.png",
+ "name": "OGol",
+ "triggers": [
+ "ogol"
+ ],
+ "regions": {
+ "default": "http://www.ogol.com.br/search.php?inputString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ohnorobot.com/favicon.ico",
+ "name": "Oh No Robot",
+ "triggers": [
+ "ohnorobot"
+ ],
+ "regions": {
+ "default": "http://ohnorobot.com/index.pl?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ohnorobot.com/favicon.ico",
+ "name": "Oh No Robot",
+ "triggers": [
+ "onr"
+ ],
+ "regions": {
+ "default": "http://www.ohnorobot.com/index.pl?s={{{term}}}&Search=Search&e=0&n=0&b=0&m=0&d=0&t=0"
+ }
+ },
+ {
+ "favicon": "http://ohinternet.com/favicon.ico",
+ "name": "ohinternet.com",
+ "triggers": [
+ "ohinternet"
+ ],
+ "regions": {
+ "default": "http://ohinternet.com/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ohloh.net/favicon.ico",
+ "name": "ohloh",
+ "triggers": [
+ "ohloh"
+ ],
+ "regions": {
+ "default": "https://www.ohloh.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rpg.hamsterrepublic.com/favicon.ico",
+ "name": "OHRRPGCE Wiki",
+ "triggers": [
+ "ohr"
+ ],
+ "regions": {
+ "default": "http://rpg.hamsterrepublic.com/ohrrpgce/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.oilandgasjobsearch.com/Public/site/ogjs/images/favicon/favicon.ico",
+ "name": "Oil and Gas Job Search",
+ "triggers": [
+ "oilandgas",
+ "ogjs"
+ ],
+ "regions": {
+ "default": "https://www.oilandgasjobsearch.com/Oil-and-Gas-Jobs/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.gavo.t.u-tokyo.ac.jp/favicon.ico",
+ "name": "OJAD - Online Japanese Accent Dictionary",
+ "triggers": [
+ "ojad"
+ ],
+ "regions": {
+ "default": "http://www.gavo.t.u-tokyo.ac.jp/ojad/search/index/word:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.okaygeek.com/favicon.ico",
+ "name": "Okay Geek",
+ "triggers": [
+ "okgeek"
+ ],
+ "regions": {
+ "default": "http://www.okaygeek.com/display/Search?searchQuery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.okazii.ro/favicon.ico",
+ "name": "Okazii",
+ "triggers": [
+ "okazii"
+ ],
+ "regions": {
+ "default": "http://www.okazii.ro/cautare/{{{term}}}.html?autoc=write"
+ }
+ },
+ {
+ "favicon": "https://cdn.okccdn.com/media/img/template/favicon.ico",
+ "name": "OKCupid",
+ "triggers": [
+ "okc"
+ ],
+ "regions": {
+ "default": "https://okcupid.com/profile/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.okidoki.ee/favicon.ico",
+ "name": "okidoki kuulutused",
+ "triggers": [
+ "okidoki"
+ ],
+ "regions": {
+ "default": "http://www.okidoki.ee/buy/all/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oktopus.cloud/storage/icons/favicon-128.png",
+ "name": "Oktopus Cloud",
+ "triggers": [
+ "oktopus"
+ ],
+ "regions": {
+ "default": "https://oktopus.cloud/search?searchword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://olam.in/favicon.ico",
+ "name": "Olam",
+ "triggers": [
+ "olam"
+ ],
+ "regions": {
+ "default": "http://olam.in/Dictionary/en_ml/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.perseus.tufts.edu/favicon.ico",
+ "name": "Old Norse dictionary",
+ "triggers": [
+ "onorsk"
+ ],
+ "regions": {
+ "default": "http://www.perseus.tufts.edu/hopper/morph?l={{{term}}}&la=non"
+ }
+ },
+ {
+ "favicon": "http://www.oldapps.com/favicon.ico",
+ "name": "OldApps.com",
+ "triggers": [
+ "oldapps"
+ ],
+ "regions": {
+ "default": "http://www.oldapps.com/betasearch.php?cx=007779823686351122034%3Ai7o_lb6edjm&cof=FORID%3A9&ie=UTF-8&q={{{term}}}&siteurl="
+ }
+ },
+ {
+ "favicon": "http://oldpiratebay.org/favicon.ico",
+ "name": "OldPiratebay.org",
+ "triggers": [
+ "opb"
+ ],
+ "regions": {
+ "default": "http://oldpiratebay.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oldversion.com/favicon.ico",
+ "name": "OldVersion.com",
+ "triggers": [
+ "oldv"
+ ],
+ "regions": {
+ "default": "http://www.oldversion.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.olgomotors.co.nz/favicon.ico",
+ "name": "olGo Motors",
+ "triggers": [
+ "olgo"
+ ],
+ "regions": {
+ "default": "http://www.olgomotors.co.nz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://oliverse.ch/favicon-16x16.png?ab345",
+ "name": "Oliverse",
+ "triggers": [
+ "oliverse"
+ ],
+ "regions": {
+ "default": "https://oliverse.ch/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static01.olx-st.com/mobile-webapp/images/common/favicon.png",
+ "name": "OLX Argentina",
+ "triggers": [
+ "olxar"
+ ],
+ "regions": {
+ "default": "http://www.olx.com.ar/nf/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-olxeu.akamaized.net/static/olxpl/naspersclassifieds-regional/olxeu-atlas-web-olxpl/static/img/favicon.ico?v=4",
+ "name": "OLX Poland",
+ "triggers": [
+ "olx"
+ ],
+ "regions": {
+ "default": "https://www.olx.pl/oferty/q- {{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://static-olxeu.akamaized.net/static/olxpl/naspersclassifieds-regional/olxeu-atlas-web-olxpl/static/img/favicon.ico?v=4",
+ "name": "OLX Polska",
+ "triggers": [
+ "olxpoland",
+ "olxpl"
+ ],
+ "regions": {
+ "default": "http://olx.pl/oferty/q-{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://static-olxeu.akamaized.net/static/olxpt/naspersclassifieds-regional/olxeu-atlas-web-olxpt/static/img/favicon.ico?v=4",
+ "name": "OLX Portugal",
+ "triggers": [
+ "olxpt"
+ ],
+ "regions": {
+ "default": "https://www.olx.pt/ads/q-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-olxeu.akamaized.net/static/olxro/naspersclassifieds-regional/olxeu-atlas-web-olxro/static/img/favicon.ico?v=4",
+ "name": "OLX Romania",
+ "triggers": [
+ "olxro"
+ ],
+ "regions": {
+ "default": "https://www.olx.ro/ads/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-olxeu.akamaized.net/static/olxua/naspersclassifieds-regional/olxeu-atlas-web-olxua/static/img/favicon.ico?v=4",
+ "name": "OLX Ukraine",
+ "triggers": [
+ "olxua"
+ ],
+ "regions": {
+ "default": "http://olx.ua/uk/list/q-{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://static.olx.biz.id/external/olxid/img/favicon.ico?v=3",
+ "name": "OLX.co.id (Tokobagus)",
+ "triggers": [
+ "tb",
+ "tokobagus"
+ ],
+ "regions": {
+ "default": "http://www.olx.co.id/halaman/mencari/{{{term}}}/search"
+ }
+ },
+ {
+ "favicon": "http://buscador.ole.com.ar/favicon.ico",
+ "name": "Olé",
+ "triggers": [
+ "ole"
+ ],
+ "regions": {
+ "default": "http://buscador.ole.com.ar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.omegawiki.org/favicon.ico",
+ "name": "OmegaWiki",
+ "triggers": [
+ "omegawiki"
+ ],
+ "regions": {
+ "default": "http://www.omegawiki.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.ome.lt/static/omelete/img/favicon.png",
+ "name": "omelete",
+ "triggers": [
+ "omelete"
+ ],
+ "regions": {
+ "default": "https://omelete.uol.com.br/busca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d0od-wpengine.netdna-ssl.com/wp-content/themes/omgunified/images/favicon.ico",
+ "name": "OMG! Chrome!",
+ "triggers": [
+ "omgchrome",
+ "omgc"
+ ],
+ "regions": {
+ "default": "http://www.omgchrome.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.omgubuntu.co.uk/wp-content/uploads/2012/07/omg-ubuntu-logo-300x300.jpg",
+ "name": "OMG! Ubuntu!",
+ "triggers": [
+ "omg"
+ ],
+ "regions": {
+ "default": "http://www.omgubuntu.co.uk/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.omgubuntu.co.uk/wp-content/uploads/2012/07/omg-ubuntu-logo-300x300.jpg",
+ "name": "OMG! Ubuntu!",
+ "triggers": [
+ "omgubuntu",
+ "omgu"
+ ],
+ "regions": {
+ "default": "http://www.omgubuntu.co.uk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://omim.org/static/favicon.ico",
+ "name": "OMIM Search",
+ "triggers": [
+ "omim"
+ ],
+ "regions": {
+ "default": "https://omim.org/search?index=entry&sort=score+desc%2C+prefix_sort+desc&start=1&limit=10&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://omni.se/omni/img/favicon.ico",
+ "name": "Omni",
+ "triggers": [
+ "omni"
+ ],
+ "regions": {
+ "default": "http://omni.se/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://theomx.com/assets/favicon-0be09959dd4aa82d6332c3234bc7da26a96df1d02c3180915305d12635d38bae.ico",
+ "name": "OMX",
+ "triggers": [
+ "omx"
+ ],
+ "regions": {
+ "default": "https://theomx.com/companies?keyword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onhax.net/favicon.ico",
+ "name": "On Hax",
+ "triggers": [
+ "onhax"
+ ],
+ "regions": {
+ "default": "http://onhax.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.onmsft.com/favicon-16x16.png",
+ "name": "On MSFT",
+ "triggers": [
+ "oms"
+ ],
+ "regions": {
+ "default": "https://www.onmsft.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.onbit.pt/media/favicon/default/favicon_onbit.ico",
+ "name": "Onbit",
+ "triggers": [
+ "onbit"
+ ],
+ "regions": {
+ "default": "https://www.onbit.pt/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://images.uncyc.org/nl/6/64/Favicon.ico",
+ "name": "Oncyclopedia",
+ "triggers": [
+ "oncyclo"
+ ],
+ "regions": {
+ "default": "http://oncyclopedia.org/wiki/Speciaal:Zoeken?search={{{term}}}&go=Zoeken"
+ }
+ },
+ {
+ "favicon": "http://www.ondarock.it/favicon.gif",
+ "name": "OndaRock",
+ "triggers": [
+ "ondarock"
+ ],
+ "regions": {
+ "default": "http://www.ondarock.it/websearch.php?domains=www.ondarock.it&q={{{term}}}&sitesearch=www.ondarock.it&client=pub-4895368002735382&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23117dd2%3BGL%3A1%3BDIV%3A%23FFFFFF%3BVLC%3A7292ab%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A0569b7%3BLC%3A0569b7%3BT%3A191919%3BGFNT%3A73baf2%3BGIMP%3A73baf2%3BFORID%3A11&hl=it"
+ }
+ },
+ {
+ "favicon": "http://www.oneacross.com/favicon.ico",
+ "name": "One Across",
+ "triggers": [
+ "anagram"
+ ],
+ "regions": {
+ "default": "http://www.oneacross.com/cgi-bin/search_anagram.cgi?p0={{{term}}}&c0=&s=+Go+"
+ }
+ },
+ {
+ "favicon": "http://oneminutelist.com/wp-content/uploads/2014/09/60fav1.png",
+ "name": "One Minute List",
+ "triggers": [
+ "oml"
+ ],
+ "regions": {
+ "default": "http://oneminutelist.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.onemorething.nl/uploads//2018/01/cropped-OMT_Favicon-192x192.png",
+ "name": "One More Thing",
+ "triggers": [
+ "omt"
+ ],
+ "regions": {
+ "default": "http://www.onemorething.nl/zoeken/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/onepiece/images/6/64/Favicon.ico/revision/latest?cb=20110130183007",
+ "name": "One Piece Wiki",
+ "triggers": [
+ "onepiece"
+ ],
+ "regions": {
+ "default": "http://onepiece.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/lotr/images/6/64/Favicon.ico/revision/latest?cb=20140411033115",
+ "name": "One Wiki to Rule Them All: The Lord of the Rings Wiki",
+ "triggers": [
+ "lotr"
+ ],
+ "regions": {
+ "default": "http://lotr.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://onedrive.live.com/favicon.ico",
+ "name": "OneDrive",
+ "triggers": [
+ "1dr"
+ ],
+ "regions": {
+ "default": "https://onedrive.live.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://onedrive.live.com/favicon.ico",
+ "name": "OneDrive",
+ "triggers": [
+ "onedrive"
+ ],
+ "regions": {
+ "default": "https://onedrive.live.com/#qt=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onelook.com/favicon.ico",
+ "name": "OneLook",
+ "triggers": [
+ "onelook"
+ ],
+ "regions": {
+ "default": "http://onelook.com/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onelook.com/favicon.ico",
+ "name": "OneLook Reverse",
+ "triggers": [
+ "onelookr"
+ ],
+ "regions": {
+ "default": "http://onelook.com/?w=*&loc=revfp2&clue={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.onelook.com/favicon.ico",
+ "name": "Onelook Reverse Dictionary",
+ "triggers": [
+ "olth",
+ "onelookth",
+ "revd"
+ ],
+ "regions": {
+ "default": "http://www.onelook.com/reverse-dictionary.shtml?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onelook.com/favicon.ico",
+ "name": "OneLook.com",
+ "triggers": [
+ "o"
+ ],
+ "regions": {
+ "default": "http://onelook.com/?w={{{term}}}&ls=a"
+ }
+ },
+ {
+ "favicon": "http://onesearch.unipi.it/favicon.ico",
+ "name": "Onesearch Unipi",
+ "triggers": [
+ "bibunipi"
+ ],
+ "regions": {
+ "default": "http://onesearch.unipi.it/primo_library/libweb/action/search.do?fn=search&ct=search&initialSearch=true&mode=Basic&tab=default_tab&indx=1&dum=true&srt=rank&vid=39UPI_V1&frbg=&tb=t&vl(freeText0)={{{term}}}&scp.scps=scope%3A(39UPI)%2C39UPI_EbscoLocal%2Cprimo_central_multiple_fe"
+ }
+ },
+ {
+ "favicon": "http://www.onestopenglish.com/magazine/graphics/favicon.ico",
+ "name": "Onestopenglish",
+ "triggers": [
+ "onestopenglish"
+ ],
+ "regions": {
+ "default": "http://www.onestopenglish.com/searchResults.aspx?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onlinebooks.library.upenn.edu/favicon.ico",
+ "name": "Online Books (Authors)",
+ "triggers": [
+ "oba"
+ ],
+ "regions": {
+ "default": "http://onlinebooks.library.upenn.edu/webbin/book/search?author={{{term}}}&amode=words"
+ }
+ },
+ {
+ "favicon": "http://www.etymonline.com/static/favicon/favicon-16x16.png",
+ "name": "Online Etymology Dictionary",
+ "triggers": [
+ "eo",
+ "etym"
+ ],
+ "regions": {
+ "default": "http://www.etymonline.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.etymonline.com/static/favicon/favicon-16x16.png",
+ "name": "Online Etymology Dictionary",
+ "triggers": [
+ "etymo"
+ ],
+ "regions": {
+ "default": "http://www.etymonline.com/index.php?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.etymonline.com/static/favicon/favicon-16x16.png",
+ "name": "Online Etymology Dictionary",
+ "triggers": [
+ "ety"
+ ],
+ "regions": {
+ "default": "http://www.etymonline.com/index.php?allowed_in_frame=0&search={{{term}}}&searchmode=none"
+ }
+ },
+ {
+ "favicon": "http://www.ofdb.de/favicon.ico",
+ "name": "Online Film Datenbank",
+ "triggers": [
+ "ofdb"
+ ],
+ "regions": {
+ "default": "http://www.ofdb.de/view.php?SText={{{term}}}&Kat=All&page=suchergebnis"
+ }
+ },
+ {
+ "favicon": "https://ogdb.eu/ogdbsearchplugin.ico",
+ "name": "Online Games-Datenbank",
+ "triggers": [
+ "ogdb"
+ ],
+ "regions": {
+ "default": "https://ogdb.eu/index.php?section=simplesearchresults&searchstring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.onlinekeystore.com/skin1/images/favicon/favicon.ico",
+ "name": "Online Key Store",
+ "triggers": [
+ "oks"
+ ],
+ "regions": {
+ "default": "http://www.onlinekeystore.com/browse/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onlinelinkscan.com/favicon.ico",
+ "name": "Online Link Scan",
+ "triggers": [
+ "onlinelinkscan"
+ ],
+ "regions": {
+ "default": "http://onlinelinkscan.com/results/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://biblez.com/favicon.ico",
+ "name": "Online Parallel Bible",
+ "triggers": [
+ "allbibles"
+ ],
+ "regions": {
+ "default": "http://biblez.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rfcreader.com/favicon.ico",
+ "name": "Online RFC Reader",
+ "triggers": [
+ "rfcr"
+ ],
+ "regions": {
+ "default": "http://www.rfcreader.com/#rfc{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.owid.de/favicon.ico",
+ "name": "Online-Wortschatz-Informationssystem Deutsch",
+ "triggers": [
+ "owid"
+ ],
+ "regions": {
+ "default": "http://www.owid.de/suche/wort?wort={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.onmuvo.com/favicon.ico",
+ "name": "Onmuvo",
+ "triggers": [
+ "onmuvo"
+ ],
+ "regions": {
+ "default": "https://www.onmuvo.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ontrac.com/images/favicon-2.ico",
+ "name": "OnTrac",
+ "triggers": [
+ "ontrac"
+ ],
+ "regions": {
+ "default": "https://www.ontrac.com/trackingdetail.asp?tracking={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.onvista.de/css-70232/web/portal/nl/layout_img/favicon.png",
+ "name": "Onvista",
+ "triggers": [
+ "onvista"
+ ],
+ "regions": {
+ "default": "http://www.onvista.de/suche/?onvHeaderSearchBoxAction=true&searchValue={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oolone.com/favicon.ico",
+ "name": "Oolone",
+ "triggers": [
+ "oolone"
+ ],
+ "regions": {
+ "default": "http://www.oolone.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.op.gg/favicon.ico?4",
+ "name": "op.gg",
+ "triggers": [
+ "op.gg"
+ ],
+ "regions": {
+ "default": "http://www.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://euw.op.gg/favicon.ico?4",
+ "name": "op.gg",
+ "triggers": [
+ "euw.op",
+ "opeuw",
+ "opggeuw"
+ ],
+ "regions": {
+ "default": "http://euw.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://na.op.gg/favicon.ico?4",
+ "name": "OP.GG",
+ "triggers": [
+ "opggna",
+ "na.op",
+ "opna"
+ ],
+ "regions": {
+ "default": "http://na.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://br.op.gg/favicon.ico?4",
+ "name": "OP.GG Brazil - League of Legends Summoners statistics and MMR",
+ "triggers": [
+ "opbr"
+ ],
+ "regions": {
+ "default": "http://br.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://las.op.gg/favicon.ico?4",
+ "name": "OP.GG LAS - League of Legends Summoners statistics and MMR",
+ "triggers": [
+ "oplas"
+ ],
+ "regions": {
+ "default": "http://las.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://oce.op.gg/favicon.ico?4",
+ "name": "OP.GG Oceania - League of Legends Summoners statistics and MMR",
+ "triggers": [
+ "opoce"
+ ],
+ "regions": {
+ "default": "http://oce.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ru.op.gg/favicon.ico?4",
+ "name": "OP.GG Russia - League of Legends Summoners statistics and MMR",
+ "triggers": [
+ "opru"
+ ],
+ "regions": {
+ "default": "http://ru.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tr.op.gg/favicon.ico?4",
+ "name": "OP.GG Turkey - League of Legends Summoners statistics and MMR",
+ "triggers": [
+ "optr"
+ ],
+ "regions": {
+ "default": "http://tr.op.gg/summoner/userName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://opac.sbn.it/favicon.ico",
+ "name": "OPAC SBN",
+ "triggers": [
+ "sbn"
+ ],
+ "regions": {
+ "default": "http://opac.sbn.it/opacsbn/opac/iccu/free.jsp={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lhgrw.gbv.de:443/img_psi/2.0/favicons//default.ico",
+ "name": "OPAC Uni Greifswald",
+ "triggers": [
+ "opachgw"
+ ],
+ "regions": {
+ "default": "https://lhgrw.gbv.de/DB=1/SET=18/TTL=1/CMD?ACT=SRCHA&IKT=1016&SRT=YOP&TRM={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openaccessbutton.org/static/favicon.ico",
+ "name": "Open Access Button",
+ "triggers": [
+ "oab"
+ ],
+ "regions": {
+ "default": "https://openaccessbutton.org/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openclipart.org/favicon.ico",
+ "name": "Open Clip Art Library",
+ "triggers": [
+ "oca",
+ "ocal",
+ "openclipart"
+ ],
+ "regions": {
+ "default": "https://openclipart.org/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3-eu-west-1.amazonaws.com/aws-ec2-eu-1-opendatasoft-staticfileset/public/favicon?tstamp=150602640097",
+ "name": "Open Data Soft",
+ "triggers": [
+ "ods"
+ ],
+ "regions": {
+ "default": "http://public.opendatasoft.com/explore/dataset/european-train-stations/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oeconsortium.org/favicon.ico",
+ "name": "Open Education Consortium",
+ "triggers": [
+ "oec"
+ ],
+ "regions": {
+ "default": "http://www.oeconsortium.org/courses/search/?search= {{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://openfontlibrary.org/assets/images/favicon-custom.ico",
+ "name": "Open Font Library",
+ "triggers": [
+ "ofl",
+ "openfont"
+ ],
+ "regions": {
+ "default": "http://openfontlibrary.org/en/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openhub.net/favicon.ico",
+ "name": "Open Hub",
+ "triggers": [
+ "oh"
+ ],
+ "regions": {
+ "default": "https://www.openhub.net/p?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openhub.net/favicon.ico",
+ "name": "Open HUB",
+ "triggers": [
+ "openhub"
+ ],
+ "regions": {
+ "default": "https://www.openhub.net/p?query={{{term}}}&sort=relevance"
+ }
+ },
+ {
+ "favicon": "https://openlibrary.org/static/images/openlibrary-128x128.png",
+ "name": "Open Library",
+ "triggers": [
+ "olib",
+ "openlibrary"
+ ],
+ "regions": {
+ "default": "https://openlibrary.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openlibrary.org/static/images/openlibrary-128x128.png",
+ "name": "Open Library (Full Text Search)",
+ "triggers": [
+ "olibtext"
+ ],
+ "regions": {
+ "default": "https://openlibrary.org/search/inside?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openlistings.co/favicon.ico",
+ "name": "Open Listings",
+ "triggers": [
+ "openlistings"
+ ],
+ "regions": {
+ "default": "https://www.openlistings.co/s/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://content.mqcdn.com/yogi/favicon.ico",
+ "name": "Open Mapquest France",
+ "triggers": [
+ "omfr"
+ ],
+ "regions": {
+ "default": "http://open.mapquest.fr/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//d2otzcfu7vqzws.cloudfront.net/images/favicons/black/favicon.ico",
+ "name": "Open Site Explorer",
+ "triggers": [
+ "ose"
+ ],
+ "regions": {
+ "default": "http://www.opensiteexplorer.org/{{{term}}}/a!links"
+ }
+ },
+ {
+ "favicon": "//d2otzcfu7vqzws.cloudfront.net/images/favicons/black/favicon.ico",
+ "name": "Open Site Explorer",
+ "triggers": [
+ "linkscape"
+ ],
+ "regions": {
+ "default": "http://www.opensiteexplorer.org/{{{term}}}/a!links!!ref!linkscape?anything[]=ahhaigdbif&anything[]=a!links!!ref!linkscape"
+ }
+ },
+ {
+ "favicon": "https://opensource.org/files/osi_favicon.png",
+ "name": "Open Source Initiative",
+ "triggers": [
+ "osi"
+ ],
+ "regions": {
+ "default": "https://opensource.org/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://map.project-osrm.org/favicon.ico",
+ "name": "Open Source Routing Machine",
+ "triggers": [
+ "osrm"
+ ],
+ "regions": {
+ "default": "http://map.project-osrm.org/?dest={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.openthesaurus.de/static/images/favicon_openthesaurus.ico",
+ "name": "Open Thesaurus",
+ "triggers": [
+ "thesaurusde"
+ ],
+ "regions": {
+ "default": "http://www.openthesaurus.de/synonyme/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.open.ac.uk/favicon.ico",
+ "name": "Open University",
+ "triggers": [
+ "openuni"
+ ],
+ "regions": {
+ "default": "http://search.open.ac.uk/public/search/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://openweathermap.org/themes/openweathermap/assets/vendor/owm/img/icons/logo_60x60.png",
+ "name": "Open Weather Map",
+ "triggers": [
+ "owm"
+ ],
+ "regions": {
+ "default": "http://openweathermap.org/find?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openwhyd.org/favicon.png",
+ "name": "Open Whyd",
+ "triggers": [
+ "ow"
+ ],
+ "regions": {
+ "default": "https://openwhyd.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://open-freax.fr/wp-content/uploads/2017/11/B4r1ZK9i_400x400-300x300.png",
+ "name": "Open-Freax",
+ "triggers": [
+ "openfreax"
+ ],
+ "regions": {
+ "default": "http://open-freax.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://open.mapquestapi.com/documentation/favicon.ico",
+ "name": "Open.MapQuest.com",
+ "triggers": [
+ "omq"
+ ],
+ "regions": {
+ "default": "http://open.mapquestapi.com/nominatim/v1/search?format=html&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openbadges.it/favicon.ico",
+ "name": "OpenBadges",
+ "triggers": [
+ "openbadges"
+ ],
+ "regions": {
+ "default": "https://openbadges.it/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://man.openbsd.org/favicon.ico",
+ "name": "OpenBSD",
+ "triggers": [
+ "openbsd"
+ ],
+ "regions": {
+ "default": "https://man.openbsd.org/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://marc.info/favicon.ico",
+ "name": "OpenBSD misc list",
+ "triggers": [
+ "openbsdmisc"
+ ],
+ "regions": {
+ "default": "https://marc.info/?l=openbsd-misc&w=2&r=1&s={{{term}}}&q=b"
+ }
+ },
+ {
+ "favicon": "http://fr.openclassrooms.com/favicon.ico?eae3b07",
+ "name": "OpenClassrooms",
+ "triggers": [
+ "opc"
+ ],
+ "regions": {
+ "default": "http://fr.openclassrooms.com/recherche/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openclassrooms.com/favicon.ico?eae3b07",
+ "name": "OpenClassrooms",
+ "triggers": [
+ "oc"
+ ],
+ "regions": {
+ "default": "https://openclassrooms.com/courses?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.opencv.org/favicon.ico",
+ "name": "OpenCV",
+ "triggers": [
+ "opencv"
+ ],
+ "regions": {
+ "default": "http://docs.opencv.org/3.0-last-rst/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.opendns.com/favicon.ico",
+ "name": "OpenDNS",
+ "triggers": [
+ "opendns"
+ ],
+ "regions": {
+ "default": "https://www.opendns.com/search/#?cludoquery={{{term}}}&cludopage=1"
+ }
+ },
+ {
+ "favicon": "https://www.opendota.com/assets/images/logo.png",
+ "name": "OpenDota",
+ "triggers": [
+ "opendota",
+ "odota"
+ ],
+ "regions": {
+ "default": "https://www.opendota.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://world.openfoodfacts.org/favicon.ico",
+ "name": "OpenFoodFacts World",
+ "triggers": [
+ "off"
+ ],
+ "regions": {
+ "default": "http://world.openfoodfacts.org/cgi/search.pl?search_terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://opengameart.org/sites/all/themes/oga/opengameart2_favicon.ico",
+ "name": "OpenGameArt",
+ "triggers": [
+ "openga",
+ "oga"
+ ],
+ "regions": {
+ "default": "http://opengameart.org/art-search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.opengl.org/img/favicon.ico",
+ "name": "OpenGL",
+ "triggers": [
+ "gl"
+ ],
+ "regions": {
+ "default": "https://www.opengl.org/search/?cx=017055583490642512057%3Ahwpumfa180i&cof=FORID%3A9&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.opengl.org/img/favicon.ico",
+ "name": "OpenGL Wiki",
+ "triggers": [
+ "openglwiki"
+ ],
+ "regions": {
+ "default": "https://www.opengl.org/wiki_132/index.php?search={{{term}}}&go=Go&title=Special%3ASearch "
+ }
+ },
+ {
+ "favicon": "http://openings.moe/assets/logo/512px.png",
+ "name": "Openings.moe",
+ "triggers": [
+ "openings"
+ ],
+ "regions": {
+ "default": "http://openings.moe/list/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.openlinkmap.org/img/favicon.ico",
+ "name": "OpenLinkMap",
+ "triggers": [
+ "osmlink"
+ ],
+ "regions": {
+ "default": "http://www.openlinkmap.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://openports.se/images/favicon.ico",
+ "name": "OpenPorts",
+ "triggers": [
+ "openports"
+ ],
+ "regions": {
+ "default": "http://openports.se/search.php?so={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.openprocessing.org/assets/img/logo/favicons/favicon.ico",
+ "name": "OpenProcessing",
+ "triggers": [
+ "openprocessing"
+ ],
+ "regions": {
+ "default": "http://www.openprocessing.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openradar.appspot.com/favicon.ico",
+ "name": "OpenRadar",
+ "triggers": [
+ "openradar"
+ ],
+ "regions": {
+ "default": "https://openradar.appspot.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d10hbub4nkludc.cloudfront.net/images/favicons/favicon.ico?v=9BaGKJ78xe",
+ "name": "OpenRent",
+ "triggers": [
+ "openrent"
+ ],
+ "regions": {
+ "default": "https://www.openrent.co.uk/properties-to-rent/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openrepos.net/sites/default/files/1373139477_package.png",
+ "name": "OpenRepos",
+ "triggers": [
+ "openrepos"
+ ],
+ "regions": {
+ "default": "https://openrepos.net/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.openrice.com/favicon.ico",
+ "name": "OpenRice",
+ "triggers": [
+ "openrice"
+ ],
+ "regions": {
+ "default": "http://www.openrice.com/zh/hongkong/restaurant/sr1.htm?tc=sr1quick&s=1&region=0&inputstrwhat={{{term}}}&inputstrwhere="
+ }
+ },
+ {
+ "favicon": "https://www.opensecrets.org/app-icon.png",
+ "name": "OpenSecrets.org",
+ "triggers": [
+ "opensecrets"
+ ],
+ "regions": {
+ "default": "https://www.opensecrets.org/usearch/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://opensource.com/sites/all/themes/opensource/favicon.ico",
+ "name": "Opensource.com",
+ "triggers": [
+ "opensource"
+ ],
+ "regions": {
+ "default": "https://opensource.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openstreetmap.org/assets/favicon-16x16-1772a97682f5b3f45c3f98c18f98634808b637a5595026962709fb54af9b9044.png",
+ "name": "OpenStreetMap",
+ "triggers": [
+ "openstreet",
+ "openstreetmap"
+ ],
+ "regions": {
+ "default": "https://www.openstreetmap.org/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Forum",
+ "triggers": [
+ "osmforum"
+ ],
+ "regions": {
+ "default": "http://forum.openstreetmap.org/search.php?action=search&keywords={{{term}}}&author=&forums=&search_in=0&sort_by=0&sort_dir=DESC&show_as=topics"
+ }
+ },
+ {
+ "favicon": "https://forum.openstreetmap.org/favicon.ico",
+ "name": "Openstreetmap forum Netherlands",
+ "triggers": [
+ "osmforumnl"
+ ],
+ "regions": {
+ "default": "https://forum.openstreetmap.org/search.php?action=search&keywords={{{term}}}&forums[]=12"
+ }
+ },
+ {
+ "favicon": "https://help.openstreetmap.org/upfiles/favicon_1.ico",
+ "name": "OpenStreetMap Help",
+ "triggers": [
+ "hosm"
+ ],
+ "regions": {
+ "default": "https://help.openstreetmap.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nominatim.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Nominatim",
+ "triggers": [
+ "nominatim"
+ ],
+ "regions": {
+ "default": "https://nominatim.openstreetmap.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://taginfo.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Taginfo",
+ "triggers": [
+ "taginfo"
+ ],
+ "regions": {
+ "default": "https://taginfo.openstreetmap.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Wiki",
+ "triggers": [
+ "openstreetmapwiki",
+ "osmwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.openstreetmap.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://wiki.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Wiki",
+ "triggers": [
+ "osmw"
+ ],
+ "regions": {
+ "default": "https://wiki.openstreetmap.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.openstreetmap.org/favicon.ico",
+ "name": "OpenStreetMap Wiki",
+ "triggers": [
+ "wosm"
+ ],
+ "regions": {
+ "default": "https://wiki.openstreetmap.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tile.openstreetmap.fr/images/favicon.png",
+ "name": "OpenStreetMap-fr",
+ "triggers": [
+ "osmfr"
+ ],
+ "regions": {
+ "default": "http://tile.openstreetmap.fr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.openstreetmap.org/assets/favicon-16x16-1772a97682f5b3f45c3f98c18f98634808b637a5595026962709fb54af9b9044.png",
+ "name": "openstreetmap.org",
+ "triggers": [
+ "geouri"
+ ],
+ "regions": {
+ "default": "https://www.openstreetmap.org/search?query={{{term}}}#map=7/0.000/-60.000"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "Opensubtitles",
+ "triggers": [
+ "op",
+ "op-eng"
+ ],
+ "regions": {
+ "default": "http://www.opensubtitles.org/en/search2/sublanguageid-eng/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "OpenSubtitles",
+ "triggers": [
+ "op-ita"
+ ],
+ "regions": {
+ "default": "http://www.opensubtitles.org/en/search2/sublanguageid-ita/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "Opensubtitles BR",
+ "triggers": [
+ "subbr"
+ ],
+ "regions": {
+ "default": "https://www.opensubtitles.org/en/search2/sublanguageid-pob/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "Opensubtitles Greek",
+ "triggers": [
+ "opgr"
+ ],
+ "regions": {
+ "default": "http://www.opensubtitles.org/en/search2/sublanguageid-ell/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "OpenSubtitles.org",
+ "triggers": [
+ "op-fre"
+ ],
+ "regions": {
+ "default": "http://www.opensubtitles.org/fr/search2/sublanguageid-fre/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.opensubtitles.org/favicon.ico",
+ "name": "OpenSubtitles.org",
+ "triggers": [
+ "osub",
+ "opensubtitles"
+ ],
+ "regions": {
+ "default": "http://www.opensubtitles.org/en/search2/sublanguageid-all/moviename-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://software.opensuse.org/favicon.ico",
+ "name": "openSUSE",
+ "triggers": [
+ "sus"
+ ],
+ "regions": {
+ "default": "https://software.opensuse.org/search?utf8=✓&q={{{term}}}&search_devel=false&search_unsupported=false&baseproject=openSUSE:13.1"
+ }
+ },
+ {
+ "favicon": "//www.opensuse.org/favicon.ico",
+ "name": "OpenSUSE",
+ "triggers": [
+ "opensuse"
+ ],
+ "regions": {
+ "default": "https://en.opensuse.org/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://build.opensuse.org/favicon.ico",
+ "name": "openSUSE Build Service",
+ "triggers": [
+ "obs"
+ ],
+ "regions": {
+ "default": "https://build.opensuse.org/search?search_text={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://software.opensuse.org/favicon.ico",
+ "name": "OpenSUSE Software Search",
+ "triggers": [
+ "opensusesoftware",
+ "susepkg"
+ ],
+ "regions": {
+ "default": "https://software.opensuse.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.opensuse.org/favicon.ico",
+ "name": "openSUSE Wiki",
+ "triggers": [
+ "osw"
+ ],
+ "regions": {
+ "default": "https://en.opensuse.org/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.openthesaurus.de/static/images/favicon_openthesaurus.ico",
+ "name": "OpenThesaurus-de",
+ "triggers": [
+ "othde"
+ ],
+ "regions": {
+ "default": "https://www.openthesaurus.de/synonyme/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://openuserjs.org/images/favicon.ico",
+ "name": "OpenUserJS",
+ "triggers": [
+ "openuserjs"
+ ],
+ "regions": {
+ "default": "https://openuserjs.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://addons-static.operacdn.com/static/header-footer/favicon/ico/opera.ced696a02c2c.ico",
+ "name": "Opera Add-ons XT WebStore",
+ "triggers": [
+ "ows"
+ ],
+ "regions": {
+ "default": "https://addons.opera.com/ru/search/?query={{{term}}}&type=extensions"
+ }
+ },
+ {
+ "favicon": "https://addons-static.operacdn.com/static/header-footer/favicon/ico/opera.ced696a02c2c.ico",
+ "name": "Opera Extension",
+ "triggers": [
+ "opera"
+ ],
+ "regions": {
+ "default": "https://addons.opera.com/addons/extensions/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://addons-static.operacdn.com/static/header-footer/favicon/ico/opera.ced696a02c2c.ico",
+ "name": "Opera Extensions",
+ "triggers": [
+ "operaext"
+ ],
+ "regions": {
+ "default": "https://addons.opera.com/addons/extensions/?query={{{term}}}&order=new&top=0"
+ }
+ },
+ {
+ "favicon": "data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAbCAMAAAAqGX2oAAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAAL3AAAC9wEtFI04AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm 48GgAAAblQTFRF////AIAAVapVQIBAQL9AM5kzK6orVaorJJJJSbYkLouLO4mJMI PLZY8K5w5KJRDUbw2M5lAMZI9Lpc6LJtDK5VAM5k9MZM7L5dCV8E4Vbw3Ub80VcE5Ub42U8E0Km99LXB9K3B9KnF9LXF9LHCAK3J K3CAKm5 LG9 K3GAKXKAO5 bOpycLG APJycOp6bOZ2aOp2aOZycOZ6bLG AOp6bK2 AO5ycKnF LG9 O52bK3GAOZycLHB K2 ALG AK3F KnF L5c LHCAOZycOp6bVMA3U782U783VMA2VL81VL42L5Y/LpY/L5VALpc/VL42LZU/Lpc/LpY/LZU/Lpc LpY/VL82LpU/VL83K3GAO6M8LpY/LpY/L5Y/LpY/Lpc/Op2bLpY/T7o3LZY/LpY/LpU/LpY/LpY/LpY/VL82K3CAO52bVL82VMA2VL82VL82VMA2TbY3Tbg3K3B/K3CAK3B/K3CAK3B/K3CAK29/K3CAOp2bK3B/Op2bOp2bL3uGOp2bOp2bK3B/L32HOp2bK3CAOp2bOp6cK3B/LpY/L3yGL3yHOZuaOpyaOp2bQKo7Qao7VL824OyGFAAAAIl0Uk5TAAIDBAQFBgYHBwsNEBESExMUFRYXGBkaGykqLC0vMTc5Oz0/QEFCQ0VISkpLTE1PUVNVWVxcXl9hY2NmZ2lsbnFzc3R0e4KEh4mLjp6hpKamqautrrCztLW2vMjJztDR0tPU1NXW19jZ2trg5 jp6uvt7 /x8vP09fb3 Pj5 fr7 /z9/f3 /v5f3xsTAAABQElEQVQoU33QdVcCQRSG8YuBLRZ2YHd3Ynd3t9jd3TFrrM4ndncu7iwuy/sXc3/PORwA0M57aNrs5KzMOC4INheFcVSQZgvTc88Rga2RnzyCVO4 jD4ToJx8JmgX90H02UDl5DVGKe20P9wG0OdMikM/ldeB3oc H8wdNlhA26WPhl70xRCVQ9Q2Fm1g6EFfDgWHRe9g0dqNvqL5B2J2sfhhvmr29Wfz40XsHi/WwnPvPkV5bzW8iNvH4ltYj8i6Ju9frHit4kX80qG8g6nIzEtCyAcWz WgWcYFkfd0i0Xpf08/Z/5Ykn3FiodiR0 1exlAzg0WRWpPPmP UiE/8vBbtlSedIpeic98VjRzTzxBr/47FNyLYgt3yzFzUstPhQsqTzhCrwOdTaJb9RxS2C o13WANKlocuFSsdng7PwLG0WiiCaE3NQAAAAASUVORK5CYII=",
+ "name": "Opquast Checklists",
+ "triggers": [
+ "opq"
+ ],
+ "regions": {
+ "default": "http://checklists.opquast.com/fr/opquastv2?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://supermarket.chef.io/assets/favicon-5f4080fbaa493463c163433fc3c7f57b891e43a00694557ac29c057cc7f62803.ico",
+ "name": "Opscode community cookbooks",
+ "triggers": [
+ "cookbook"
+ ],
+ "regions": {
+ "default": "https://supermarket.chef.io/cookbooks?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://opskins.com/favicon.ico",
+ "name": "OPSkins",
+ "triggers": [
+ "opskins"
+ ],
+ "regions": {
+ "default": "https://opskins.com/index.php?search_item={{{term}}}&min=&max=&grade=Grade&type=Type&sort=f&loc=shop_search"
+ }
+ },
+ {
+ "favicon": "http://aplicacions.llengua.gencat.cat/favicon.ico",
+ "name": "Optimot",
+ "triggers": [
+ "optimot"
+ ],
+ "regions": {
+ "default": "http://aplicacions.llengua.gencat.cat/llc/AppJava/index.html?action=Principal&method=cerca_generica&input_cercar={{{term}}}&tipusCerca=cerca.tot"
+ }
+ },
+ {
+ "favicon": "https://www.optimum.net/favicon.ico",
+ "name": "Optimum",
+ "triggers": [
+ "optimum"
+ ],
+ "regions": {
+ "default": "https://www.optimum.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://optochip.org/assets/newLayout/img/favicon/favicon.png",
+ "name": "optochip",
+ "triggers": [
+ "ot4"
+ ],
+ "regions": {
+ "default": "https://optochip.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.opus-software.com.br/wp-content/uploads/2016/01/cropped-Logo-OPUS-SOFTWARE-Cor-512X512px-192x192.png",
+ "name": "Opus Software",
+ "triggers": [
+ "opussoftware"
+ ],
+ "regions": {
+ "default": "http://www.opus-software.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Oracle",
+ "triggers": [
+ "javafx"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?num=10&exttimeout=false&q={{{term}}}+url:/javase/8/javafx/api&group=Documentation"
+ }
+ },
+ {
+ "favicon": "https://docs.oracle.com/favicon.ico",
+ "name": "Oracle Database Documentation",
+ "triggers": [
+ "oradocs"
+ ],
+ "regions": {
+ "default": "https://docs.oracle.com/apps/search/search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.oracle.com/favicon.ico",
+ "name": "Oracle Java Documentation",
+ "triggers": [
+ "java"
+ ],
+ "regions": {
+ "default": "https://docs.oracle.com/apps/search/search.jsp?q={{{term}}}&category=java"
+ }
+ },
+ {
+ "favicon": "http://oracleofbacon.org/favicon.ico",
+ "name": "Oracle of Bacon",
+ "triggers": [
+ "bacon"
+ ],
+ "regions": {
+ "default": "http://oracleofbacon.org/cgi-bin/movielinks?a=Kevin+Bacon&b={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.oracle.com/favicon.ico",
+ "name": "Oracle.com",
+ "triggers": [
+ "oracle"
+ ],
+ "regions": {
+ "default": "https://search.oracle.com/search/search?search.timezone=300&search_startnum=&search_endnum=&num=10&search_dupid=&exttimeout=false&group=All&q={{{term}}}&search_p_main_operator=all&search_p_atname=&search_p_op=equals&search_p_val=&search_p_atname=&search_p_op=equals&search_p_val=&btnSearch=Search"
+ }
+ },
+ {
+ "favicon": "https://www.ocregister.com/wp-content/uploads/2017/04/cropped-ocr_icon11.jpg?w=192",
+ "name": "Orange County Register",
+ "triggers": [
+ "ocregister"
+ ],
+ "regions": {
+ "default": "http://www.ocregister.com/search/?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://orbithangar.com/favicon.ico",
+ "name": "Orbit Hangar Mods",
+ "triggers": [
+ "ohm"
+ ],
+ "regions": {
+ "default": "http://orbithangar.com/advsearch.php?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://orcid.org/static/release-1.232.2/img/favicon.ico",
+ "name": "ORCID",
+ "triggers": [
+ "orcid"
+ ],
+ "regions": {
+ "default": "https://orcid.org/orcid-search/quick-search?searchQuery={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ord.se/favicon.png",
+ "name": "Ord.se FR",
+ "triggers": [
+ "ordfr"
+ ],
+ "regions": {
+ "default": "http://www.ord.se/oversattning/franska/?s={{{term}}}&l=FRASVE"
+ }
+ },
+ {
+ "favicon": "http://www.ord.se/favicon.png",
+ "name": "Ord.se SV",
+ "triggers": [
+ "ordsv"
+ ],
+ "regions": {
+ "default": "http://www.ord.se/oversattning/Svenska/?s={{{term}}}&l=SVESVE"
+ }
+ },
+ {
+ "favicon": "https://www.ordbogen.com/favicon.ico",
+ "name": "Ordbogen",
+ "triggers": [
+ "ordbogen"
+ ],
+ "regions": {
+ "default": "https://www.ordbogen.com/opslag.php?word={{{term}}}&dict=auto"
+ }
+ },
+ {
+ "favicon": "https://www.ordguru.se/favicon.ico",
+ "name": "Ordguru",
+ "triggers": [
+ "ordguru"
+ ],
+ "regions": {
+ "default": "https://www.ordguru.se/synonymer/sök?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ordnet.dk/favicon.ico",
+ "name": "Ordnet",
+ "triggers": [
+ "ordnet.dk"
+ ],
+ "regions": {
+ "default": "http://ordnet.dk/ddo/ordbog?query={{{term}}}+&search=S%C3%B8g"
+ }
+ },
+ {
+ "favicon": "https://static.advance.net/favicon/oregonlive.com/favicon.ico",
+ "name": "OregonLive",
+ "triggers": [
+ "ol"
+ ],
+ "regions": {
+ "default": "http://search.oregonlive.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://bible.oremus.org/favicon.ico",
+ "name": "oremus Bible Browser",
+ "triggers": [
+ "obb"
+ ],
+ "regions": {
+ "default": "http://bible.oremus.org/?passage={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tvthek.orf.at/favicon.ico",
+ "name": "ORF TVThek",
+ "triggers": [
+ "tvthek",
+ "orf"
+ ],
+ "regions": {
+ "default": "http://tvthek.orf.at/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.orfoqrafiya.az/assets/media/images/main/favicon.png",
+ "name": "Orfoqrafiya",
+ "triggers": [
+ "orfo"
+ ],
+ "regions": {
+ "default": "http://www.orfoqrafiya.az/aze/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.orfoqrafiya.az/assets/media/images/main/favicon.png",
+ "name": "Orfoqrafiya",
+ "triggers": [
+ "orfoqrafiya"
+ ],
+ "regions": {
+ "default": "http://www.orfoqrafiya.az/aze/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.origin.com/favicon.ico",
+ "name": "Origin",
+ "triggers": [
+ "origin"
+ ],
+ "regions": {
+ "default": "https://www.origin.com/en-us/store/browse?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://oce.catholic.com/sites/default/files/favicon.ico",
+ "name": "Original Catholic Encyclopedia",
+ "triggers": [
+ "oce"
+ ],
+ "regions": {
+ "default": "http://oce.catholic.com/index.php?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.ormsdirect.co.za/pub/media/favicon/stores/3/orms.png",
+ "name": "Orms Direct",
+ "triggers": [
+ "orms"
+ ],
+ "regions": {
+ "default": "https://www.ormsdirect.co.za/catalogsearch/result/index/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://orthodoxwiki.org/assets/favicon.ico",
+ "name": "OrthodoxWiki",
+ "triggers": [
+ "orthodoxwiki"
+ ],
+ "regions": {
+ "default": "http://orthodoxwiki.org/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://orthonet.sdv.fr/favicon.ico",
+ "name": "orthonet",
+ "triggers": [
+ "orthonet"
+ ],
+ "regions": {
+ "default": "http://orthonet.sdv.fr/php/rech_mot.php?mot={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://developer.apple.com/favicon.ico",
+ "name": "OS X Developer Library",
+ "triggers": [
+ "osx"
+ ],
+ "regions": {
+ "default": "https://developer.apple.com/search/?q={{{term}}}&platform=OS%20X"
+ }
+ },
+ {
+ "favicon": "http://osaa.dk/favicon.ico",
+ "name": "OSAA Wiki",
+ "triggers": [
+ "osaa"
+ ],
+ "regions": {
+ "default": "http://osaa.dk/wiki/index.php?title=Speciel%3ASearch&search={{{term}}}&go=Gå+til"
+ }
+ },
+ {
+ "favicon": "https://www.osalt.com/favicon.ico",
+ "name": "osalt.com",
+ "triggers": [
+ "osalt"
+ ],
+ "regions": {
+ "default": "https://www.osalt.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://oscobo.co.uk/favicon.ico",
+ "name": "Oscobo Search",
+ "triggers": [
+ "osc"
+ ],
+ "regions": {
+ "default": "https://oscobo.co.uk/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.osdev.org/favicon.ico",
+ "name": "OSDev Wiki",
+ "triggers": [
+ "osdev"
+ ],
+ "regions": {
+ "default": "https://wiki.osdev.org/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.oslo.kommune.no/favicon.ico",
+ "name": "Oslo kommune",
+ "triggers": [
+ "oslo"
+ ],
+ "regions": {
+ "default": "https://www.oslo.kommune.no/sokeresultater/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://discourse-cdn.osmc.tv/uploads/default/original/2X/c/cae3f52be45254b066ecedb6081d3a39260f7e7e.png",
+ "name": "OSMC",
+ "triggers": [
+ "osmc"
+ ],
+ "regions": {
+ "default": "https://discourse.osmc.tv/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.osnews.com/favicon.ico",
+ "name": "OSNews",
+ "triggers": [
+ "osnews"
+ ],
+ "regions": {
+ "default": "https://www.osnews.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.osstatus.com/favicon.png",
+ "name": "OSStatus",
+ "triggers": [
+ "oss"
+ ],
+ "regions": {
+ "default": "https://www.osstatus.com/search/results?platform=all&framework=all&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://osta-ee.postimees.ee/assets/gfx/favicon/favicon-16x16.png",
+ "name": "osta.ee",
+ "triggers": [
+ "osta"
+ ],
+ "regions": {
+ "default": "http://www.osta.ee/index.php?q[q]={{{term}}}&fuseaction=search.search&q[show_items]=1&q[show_shop]=1&q[cat]=1000&search=OTSI"
+ }
+ },
+ {
+ "favicon": "http://www.ostarrichi.org/ostfavicon.ico",
+ "name": "Ostarrichi",
+ "triggers": [
+ "ostarrichi"
+ ],
+ "regions": {
+ "default": "http://www.ostarrichi.org/dictionary-search.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.ppy.sh/favicon-16x16.png",
+ "name": "Osu Beatmaps",
+ "triggers": [
+ "osu"
+ ],
+ "regions": {
+ "default": "http://osu.ppy.sh/p/beatmaplist?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.ppy.sh/favicon-16x16.png",
+ "name": "Osu! Forums",
+ "triggers": [
+ "osuf"
+ ],
+ "regions": {
+ "default": "http://osu.ppy.sh/forum/search.php?keywords={{{term}}}&terms=all&author=&sc=1&sd=d&sr=posts&ch=300&t=0&submit=Search"
+ }
+ },
+ {
+ "favicon": "//s.ppy.sh/favicon-16x16.png",
+ "name": "osu.ppy.sh",
+ "triggers": [
+ "osuu"
+ ],
+ "regions": {
+ "default": "https://osu.ppy.sh/u/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://osxdaily.com/favicon.ico",
+ "name": "Osxdaily",
+ "triggers": [
+ "osxdaily"
+ ],
+ "regions": {
+ "default": "http://osxdaily.com/gsearch/?cx=partner-pub-7321635426958037%3A1x5yj0-316e&cof=FORID%3A10&ie=ISO-8859-1&q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "http://www.otrkeyfinder.com/favicon.ico",
+ "name": "otrkeyfinder",
+ "triggers": [
+ "okf",
+ "otrkf"
+ ],
+ "regions": {
+ "default": "http://www.otrkeyfinder.com/?search={{{term}}}&search.x=0&search.y=0&order=odn"
+ }
+ },
+ {
+ "favicon": "http://otrkeyfinder.com/favicon.ico",
+ "name": "OtrkeyFinder",
+ "triggers": [
+ "otrkey"
+ ],
+ "regions": {
+ "default": "http://otrkeyfinder.com/?search={{{term}}}&search.x=0&search.y=0&order=odn"
+ }
+ },
+ {
+ "favicon": "https://www.otto.de/assets-static/global-favicons/favicon-196x196.png",
+ "name": "OTTO",
+ "triggers": [
+ "otto"
+ ],
+ "regions": {
+ "default": "https://www.otto.de/suche/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.ouicar.fr/assets/favicon.ico?20678271f6c711bcdc60ef27fed8be3e",
+ "name": "OuiCar",
+ "triggers": [
+ "ouicar"
+ ],
+ "regions": {
+ "default": "http://www.ouicar.fr/car/search?where={{{term}}}&from=ddgbang"
+ }
+ },
+ {
+ "favicon": "https://www.outdoorandcountry.co.uk/favicon.png",
+ "name": "Outdoor and Country",
+ "triggers": [
+ "outdoorandcountry"
+ ],
+ "regions": {
+ "default": "https://www.outdoorandcountry.co.uk/search/go?w={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.outlet-pc.es/img/favicon.ico?1503287233",
+ "name": "Outlet PC",
+ "triggers": [
+ "outletpc"
+ ],
+ "regions": {
+ "default": "http://www.outlet-pc.es/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://mail.live.com/favicon.ico",
+ "name": "Outlook",
+ "triggers": [
+ "outlook"
+ ],
+ "regions": {
+ "default": "https://mail.live.com/default.aspx?skws=hello#fid=flsearch&srch=1&skws={{{term}}}&sdr=4&satt=0"
+ }
+ },
+ {
+ "favicon": "http://www.overclock.net/favicon.ico",
+ "name": "Overclock.net",
+ "triggers": [
+ "ocn"
+ ],
+ "regions": {
+ "default": "http://www.overclock.net/newsearch?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ocremix.org/favicon.ico",
+ "name": "OverClocked Remix",
+ "triggers": [
+ "ocremix"
+ ],
+ "regions": {
+ "default": "http://ocremix.org/quicksearch/remix/?qs_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://overclockers.co.uk/templates/emotion_overclockerscouk/frontend/_resources/favicon.ico",
+ "name": "OverclockersUK",
+ "triggers": [
+ "ocuk"
+ ],
+ "regions": {
+ "default": "https://overclockers.co.uk/search_results.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.overdrive.com/Content/img/favicon.ico",
+ "name": "OverDrive",
+ "triggers": [
+ "overdrive",
+ "ovd"
+ ],
+ "regions": {
+ "default": "https://www.overdrive.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://overpass-turbo.eu/turbo-439087fae60c1d26e3f58f9d3966e20a-favicon.ico",
+ "name": "Overpass Turbo Wizard",
+ "triggers": [
+ "otw"
+ ],
+ "regions": {
+ "default": "https://overpass-turbo.eu/?w={{{term}}}&R"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/overwatch/images/6/64/Favicon.ico/revision/latest?cb=20160510230648",
+ "name": "Overwatch Wiki",
+ "triggers": [
+ "overwatch"
+ ],
+ "regions": {
+ "default": "http://overwatch.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1#"
+ }
+ },
+ {
+ "favicon": "https://masteroverwatch.com/asset/image/favicon.ico?9875fec",
+ "name": "OverWatchMaster",
+ "triggers": [
+ "owmaster"
+ ],
+ "regions": {
+ "default": "https://masteroverwatch.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.owasp.org/favicon.ico",
+ "name": "OWASP",
+ "triggers": [
+ "owasp"
+ ],
+ "regions": {
+ "default": "https://www.owasp.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.owl-you-need.de/favicon.ico",
+ "name": "Owl-You-Need",
+ "triggers": [
+ "owl-you-need"
+ ],
+ "regions": {
+ "default": "http://www.owl-you-need.de/suche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.owler.com/favicon.ico",
+ "name": "Owler",
+ "triggers": [
+ "owler"
+ ],
+ "regions": {
+ "default": "https://www.owler.com/iaApp/browsecompanyprofiles.htm?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://owni.fr/favicon.ico",
+ "name": "OWNI",
+ "triggers": [
+ "owni"
+ ],
+ "regions": {
+ "default": "http://owni.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxfordlearnersdictionaries.com/us/external/images/favicon.ico?version=1.6.27",
+ "name": "Oxford Advanced American Dictionary",
+ "triggers": [
+ "oaad"
+ ],
+ "regions": {
+ "default": "http://oaadonline.oxfordlearnersdictionaries.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxfordlearnersdictionaries.com/us/external/images/favicon.ico?version=1.6.27",
+ "name": "Oxford Advanced Learner's Dictionary",
+ "triggers": [
+ "oald"
+ ],
+ "regions": {
+ "default": "http://oald8.oxfordlearnersdictionaries.com/dictionary/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.oxfordlearnersdictionaries.com/us/external/images/favicon.ico?version=1.6.27",
+ "name": "Oxford Advanced Learners' dictionary",
+ "triggers": [
+ "oxl"
+ ],
+ "regions": {
+ "default": "https://www.oxfordlearnersdictionaries.com/definition/english/{{{term}}}_1?isEntryInOtherDict=false"
+ }
+ },
+ {
+ "favicon": "https://www.oxforddictionaries.com/favicon.ico?v3",
+ "name": "Oxford Dictionaries",
+ "triggers": [
+ "oxforddictionaries",
+ "oxed"
+ ],
+ "regions": {
+ "default": "https://www.oxforddictionaries.com/definition/english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxforddictionaries.com/favicon.ico?v3",
+ "name": "Oxford Dictionaries (American English)",
+ "triggers": [
+ "oad"
+ ],
+ "regions": {
+ "default": "https://www.oxforddictionaries.com/definition/american_english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.oxforddictionaries.com/favicon.ico?v1",
+ "name": "Oxford Dictionary",
+ "triggers": [
+ "ox"
+ ],
+ "regions": {
+ "default": "https://en.oxforddictionaries.com/search?filter=dictionary&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.oxforddictionaries.com/favicon.ico?v1",
+ "name": "Oxford dictionary",
+ "triggers": [
+ "oxford"
+ ],
+ "regions": {
+ "default": "https://en.oxforddictionaries.com/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxforddictionaries.com/favicon.ico?v3",
+ "name": "Oxford Dictionary",
+ "triggers": [
+ "od"
+ ],
+ "regions": {
+ "default": "https://www.oxforddictionaries.com/definition/english/{{{term}}}?q=jgjffbhbkja"
+ }
+ },
+ {
+ "favicon": "https://en.oxforddictionaries.com/favicon.ico?v1",
+ "name": "Oxford Dictionary Thesaurus",
+ "triggers": [
+ "oxs",
+ "oxt"
+ ],
+ "regions": {
+ "default": "https://en.oxforddictionaries.com/thesaurus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxfordlearnersdictionaries.com/us/external/images/favicon.ico?version=1.6.27",
+ "name": "Oxford Learner's American Dictionariy",
+ "triggers": [
+ "olad"
+ ],
+ "regions": {
+ "default": "https://www.oxfordlearnersdictionaries.com/definition/american_english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oxfordlearnersdictionaries.com/us/external/images/favicon.ico?version=1.6.27",
+ "name": "Oxford learners dictionary",
+ "triggers": [
+ "oxfordlearners"
+ ],
+ "regions": {
+ "default": "https://www.oxfordlearnersdictionaries.com/definition/english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oxfordreference.com/assets/80eb267024be0199563d31142cc68796668650a6/ctx/favicon.ico",
+ "name": "Oxford Reference",
+ "triggers": [
+ "oxfordref"
+ ],
+ "regions": {
+ "default": "http://www.oxfordreference.com/search?siteToSearch=aup&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/oxygennotincluded_gamepedia_en/6/64/Favicon.ico?version=121e5306579b05f2aea393ee791a8fe1",
+ "name": "Oxygen Not Included Wiki",
+ "triggers": [
+ "oni"
+ ],
+ "regions": {
+ "default": "http://oxygennotincluded.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.oyez.org/favicon.ico",
+ "name": "Oyez",
+ "triggers": [
+ "oyez"
+ ],
+ "regions": {
+ "default": "https://www.oyez.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://oz.by/favicon.png?v=1",
+ "name": "OZ.by",
+ "triggers": [
+ "oz"
+ ],
+ "regions": {
+ "default": "http://oz.by/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ozbargain.com.au/themes/ozbargain/logo-icon-128.png",
+ "name": "OzBargain",
+ "triggers": [
+ "ozbargain"
+ ],
+ "regions": {
+ "default": "https://www.ozbargain.com.au/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ozon.ru/favicon.ico",
+ "name": "OZON.ru",
+ "triggers": [
+ "ozon"
+ ],
+ "regions": {
+ "default": "https://www.ozon.ru/?context=search&text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ouquoicomment.ch/wp-content/uploads/fbrfg/favicon.ico",
+ "name": "OùQuoiComment",
+ "triggers": [
+ "oqc"
+ ],
+ "regions": {
+ "default": "https://www.ouquoicomment.ch/?s={{{term}}}&search_by=all"
+ }
+ },
+ {
+ "favicon": "http://p3rl.org/favicon.ico",
+ "name": "p3rl.org",
+ "triggers": [
+ "perl",
+ "perlmod"
+ ],
+ "regions": {
+ "default": "http://p3rl.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packagecontrol.io/favicon.ico",
+ "name": "Package Control",
+ "triggers": [
+ "pctrl",
+ "pcio"
+ ],
+ "regions": {
+ "default": "https://packagecontrol.io/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.spongepowered.org/favicon.ico",
+ "name": "Package Repository for Minecraft",
+ "triggers": [
+ "ore"
+ ],
+ "regions": {
+ "default": "https://ore.spongepowered.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.packagemapping.com/assets/images/icons/favicon.ico",
+ "name": "PackageMapping",
+ "triggers": [
+ "track",
+ "package"
+ ],
+ "regions": {
+ "default": "http://www.packagemapping.com/?action=track&tracknum={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.packagetrackr.com/favicon.ico",
+ "name": "Packagetrackr",
+ "triggers": [
+ "trackr"
+ ],
+ "regions": {
+ "default": "http://www.packagetrackr.com/track/?submit=&n={{{term}}}&c="
+ }
+ },
+ {
+ "favicon": "https://packagist.org/favicon.ico?v=1529853935",
+ "name": "Packagist",
+ "triggers": [
+ "pack",
+ "packagist"
+ ],
+ "regions": {
+ "default": "https://packagist.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.packal.org/sites/default/files/public/packal-128_1.png",
+ "name": "Packal",
+ "triggers": [
+ "packal"
+ ],
+ "regions": {
+ "default": "http://www.packal.org/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://res.cloudinary.com/nflclubs/image/private/packers/fzaey2jea80jrspi6hyt",
+ "name": "Packers",
+ "triggers": [
+ "packers"
+ ],
+ "regions": {
+ "default": "http://packers.com/?={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packetstormsecurity.com/img/pss.ico",
+ "name": "Packet Storm",
+ "triggers": [
+ "packet"
+ ],
+ "regions": {
+ "default": "https://packetstormsecurity.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.packetlight.com/templates/jv-hosting/favicon.ico",
+ "name": "PacketLight Networks",
+ "triggers": [
+ "packetlight"
+ ],
+ "regions": {
+ "default": "http://www.packetlight.com/?p{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://packman.links2linux.org/images/packman.ico",
+ "name": "PackMan",
+ "triggers": [
+ "packman"
+ ],
+ "regions": {
+ "default": "http://packman.links2linux.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1ldz4te4covpm.cloudfront.net/misc/favicon.ico",
+ "name": "Packt",
+ "triggers": [
+ "packt"
+ ],
+ "regions": {
+ "default": "https://www.packtpub.com/all/?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://page2rss.com/favicon.ico",
+ "name": "Page2RSS",
+ "triggers": [
+ "pg2rss"
+ ],
+ "regions": {
+ "default": "http://page2rss.com/page/?&resultDomain=page2rss.com?&url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pagesjaunes.fr/favicon.ico",
+ "name": "pages blanches",
+ "triggers": [
+ "pbl"
+ ],
+ "regions": {
+ "default": "http://www.pagesjaunes.fr/pagesblanches/recherche?quoiqui={{{term}}}&proximite=0"
+ }
+ },
+ {
+ "favicon": "http://www.pai.pt/themes/yellow/images/favicons/business-pt.ico",
+ "name": "PaginasAmarelas.pt",
+ "triggers": [
+ "pai"
+ ],
+ "regions": {
+ "default": "http://www.pai.pt/q/business/advanced/what/{{{term}}}/?contentErrorLinkEnabled=true"
+ }
+ },
+ {
+ "favicon": "https://img.pgol.it/pgit2018/favicon-16x16.png",
+ "name": "Pagine Gialle",
+ "triggers": [
+ "pagine"
+ ],
+ "regions": {
+ "default": "http://www.paginegialle.it/pgol/4-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://encore.palatinelibrary.org:80/iii/encore/local/images/favicon.ico",
+ "name": "Palatine Public Library",
+ "triggers": [
+ "palatinelibrary"
+ ],
+ "regions": {
+ "default": "http://encore.palatinelibrary.org/iii/encore/search?target={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.palemoon.org/favicon.ico",
+ "name": "Pale Moon forum",
+ "triggers": [
+ "pmf",
+ "palemoon"
+ ],
+ "regions": {
+ "default": "https://forum.palemoon.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.palemoon.org/favicon.ico",
+ "name": "Pale Moon forum en español",
+ "triggers": [
+ "pmfe"
+ ],
+ "regions": {
+ "default": "https://forum.palemoon.org/search.php?keywords={{{term}}}&fid[0]=9"
+ }
+ },
+ {
+ "favicon": "https://www.paleohacks.com/assets/favicon-7cc6e388f88af61d577c3b8773b6f2ba.ico",
+ "name": "Paleo Hacks",
+ "triggers": [
+ "paleo"
+ ],
+ "regions": {
+ "default": "https://www.paleohacks.com/searches?utf8=%E2%9C%93&query={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "https://res.cloudinary.com/paleoleap/image/upload/v1438724503/fav/touch-icon-192x192.png",
+ "name": "Paleo Leap",
+ "triggers": [
+ "paleoleap"
+ ],
+ "regions": {
+ "default": "http://paleoleap.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.paloaltonetworks.com/etc/designs/pan/favicon.ico",
+ "name": "Palo Alto Networks Documentation",
+ "triggers": [
+ "paloalto"
+ ],
+ "regions": {
+ "default": "https://www.paloaltonetworks.com/documentation/document-search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.tumblr.com/images/favicons/favicon.ico?_v=12c4b75f9c08fe2c00c9d3e2fb266133",
+ "name": "Panagiotis Gournas",
+ "triggers": [
+ "pgournas"
+ ],
+ "regions": {
+ "default": "http://www.pgournas.gr/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pandalook.com/img/favicon/favicon-16x16.png",
+ "name": "Pandalook",
+ "triggers": [
+ "panda"
+ ],
+ "regions": {
+ "default": "http://pandalook.com/search?controller=search&search_query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://pandas.pydata.org/favicon.ico",
+ "name": "Pandas",
+ "triggers": [
+ "pandas"
+ ],
+ "regions": {
+ "default": "https://pandas.pydata.org/pandas-docs/stable/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://www.pandora.com/favicon.ico",
+ "name": "Pandora",
+ "triggers": [
+ "pandora"
+ ],
+ "regions": {
+ "default": "https://www.pandora.com/search/{{{term}}}/all"
+ }
+ },
+ {
+ "favicon": "https://panlexicon.com/favicon.ico",
+ "name": "Panlexicon",
+ "triggers": [
+ "pan"
+ ],
+ "regions": {
+ "default": "https://panlexicon.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://search.pantip.com/favicon.ico",
+ "name": "Pantip.com",
+ "triggers": [
+ "pantip"
+ ],
+ "regions": {
+ "default": "http://search.pantip.com/ss?s=a&nms=1&sa=Smart+Search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pantone.com/favicon.ico",
+ "name": "Pantone Color Finder",
+ "triggers": [
+ "pantone"
+ ],
+ "regions": {
+ "default": "https://www.pantone.com/color-finder?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.paokfc.gr/wp-content/themes/paokv2/favicon.ico",
+ "name": "Paok FC",
+ "triggers": [
+ "paokfc"
+ ],
+ "regions": {
+ "default": "http://www.paokfc.gr/en/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/papermario/images/6/64/Favicon.ico/revision/latest?cb=20120326222120",
+ "name": "Paper Mario Wiki",
+ "triggers": [
+ "pmwiki"
+ ],
+ "regions": {
+ "default": "http://papermario.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.paperbackswap.com/favicon.ico",
+ "name": "PaperBackSwap",
+ "triggers": [
+ "pbswap"
+ ],
+ "regions": {
+ "default": "http://www.paperbackswap.com/book/browser.php?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://peer.asee.org/favicon.ico",
+ "name": "Papers on Engineering Education Repository (ASEE PEER)",
+ "triggers": [
+ "asee"
+ ],
+ "regions": {
+ "default": "https://peer.asee.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.papskubber.dk/favicon.ico",
+ "name": "Papskubber.dk",
+ "triggers": [
+ "pap"
+ ],
+ "regions": {
+ "default": "http://www.papskubber.dk/?q={{{term}}}&s=search&submitbutton=S%C3%B8g"
+ }
+ },
+ {
+ "favicon": "http://www.papyrefb2.net/favicon.ico",
+ "name": "Papyrefb2",
+ "triggers": [
+ "papyrefb2",
+ "pfb2"
+ ],
+ "regions": {
+ "default": "http://www.papyrefb2.net/frames/buskador.php?nombre={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.parabola.nu/static/favicon.ico",
+ "name": "Parabola GNU/Linux Packages",
+ "triggers": [
+ "bolapkg",
+ "parabola"
+ ],
+ "regions": {
+ "default": "https://www.parabola.nu/packages/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.parabola.nu/favicon.ico",
+ "name": "Parabola GNU/Linux Wiki",
+ "triggers": [
+ "bola",
+ "parawiki",
+ "parabolaw"
+ ],
+ "regions": {
+ "default": "https://wiki.parabola.nu/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.paradigit.nl/media/1039/favico.png",
+ "name": "Paradigit",
+ "triggers": [
+ "paradigit"
+ ],
+ "regions": {
+ "default": "https://www.paradigit.nl/zoekresultaten/?tn_q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://paragnosttineke.nl/favicon.ico",
+ "name": "Paragnost Tineke",
+ "triggers": [
+ "paragnost"
+ ],
+ "regions": {
+ "default": "https://paragnosttineke.nl/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dxqviapaoowtl.cloudfront.net/favicon-32x32.png.2507fa57d42f98d576631a802ba0e70bbdae96a4",
+ "name": "ParkWhiz",
+ "triggers": [
+ "parking"
+ ],
+ "regions": {
+ "default": "http://www.parkwhiz.com/search/?destination={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/spark-assets/spark-icon-large.png",
+ "name": "Particle Community",
+ "triggers": [
+ "particleforums"
+ ],
+ "regions": {
+ "default": "https://community.particle.io/users/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://partsdr.com/favicon.ico",
+ "name": "Parts Dr",
+ "triggers": [
+ "partsdr"
+ ],
+ "regions": {
+ "default": "http://partsdr.com/model-number-search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://parts.igem.org/favicon.ico",
+ "name": "parts.igem.org",
+ "triggers": [
+ "igem"
+ ],
+ "regions": {
+ "default": "http://parts.igem.org/Special:Search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://parts.io/favicon.ico",
+ "name": "Parts.io",
+ "triggers": [
+ "parts"
+ ],
+ "regions": {
+ "default": "http://parts.io/search/term-{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://passthepopcorn.me/favicon.ico",
+ "name": "Pass The Popcorn",
+ "triggers": [
+ "ptp"
+ ],
+ "regions": {
+ "default": "http://passthepopcorn.me/torrents.php?order_by=relevance&searchstr={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.passmark.com/favicon.ico",
+ "name": "passmark.com",
+ "triggers": [
+ "passmark"
+ ],
+ "regions": {
+ "default": "https://www.passmark.com/search/zoomsearch.php?zoom_query={{{term}}}&search=Search"
+ }
+ },
+ {
+ "favicon": "https://pastebin.com/favicon.ico",
+ "name": "pastebin",
+ "triggers": [
+ "pastebin"
+ ],
+ "regions": {
+ "default": "https://pastebin.com/search?cx=partner-pub-4339714761096906%3A1qhz41g8k4m&cof=FORID%3A10&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/2433/6373/files/BEE-Solo_32x32.png?v=1516224717",
+ "name": "pat@Bee",
+ "triggers": [
+ "p@t"
+ ],
+ "regions": {
+ "default": "http://patabee.com/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://poedb.tw/favicon.ico",
+ "name": "Path of Exile Database",
+ "triggers": [
+ "poedb"
+ ],
+ "regions": {
+ "default": "http://poedb.tw/us/search.php?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/pathofexile_gamepedia/6/64/Favicon.ico?version=fd8a8a683732916a9bdccdb5c5fc39e4",
+ "name": "Path of Exile page",
+ "triggers": [
+ "poepage"
+ ],
+ "regions": {
+ "default": "http://pathofexile.gamepedia.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/pathofexile_gamepedia/6/64/Favicon.ico?version=fd8a8a683732916a9bdccdb5c5fc39e4",
+ "name": "Path of Exile Wiki",
+ "triggers": [
+ "poe"
+ ],
+ "regions": {
+ "default": "http://pathofexile.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/pathofexile_gamepedia/6/64/Favicon.ico?version=fd8a8a683732916a9bdccdb5c5fc39e4",
+ "name": "Path of Exile Wiki",
+ "triggers": [
+ "poewiki"
+ ],
+ "regions": {
+ "default": "http://pathofexile.gamepedia.com/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://paizo.com/favicon.ico",
+ "name": "Pathfinder Reference Document",
+ "triggers": [
+ "prd"
+ ],
+ "regions": {
+ "default": "http://paizo.com/search?q={{{term}}}&what=prd&includeUnrated=true&includeUnavailable=true"
+ }
+ },
+ {
+ "favicon": "http://www.d20pfsrd.com/wp-content/uploads/sites/12/2018/04/d20pfsrd-logo-256.png",
+ "name": "Pathfinder SRD",
+ "triggers": [
+ "d20pfsrd"
+ ],
+ "regions": {
+ "default": "http://www.d20pfsrd.com/system/app/pages/search?scope=search-site&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pathfindersonline.org/favicon.ico",
+ "name": "Pathfinders Online",
+ "triggers": [
+ "pfonline"
+ ],
+ "regions": {
+ "default": "http://www.pathfindersonline.org/component/search/?searchword={{{term}}}&ordering=newest&searchphrase=all"
+ }
+ },
+ {
+ "favicon": "https://c5.patreon.com/external/favicon/favicon.ico?v=69kMELnXkB",
+ "name": "Patreon",
+ "triggers": [
+ "patreon"
+ ],
+ "regions": {
+ "default": "http://www.patreon.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://78.media.tumblr.com/avatar_e5e3469bbc45_128.pnj",
+ "name": "Patternry",
+ "triggers": [
+ "patternry"
+ ],
+ "regions": {
+ "default": "http://patternry.com/patterns/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "Pauker",
+ "triggers": [
+ "pauker"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/pauker/DE_EN/EN/wb/?modus=&suche={{{term}}}&page=1#"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "Pauker.at",
+ "triggers": [
+ "pat.pt"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/pauker/DE_DE/PT/wb/?modus=&suche={{{term}}}&page=1#"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "pauker.at Dictionary (German-English)",
+ "triggers": [
+ "pat"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/pauker/DE_DE/EN/wb?modus=&suche={{{term}}}&page=1#"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "Pauker.at Dictionary (German-Finnish)",
+ "triggers": [
+ "pat.fi"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/pauker/DE_DE/FI/wb/?modus=&suche={{{term}}}&page=1#"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "pauker.at Dictionary (German-Swedish)",
+ "triggers": [
+ "pat.sv"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/pauker/DE_DE/SE/wb?modus=&suche={{{term}}}&page=1#"
+ }
+ },
+ {
+ "favicon": "http://www.pauker.at/favicon.ico",
+ "name": "pauker.at Dictionary (Mobile)",
+ "triggers": [
+ "patm"
+ ],
+ "regions": {
+ "default": "http://www.pauker.at/app.php/DE_DE/?s={{{term}}}#suche"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/payday/images/6/64/Favicon.ico/revision/latest?cb=20120402085817",
+ "name": "Payday Wiki",
+ "triggers": [
+ "payday"
+ ],
+ "regions": {
+ "default": "http://payday.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.paypalobjects.com/webstatic/icon/pp32.png",
+ "name": "PayPal",
+ "triggers": [
+ "paypal"
+ ],
+ "regions": {
+ "default": "https://www.paypal.com/us/selfhelp/search?q={{{term}}}&helpSearchButton=Search"
+ }
+ },
+ {
+ "favicon": "https://cdn-payscale.com/content/favicon/favicon-16x16.png",
+ "name": "Payscale",
+ "triggers": [
+ "payscale"
+ ],
+ "regions": {
+ "default": "http://www.payscale.com/rcsearch.aspx?category=&str={{{term}}}&CountryName=United+States&SourceId=%2Fresearch%2FUS%2FCountry%3DUnited_States%2FSalary"
+ }
+ },
+ {
+ "favicon": "https://paytm.com/favicon.ico",
+ "name": "PayTM",
+ "triggers": [
+ "paytm"
+ ],
+ "regions": {
+ "default": "https://paytm.com/shop/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pazar.org/favicon.ico",
+ "name": "pazar",
+ "triggers": [
+ "pazar",
+ "pazar.org"
+ ],
+ "regions": {
+ "default": "http://pazar.org/ara/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://di30d2kxyxn22.cloudfront.net/images/favicons/favicon.af5a195a5f8e.ico",
+ "name": "PBS",
+ "triggers": [
+ "pbs"
+ ],
+ "regions": {
+ "default": "http://www.pbs.org/search/search_results.html?q={{{term}}}&btnG=GO"
+ }
+ },
+ {
+ "favicon": "http://pbskids.org/favicon.ico",
+ "name": "PBS Kids",
+ "triggers": [
+ "pbskids"
+ ],
+ "regions": {
+ "default": "http://pbskids.org/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.pbteen.com/ptimgs/rk/images/i/201827/0007/images/favicon.ico",
+ "name": "PBteen",
+ "triggers": [
+ "pbteen"
+ ],
+ "regions": {
+ "default": "http://www.pbteen.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pccomponentes.com/favicon.ico",
+ "name": "PC Componentes",
+ "triggers": [
+ "pcomp",
+ "pcco"
+ ],
+ "regions": {
+ "default": "https://www.pccomponentes.com/buscar/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pcconnection.com/favicon.ico",
+ "name": "PC Connection",
+ "triggers": [
+ "pcc"
+ ],
+ "regions": {
+ "default": "http://www.pcconnection.com/IPA/Shop/Product/Search.htm?SearchType=1&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vanilla.futurecdn.net/pcgamer/20180702/favicon.ico",
+ "name": "PC Gamer",
+ "triggers": [
+ "pcg"
+ ],
+ "regions": {
+ "default": "https://www.pcgamer.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pcinpact.com/Images/favicon.ico",
+ "name": "PC INpact",
+ "triggers": [
+ "pci"
+ ],
+ "regions": {
+ "default": "http://www.pcinpact.com/recherche?_search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pcper.com/files/pcper_favicon.ico",
+ "name": "PC Perspective",
+ "triggers": [
+ "pcper"
+ ],
+ "regions": {
+ "default": "https://www.pcper.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pcworld.com/www.idgcsmb.pcw/favicon.ico",
+ "name": "PC World",
+ "triggers": [
+ "pcworld"
+ ],
+ "regions": {
+ "default": "https://www.pcworld.com/search?qt={{{term}}}&tk=srch_top"
+ }
+ },
+ {
+ "favicon": "http://pcworld.bg/favicon.ico",
+ "name": "PC World Bulgaria",
+ "triggers": [
+ "pcworldbg"
+ ],
+ "regions": {
+ "default": "http://pcworld.bg/search/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.pccasegear.com/favicon.ico",
+ "name": "PCCaseGear",
+ "triggers": [
+ "pccg"
+ ],
+ "regions": {
+ "default": "http://search.pccasegear.com/search#w={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.pcdiga.com/media/favicon/default/favicon_1_1.ico",
+ "name": "PCDiga",
+ "triggers": [
+ "pcd"
+ ],
+ "regions": {
+ "default": "https://www.pcdiga.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pcgamingwiki.com/images/WikiFavicon.png",
+ "name": "PCGamingWiki",
+ "triggers": [
+ "pcgw"
+ ],
+ "regions": {
+ "default": "https://pcgamingwiki.com/w/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://pcgamingwiki.com/images/WikiFavicon.png",
+ "name": "PCGamingWiki",
+ "triggers": [
+ "pcgamingwiki"
+ ],
+ "regions": {
+ "default": "http://pcgamingwiki.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pcgarage.ro/favicon.ico",
+ "name": "pcgarage",
+ "triggers": [
+ "pcgarage"
+ ],
+ "regions": {
+ "default": "https://www.pcgarage.ro/cauta/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ecshweb.pchome.com.tw/favicon.ico",
+ "name": "PChome 24h",
+ "triggers": [
+ "pc24"
+ ],
+ "regions": {
+ "default": "http://ecshweb.pchome.com.tw/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.pointclouds.org/favicon.ico",
+ "name": "PCL Documentation",
+ "triggers": [
+ "pcl"
+ ],
+ "regions": {
+ "default": "http://docs.pointclouds.org/trunk/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pcmag.com/android-chrome-192x192.png",
+ "name": "PCMag",
+ "triggers": [
+ "pcmag"
+ ],
+ "regions": {
+ "default": "http://www.pcmag.com/search_redirect/?qry={{{term}}}&searchSection=0&site=3"
+ }
+ },
+ {
+ "favicon": "http://www.pcmasters.de/favicon.ico",
+ "name": "PCMasters.de",
+ "triggers": [
+ "pcmasters"
+ ],
+ "regions": {
+ "default": "http://www.pcmasters.de/suche?search_keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pcpartpicker.com/favicon-16x16.png",
+ "name": "PcPartPicker",
+ "triggers": [
+ "pcpp",
+ "pcpartpicker"
+ ],
+ "regions": {
+ "default": "https://pcpartpicker.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pctux.com.ar/wp-content/uploads/2013/05/tux.png",
+ "name": "PCTux",
+ "triggers": [
+ "pctux"
+ ],
+ "regions": {
+ "default": "http://www.pctux.com.ar/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.peacocks.co.uk/favicon-32x32.png",
+ "name": "Peacocks UK",
+ "triggers": [
+ "pcks"
+ ],
+ "regions": {
+ "default": "http://www.peacocks.co.uk/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.peapod.com/shop/images/favicon/favicon-16x16.png",
+ "name": "Peapod",
+ "triggers": [
+ "peapod"
+ ],
+ "regions": {
+ "default": "https://www.peapod.com/product-search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pear.php.net/gifs/favicon.ico",
+ "name": "PEAR - PHP Extension and Application Repository",
+ "triggers": [
+ "pear"
+ ],
+ "regions": {
+ "default": "https://pear.php.net/search.php?in=packages&x=0&y=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://apps.getpebble.com/favicon.ico",
+ "name": "Pebble App Store",
+ "triggers": [
+ "pebble"
+ ],
+ "regions": {
+ "default": "https://apps.getpebble.com/en_US/search/watchapps/1?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pecl.php.net/gifs/pecl-favicon.ico",
+ "name": "PECL :: The PHP Extension Community Library",
+ "triggers": [
+ "pecl"
+ ],
+ "regions": {
+ "default": "https://pecl.php.net/package-search.php?pkg_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pective.com/favicon.ico",
+ "name": "Pective",
+ "triggers": [
+ "pective"
+ ],
+ "regions": {
+ "default": "http://pective.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.pedigreedatabase.com/favicon.ico",
+ "name": "Pedigree Database",
+ "triggers": [
+ "pedigree"
+ ],
+ "regions": {
+ "default": "http://www.pedigreedatabase.com/search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://peekier.com/assets/favicon.png",
+ "name": "Peekier",
+ "triggers": [
+ "peek",
+ "pk"
+ ],
+ "regions": {
+ "default": "https://peekier.com/#!{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://peeron.com/favicon.ico",
+ "name": "Peeron",
+ "triggers": [
+ "peeron"
+ ],
+ "regions": {
+ "default": "http://peeron.com/cgi-bin/invcgis/psearch?query={{{term}}}&limit=none"
+ }
+ },
+ {
+ "favicon": "http://www.pegi.info/themes/pegi/favicon.ico",
+ "name": "PEGI",
+ "triggers": [
+ "pegi"
+ ],
+ "regions": {
+ "default": "http://www.pegi.info/en/index/global_id/505/?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pelando.com.br/favicon.ico",
+ "name": "Pelando",
+ "triggers": [
+ "pelando"
+ ],
+ "regions": {
+ "default": "https://www.pelando.com.br/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pelisplus.tv/assets/images/favicon.ico",
+ "name": "PelisPlus",
+ "triggers": [
+ "plp"
+ ],
+ "regions": {
+ "default": "http://www.pelisplus.tv/busqueda/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://psu.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "Penn State Library",
+ "triggers": [
+ "psulib"
+ ],
+ "regions": {
+ "default": "http://psu.summon.serialssolutions.com/search/results?spellcheck=true&q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.apps.dcnr.state.pa.us/favicon.ico",
+ "name": "Pennsylvania Department of Conservation and Natural Resources",
+ "triggers": [
+ "dcnr"
+ ],
+ "regions": {
+ "default": "http://www.apps.dcnr.state.pa.us/search.aspx?cx=008544532008978746929:8o8oxsc28a8&cof=FORID:11&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.peppermintos.com/favicon.ico",
+ "name": "Peppermint OS forums",
+ "triggers": [
+ "peppermintos",
+ "pmos"
+ ],
+ "regions": {
+ "default": "https://forum.peppermintos.com/index.php?action=search2&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pepperplate.com/favicon.ico",
+ "name": "Pepperplate",
+ "triggers": [
+ "pepperplate"
+ ],
+ "regions": {
+ "default": "http://www.pepperplate.com/search/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.grabaperch.com/favicon.ico",
+ "name": "Perch Forum",
+ "triggers": [
+ "perch"
+ ],
+ "regions": {
+ "default": "http://forum.grabaperch.com/forum/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://childishgiant.github.io/favicon.ico",
+ "name": "Perdola",
+ "triggers": [
+ "perdola"
+ ],
+ "regions": {
+ "default": "https://childishgiant.github.io/perdola/?app={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://i.perezhilton.com/favicon.ico",
+ "name": "PerezHilton",
+ "triggers": [
+ "perezhilton"
+ ],
+ "regions": {
+ "default": "http://perezhilton.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.perfectgame.org/favicon-16x16.png",
+ "name": "Perfect Game",
+ "triggers": [
+ "perfectgame"
+ ],
+ "regions": {
+ "default": "https://www.perfectgame.org/Search.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//perl6.org/favicon.ico",
+ "name": "Perl 6 Modules",
+ "triggers": [
+ "perlmod6"
+ ],
+ "regions": {
+ "default": "http://modules.perl6.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//perl6.org/favicon.ico",
+ "name": "Perl 6 Modules Directory",
+ "triggers": [
+ "p6mod"
+ ],
+ "regions": {
+ "default": "https://modules.perl6.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://perldoc.perl.org/favicon.ico",
+ "name": "Perldoc.perl.org",
+ "triggers": [
+ "perldoc"
+ ],
+ "regions": {
+ "default": "http://perldoc.perl.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.perlentaucher.de/favicon.ico",
+ "name": "Perlentaucher",
+ "triggers": [
+ "Perlen"
+ ],
+ "regions": {
+ "default": "https://www.perlentaucher.de/nsuche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.perlmonks.org/favicon.ico",
+ "name": "PerlMonks.org",
+ "triggers": [
+ "perlmonks"
+ ],
+ "regions": {
+ "default": "http://www.perlmonks.org/?node={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tonydipadova.com/favicon.ico",
+ "name": "Perpetual DiPadova",
+ "triggers": [
+ "dipadova"
+ ],
+ "regions": {
+ "default": "http://tonydipadova.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.perrypedia.proc.org/favicon.ico",
+ "name": "Perrypedia",
+ "triggers": [
+ "perrypedia"
+ ],
+ "regions": {
+ "default": "http://www.perrypedia.proc.org/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.perseus.tufts.edu/favicon.ico",
+ "name": "Perseus Digital Library",
+ "triggers": [
+ "perseus"
+ ],
+ "regions": {
+ "default": "http://www.perseus.tufts.edu/hopper/searchresults?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fa.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Persian Wikipedia",
+ "triggers": [
+ "wfa"
+ ],
+ "regions": {
+ "default": "https://fa.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fa.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Persian Wikipedia",
+ "triggers": [
+ "pwp"
+ ],
+ "regions": {
+ "default": "https://fa.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://launchpad.net/@@/launchpad.png",
+ "name": "Personal Package Archives for Ubuntu",
+ "triggers": [
+ "ppa"
+ ],
+ "regions": {
+ "default": "https://launchpad.net/ubuntu/+ppas?name_filter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://peso255.files.wordpress.com/2017/12/eyre-chibi.png?w=192",
+ "name": "Peso.fm",
+ "triggers": [
+ "peso"
+ ],
+ "regions": {
+ "default": "http://peso.fm/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.petitweb.fr/wordpress2014/wp-content/uploads/2014/07/favicon.png",
+ "name": "Petit Web",
+ "triggers": [
+ "petitweb"
+ ],
+ "regions": {
+ "default": "http://www.petitweb.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.petsmart.com/on/demandware.static/Sites-PetSmart-Site/-/default/dw3fd9554d/images/favicon-petsmart.ico",
+ "name": "PetSmart",
+ "triggers": [
+ "petsmart"
+ ],
+ "regions": {
+ "default": "http://www.petsmart.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.petsmart.ca/on/demandware.static/Sites-PetSmart_CA-Site/-/default/dw3fd9554d/images/favicon-petsmart.ico",
+ "name": "PetSmart Canada",
+ "triggers": [
+ "petsmartca"
+ ],
+ "regions": {
+ "default": "http://www.petsmart.ca/search?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "Pewdiepie",
+ "triggers": [
+ "pewdiepie"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/user/PewDiePie/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.pexels.com/assets/icons/pexels-icon-c89972421096df12c2b564575d6df896b612ca415b706033d2e44562f97343bc.png",
+ "name": "Pexels",
+ "triggers": [
+ "pexels"
+ ],
+ "regions": {
+ "default": "http://www.pexels.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.pgri.or.id/favicon.ico",
+ "name": "pgri",
+ "triggers": [
+ "pgri"
+ ],
+ "regions": {
+ "default": "http://www.pgri.or.id/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pharmgkb.org/favicon.ico",
+ "name": "PharmGKB",
+ "triggers": [
+ "pharmgkb",
+ "pgkb"
+ ],
+ "regions": {
+ "default": "https://www.pharmgkb.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://phet.colorado.edu/favicon.ico",
+ "name": "phet",
+ "triggers": [
+ "phet"
+ ],
+ "regions": {
+ "default": "http://phet.colorado.edu/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://latin.packhum.org/favicon.ico",
+ "name": "PHI Latin Texts",
+ "triggers": [
+ "plt"
+ ],
+ "regions": {
+ "default": "http://latin.packhum.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.philibertnet.com/themes/ukoostore/img/favicon/favicon.ico",
+ "name": "Philibert",
+ "triggers": [
+ "philibert"
+ ],
+ "regions": {
+ "default": "http://www.philibertnet.com/fr/recherche?orderby=position&orderway=desc&search_query={{{term}}}&submit_search=C%27est+parti+%21"
+ }
+ },
+ {
+ "favicon": "http://philpapers.org/assets/raw/icons/favicon-ppl.gif?",
+ "name": "PhilPapers",
+ "triggers": [
+ "philpapers"
+ ],
+ "regions": {
+ "default": "http://philpapers.org/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/phineasandferb/images/6/64/Favicon.ico/revision/latest?cb=20090711024600",
+ "name": "Phineas and Ferb Wiki",
+ "triggers": [
+ "pfwiki"
+ ],
+ "regions": {
+ "default": "http://phineasandferb.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://smedia.pnet-static.com/favicon.ico",
+ "name": "Phish.Net",
+ "triggers": [
+ "phish"
+ ],
+ "regions": {
+ "default": "http://phish.net/song/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.phonearena.com/favicon.ico",
+ "name": "Phone Arena",
+ "triggers": [
+ "phonearena"
+ ],
+ "regions": {
+ "default": "http://www.phonearena.com/search/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.phoronix.com/favicon-16x16.png",
+ "name": "Phoronix",
+ "triggers": [
+ "phoronix"
+ ],
+ "regions": {
+ "default": "https://www.phoronix.com/scan.php?page=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://photics.com/wp-content/uploads/2016/06/cropped-photics-icon-192x192.png",
+ "name": "Photics.com",
+ "triggers": [
+ "pho",
+ "photics"
+ ],
+ "regions": {
+ "default": "https://photics.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pic2.pbsrc.com/common/favicon.ico",
+ "name": "PhotoBucket.com",
+ "triggers": [
+ "photobucket"
+ ],
+ "regions": {
+ "default": "http://photobucket.com/images/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.photocrati.com/wp-content/themes/imagely-ansel/images/favicon.ico",
+ "name": "Photocrati",
+ "triggers": [
+ "photocrati"
+ ],
+ "regions": {
+ "default": "http://www.photocrati.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.shopfront.envato-static.com/icons/photodune.net/favicon.ico",
+ "name": "PhotoDune",
+ "triggers": [
+ "photodune"
+ ],
+ "regions": {
+ "default": "http://photodune.net/search?utf8=%E2%9C%93&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://photopin.com/favicon.ico",
+ "name": "PhotoPin",
+ "triggers": [
+ "photopin"
+ ],
+ "regions": {
+ "default": "http://photopin.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://php.net/favicon.ico",
+ "name": "PHP.net",
+ "triggers": [
+ "php",
+ "phpnet"
+ ],
+ "regions": {
+ "default": "https://secure.php.net/manual-lookup.php?pattern={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.php2python.com/favicon.ico",
+ "name": "Php2Python",
+ "triggers": [
+ "php2py"
+ ],
+ "regions": {
+ "default": "http://www.php2python.com/wiki/search/?search_term={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://phun.freeforums.org/favicon.ico",
+ "name": "PHUN Forum",
+ "triggers": [
+ "phun"
+ ],
+ "regions": {
+ "default": "http://phun.freeforums.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shop.pnp.co.za/pnpstorefront/_ui/responsive/theme-blue/images/pnp-favicon.ico",
+ "name": "Pick n Pay",
+ "triggers": [
+ "pnp"
+ ],
+ "regions": {
+ "default": "http://shop.pnp.co.za/b2c_pnp/b2c/display/(cpgsize=12&layout=5.1-6_2_4_86_92_8_3&uiarea=1&carea=%24ROOT&cpgnum=1&cquery={{{term}}})/.do?rf=y"
+ }
+ },
+ {
+ "favicon": "http://www.picktorrent.com/favicon.ico",
+ "name": "Picktorrent",
+ "triggers": [
+ "picktorrent"
+ ],
+ "regions": {
+ "default": "http://www.picktorrent.com/torrents/7c/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://picolisp.com/favicon.ico",
+ "name": "picolisp.com",
+ "triggers": [
+ "picolisp"
+ ],
+ "regions": {
+ "default": "http://picolisp.com/wiki/?home&*Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.picsearch.com/favicon.ico",
+ "name": "picsearch",
+ "triggers": [
+ "pic"
+ ],
+ "regions": {
+ "default": "http://www.picsearch.com/index.cgi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lt2.pigugroup.eu/favico/favicon-16x16.png",
+ "name": "Pigu",
+ "triggers": [
+ "pigu"
+ ],
+ "regions": {
+ "default": "http://pigu.lt/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cs.pikabu.ru/assets/favicon.ico",
+ "name": "Pikabu.ru",
+ "triggers": [
+ "pikabu"
+ ],
+ "regions": {
+ "default": "https://pikabu.ru/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pikminwiki.com/favicon.ico",
+ "name": "Pikipedia",
+ "triggers": [
+ "pikipedia"
+ ],
+ "regions": {
+ "default": "https://www.pikminwiki.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0174/1800/t/50/assets/favicon.png?13831420025061038088",
+ "name": "Pimoroni",
+ "triggers": [
+ "pimo"
+ ],
+ "regions": {
+ "default": "https://shop.pimoroni.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn6.bigcommerce.com/s-ktpi93fl/product_images/1434495089.ico",
+ "name": "Pimp My Keyboard",
+ "triggers": [
+ "pmk"
+ ],
+ "regions": {
+ "default": "http://pimpmykeyboard.com/search.php?Search=&search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pin1yin1.com/favicon.ico",
+ "name": "pin1yin1.com",
+ "triggers": [
+ "pinyin1"
+ ],
+ "regions": {
+ "default": "http://www.pin1yin1.com/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pinboard.in/favicon.ico",
+ "name": "Pinboard",
+ "triggers": [
+ "pb",
+ "pinboard"
+ ],
+ "regions": {
+ "default": "https://pinboard.in/search/?query={{{term}}}&mine=Search+Mine"
+ }
+ },
+ {
+ "favicon": "https://pinboard.in/favicon.ico",
+ "name": "Pinboard",
+ "triggers": [
+ "pinf"
+ ],
+ "regions": {
+ "default": "https://pinboard.in/search/?query={{{term}}}&fulltext=on"
+ }
+ },
+ {
+ "favicon": "https://pinboard.in/favicon.ico",
+ "name": "pinboard.in",
+ "triggers": [
+ "pina"
+ ],
+ "regions": {
+ "default": "https://pinboard.in/search/?query={{{term}}}&all=Search+All"
+ }
+ },
+ {
+ "favicon": "https://pinboard.in/favicon.ico",
+ "name": "Pinboard.in (Tag)",
+ "triggers": [
+ "pbtag"
+ ],
+ "regions": {
+ "default": "https://pinboard.in/t:{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://pinknews.co.uk/favicon.ico",
+ "name": "PinkNews",
+ "triggers": [
+ "pink"
+ ],
+ "regions": {
+ "default": "https://www.pinknews.co.uk/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://pinoutsguide.com/favicon.ico",
+ "name": "PinoutsGuide",
+ "triggers": [
+ "pinout"
+ ],
+ "regions": {
+ "default": "http://pinoutsguide.com/search.php?lang=eng&t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pinside.com/icons/favicon.ico",
+ "name": "Pinside Forums",
+ "triggers": [
+ "pinside"
+ ],
+ "regions": {
+ "default": "https://pinside.com/pinball/forum/search?s=1&q={{{term}}}&include_basement=0#results"
+ }
+ },
+ {
+ "favicon": "https://s.pinimg.com/webapp/style/images/favicon-9f8f9adf.png",
+ "name": "Pinterest",
+ "triggers": [
+ "p"
+ ],
+ "regions": {
+ "default": "https://www.pinterest.com/search/pins/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.pinimg.com/webapp/style/images/favicon-9f8f9adf.png",
+ "name": "Pinterest",
+ "triggers": [
+ "pin"
+ ],
+ "regions": {
+ "default": "http://pinterest.com/search/pins/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.pinimg.com/webapp/style/images/favicon-9f8f9adf.png",
+ "name": "pinterest.com/",
+ "triggers": [
+ "pinterest"
+ ],
+ "regions": {
+ "default": "https://pinterest.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pinvoke.net/favicon.ico",
+ "name": "Pinvoke.net",
+ "triggers": [
+ "pinvoke"
+ ],
+ "regions": {
+ "default": "http://pinvoke.net/search.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pypi.python.org/static/images/favicon.6a76275d.ico",
+ "name": "pip",
+ "triggers": [
+ "pip"
+ ],
+ "regions": {
+ "default": "https://pypi.python.org/pypi?:action=search&term={{{term}}}&submit=search"
+ }
+ },
+ {
+ "favicon": "https://pipl.com/favicon.ico",
+ "name": "Pipl",
+ "triggers": [
+ "pipl"
+ ],
+ "regions": {
+ "default": "https://pipl.com/search/?q={{{term}}}&l=&sloc=&in=5"
+ }
+ },
+ {
+ "favicon": "https://pipl.com/favicon.ico",
+ "name": "Pipl - Profile Search enguine",
+ "triggers": [
+ "BangPeople"
+ ],
+ "regions": {
+ "default": "https://pipl.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "Pirate Bay",
+ "triggers": [
+ "pirate"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://pirateproxy.net/favicon.ico",
+ "name": "Pirate Proxy",
+ "triggers": [
+ "pps"
+ ],
+ "regions": {
+ "default": "https://pirateproxy.net/search/{{{term}}}/0/7/0"
+ }
+ },
+ {
+ "favicon": "http://piratesea.com/favicon.ico",
+ "name": "Pirate Sea",
+ "triggers": [
+ "piratesea"
+ ],
+ "regions": {
+ "default": "http://piratesea.com/search.html?cx=partner-pub-5085982042281247%3A8072445375&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&siteurl=piratesea.com%2F&ref=&siteurl=piratesea.com%2F&ref=ddg"
+ }
+ },
+ {
+ "favicon": "http://piratetimes.net/wp-uploads/news/2012/11/fav-icon_32x32.png",
+ "name": "Pirate Times",
+ "triggers": [
+ "piratetimes"
+ ],
+ "regions": {
+ "default": "http://piratetimes.net/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "PirateBay",
+ "triggers": [
+ "piratebay",
+ "thepiratebay"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://passapalavra.info/wp-content/uploads/2018/02/favicon.png",
+ "name": "pirateproxy.net",
+ "triggers": [
+ "pp"
+ ],
+ "regions": {
+ "default": "http://passapalavra.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pitchfork.com/assets/misc/favicon-32.png",
+ "name": "Pitchfork Media",
+ "triggers": [
+ "pitchfork",
+ "p4k"
+ ],
+ "regions": {
+ "default": "http://pitchfork.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pixabay.com/favicon-16x16.png",
+ "name": "Pixabay",
+ "triggers": [
+ "px",
+ "pixabay",
+ "pxb"
+ ],
+ "regions": {
+ "default": "http://pixabay.com/en/photos/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pixabay.com/favicon-16x16.png",
+ "name": "Pixabay vector graphics",
+ "triggers": [
+ "pxvg"
+ ],
+ "regions": {
+ "default": "https://pixabay.com/en/photos/?image_type=vector&cat=&min_width=&min_height=&q={{{term}}}&order=latest"
+ }
+ },
+ {
+ "favicon": "https://pixabay.com/favicon-16x16.png",
+ "name": "Pixabay Vector Graphics",
+ "triggers": [
+ "pxv"
+ ],
+ "regions": {
+ "default": "https://pixabay.com/en/photos/?q={{{term}}}&image_type=vector&cat=&min_width=&min_height="
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/pokemon/images/6/64/Favicon.ico/revision/latest?cb=20080613163223",
+ "name": "Pixelmon Wiki",
+ "triggers": [
+ "pmon"
+ ],
+ "regions": {
+ "default": "http://pixelmon.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://78.media.tumblr.com/avatar_df099eeb57ad_128.pnj",
+ "name": "PixelPosts",
+ "triggers": [
+ "pixelposts"
+ ],
+ "regions": {
+ "default": "http://pixels.thetangible.in/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pixelprospector.com/wp-content/themes/website/data/img/favicon/p.png",
+ "name": "PixelProspector",
+ "triggers": [
+ "pixelp"
+ ],
+ "regions": {
+ "default": "http://www.pixelprospector.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pixiv.net/favicon.ico",
+ "name": "Pixiv",
+ "triggers": [
+ "pixiv"
+ ],
+ "regions": {
+ "default": "https://www.pixiv.net/search.php?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dic.pixiv.net/favicon.ico",
+ "name": "Pixiv Dictionary",
+ "triggers": [
+ "dicpixiv"
+ ],
+ "regions": {
+ "default": "https://dic.pixiv.net/a/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.pjmedia.com/static/2001172/images/icons/favicon-16x16.png",
+ "name": "PJ Media",
+ "triggers": [
+ "pjm"
+ ],
+ "regions": {
+ "default": "https://pjmedia.com/search/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://pkgsrc.se/images/favicon.ico",
+ "name": "Pkgsrc.se",
+ "triggers": [
+ "pkgsrc"
+ ],
+ "regions": {
+ "default": "http://pkgsrc.se/search.php?so={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pkmncards.com/wp-content/themes/pkmncards-2015/images/icons/favicon-16x16.png",
+ "name": "PkmnCards",
+ "triggers": [
+ "ptcg"
+ ],
+ "regions": {
+ "default": "http://pkmncards.com/?s={{{term}}}&display=card&sort=date"
+ }
+ },
+ {
+ "favicon": "//www.plaisio-cdn.gr/Images/SiteImages/favicon.ico",
+ "name": "plaisio.gr",
+ "triggers": [
+ "plaisio"
+ ],
+ "regions": {
+ "default": "http://www.plaisio.gr/search.aspx?query={{{term}}}&catalogue=all&mode=searchlist"
+ }
+ },
+ {
+ "favicon": "https://plan3t.info/favicon.ico",
+ "name": "Plan3t.info",
+ "triggers": [
+ "plan3t"
+ ],
+ "regions": {
+ "default": "http://plan3t.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://plancke.io/favicon.ico",
+ "name": "Plancke Hypixel Stats",
+ "triggers": [
+ "plancke"
+ ],
+ "regions": {
+ "default": "https://plancke.io/hypixel/player/stats/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.planespotters.net/favicon.ico",
+ "name": "planespotters.net",
+ "triggers": [
+ "plane"
+ ],
+ "regions": {
+ "default": "http://www.planespotters.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//estaticos.paginasamarillas.es/paginasamarillas/6_2_0/_common/images/favicon.ico",
+ "name": "Planetary Annihilation Wiki",
+ "triggers": [
+ "pa"
+ ],
+ "regions": {
+ "default": "https://www.paginasamarillas.es/search/all-ac/all-ma/all-pr/all-is/all-ci/all-ba/all-pu/all-nc/1?what={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.planetkey.de/assets/images/favicon.png",
+ "name": "PlanetKey",
+ "triggers": [
+ "planetkey"
+ ],
+ "regions": {
+ "default": "https://www.planetkey.de/suche/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://planetmath.org/favicon.ico",
+ "name": "PlanetMath",
+ "triggers": [
+ "planetmath"
+ ],
+ "regions": {
+ "default": "http://planetmath.org/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.planetminecraft.com/favicon.ico",
+ "name": "Planetminecraft",
+ "triggers": [
+ "planetmc",
+ "pmc"
+ ],
+ "regions": {
+ "default": "http://www.planetminecraft.com/resources/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.planetebd.com/favicon.ico",
+ "name": "Planète BD",
+ "triggers": [
+ "planetebd"
+ ],
+ "regions": {
+ "default": "http://www.planetebd.com/recherche?mot-clef={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//plase.net/app/uploads/2013/04/favicon.ico",
+ "name": "Plase.Net",
+ "triggers": [
+ "plase"
+ ],
+ "regions": {
+ "default": "https://plase.net/?s= {{{term}}}&post_type=product"
+ }
+ },
+ {
+ "favicon": "https://platekompaniet.no/favicon.ico",
+ "name": "Platekompaniet",
+ "triggers": [
+ "platekompaniet"
+ ],
+ "regions": {
+ "default": "https://platekompaniet.no/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://platformio.org/favicon.ico",
+ "name": "PlatformIO Libraries",
+ "triggers": [
+ "pio"
+ ],
+ "regions": {
+ "default": "http://platformio.org/lib/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ostfriesischelandschaft.de/fileadmin/layout/images/favicon.ico",
+ "name": "Plattdeutsch-Hochdeutsches Wörterbuch",
+ "triggers": [
+ "platt"
+ ],
+ "regions": {
+ "default": "http://www.platt-wb.de/platt-hoch/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.plattentests.de/img/favicon.png",
+ "name": "Plattentests.de",
+ "triggers": [
+ "plattentests"
+ ],
+ "regions": {
+ "default": "http://www.plattentests.de/suche.php?parameter=all&suche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.pacn.ws/favicon.ico?621",
+ "name": "Play-asia",
+ "triggers": [
+ "playasia"
+ ],
+ "regions": {
+ "default": "https://www.play-asia.com/paOS-19-71-99-15-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "//intl.rakuten-static.com/b/gb/image/am/o/favicon.png",
+ "name": "Play.com",
+ "triggers": [
+ "play.com"
+ ],
+ "regions": {
+ "default": "http://www.play.com/Search.html?searchstring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.playbuzz.com/content/images/faviconNew.png",
+ "name": "Playbuzz",
+ "triggers": [
+ "buzz"
+ ],
+ "regions": {
+ "default": "http://www.playbuzz.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://player.fm/favicon.ico",
+ "name": "Player FM",
+ "triggers": [
+ "player"
+ ],
+ "regions": {
+ "default": "https://player.fm/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/battlegrounds_gamepedia_en/6/64/Favicon.ico?version=53ba9cbb416b3c02651acf4354a1a4e9",
+ "name": "PLAYERUNKNOWN'S BATTLEGROUNDS Wiki",
+ "triggers": [
+ "pubgwiki"
+ ],
+ "regions": {
+ "default": "https://pubg.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.playlist.com/favicon.ico",
+ "name": "Playlist.com",
+ "triggers": [
+ "playlist"
+ ],
+ "regions": {
+ "default": "http://www.playlist.com/searchbeta/tracks#{{{term}}}/all/1"
+ }
+ },
+ {
+ "favicon": "https://www.playstation.com/favicon.ico",
+ "name": "Playstation",
+ "triggers": [
+ "ps",
+ "playstation"
+ ],
+ "regions": {
+ "default": "https://www.playstation.com/search-results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://store.playstation.com/img/favicons/favicon-797c65013063519546525db9296a4cf3.png",
+ "name": "Playstation Store",
+ "triggers": [
+ "psn"
+ ],
+ "regions": {
+ "default": "https://store.playstation.com/#!/en-us/search/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://store.playstation.com/img/favicons/favicon-797c65013063519546525db9296a4cf3.png",
+ "name": "Playstation Store UK",
+ "triggers": [
+ "psnuk"
+ ],
+ "regions": {
+ "default": "https://store.playstation.com/#!/en-gb/search/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.playterm.org/favicon.ico",
+ "name": "PlayTerm",
+ "triggers": [
+ "playterm"
+ ],
+ "regions": {
+ "default": "http://www.playterm.org/s/?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pleated-jeans.com/wp-content/uploads/2017/11/cropped-pj-192x192.png",
+ "name": "Pleated Jeans",
+ "triggers": [
+ "pleatedjeans"
+ ],
+ "regions": {
+ "default": "http://www.pleated-jeans.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://pleiades.stoa.org/favicon.ico",
+ "name": "Pleiades",
+ "triggers": [
+ "pleiades"
+ ],
+ "regions": {
+ "default": "http://pleiades.stoa.org/search?SearchableText={{{term}}}*&portal_type=Place&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://vortaro.net/img/favicon.ico",
+ "name": "Plena Ilustrita Vortaro",
+ "triggers": [
+ "piv",
+ "vortaro"
+ ],
+ "regions": {
+ "default": "http://vortaro.net/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vortaro.net/img/favicon.ico",
+ "name": "Plena Ilustrita Vortaro de Esperanto",
+ "triggers": [
+ "votraro"
+ ],
+ "regions": {
+ "default": "http://vortaro.net/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://plixid.com/wp-content/themes/fresh/images/favicon.ico",
+ "name": "Plixid",
+ "triggers": [
+ "plixid"
+ ],
+ "regions": {
+ "default": "http://plixid.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.plombservice.fr/media/favicon/default/logo_header.png",
+ "name": "Plombservice",
+ "triggers": [
+ "plombservice"
+ ],
+ "regions": {
+ "default": "http://www.plombservice.fr/catalogsearch/result/?imageField.x=0&imageField.y=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://plone.org/%20%20theme%20%20ploneorg.theme/static/favicon/favicon-16x16.png",
+ "name": "Plone",
+ "triggers": [
+ "plone"
+ ],
+ "regions": {
+ "default": "https://plone.org/@@search?SearchableText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.plosmedicine.org/plosmedicine/resource/img/favicon.ico",
+ "name": "PLoS Medicine",
+ "triggers": [
+ "plosmed"
+ ],
+ "regions": {
+ "default": "http://www.plosmedicine.org/search/simple?query={{{term}}}&filterJournals=PLoSMedicine"
+ }
+ },
+ {
+ "favicon": "https://ploum.net/wp-content/uploads/favicon11.ico",
+ "name": "ploum.net",
+ "triggers": [
+ "ploum"
+ ],
+ "regions": {
+ "default": "https://ploum.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pluggedin.com/favicon.ico?v=Km25Ab5NeE",
+ "name": "pluggedin",
+ "triggers": [
+ "plug"
+ ],
+ "regions": {
+ "default": "http://www.pluggedin.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pluralsight.com/etc/clientlibs/pluralsight/main/images/favicons/favicon.ico",
+ "name": "Pluralsight",
+ "triggers": [
+ "pluralsight"
+ ],
+ "regions": {
+ "default": "https://www.pluralsight.com/search/?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kontoutdrag.plusgirot.se/favicon.ico",
+ "name": "PlusGirot - Search PlusGiro number",
+ "triggers": [
+ "pgn"
+ ],
+ "regions": {
+ "default": "https://kontoutdrag.plusgirot.se/ku/sokko002?SO_KTO={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://plymouthpubliclibrary.bibliocommons.com/images/IN-NIDC-PPL/favicon.ico",
+ "name": "Plymouth (Indiana) Public Library",
+ "triggers": [
+ "ppl"
+ ],
+ "regions": {
+ "default": "https://plymouthpubliclibrary.bibliocommons.com/search?utf8=%E2%9C%93&t=smart&search_category=keyword&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.plyrics.com/favicon.ico",
+ "name": "PLyrics.com",
+ "triggers": [
+ "plyrics"
+ ],
+ "regions": {
+ "default": "http://search.plyrics.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pocket.dict.cc/favicon.ico",
+ "name": "Pocket dict.cc",
+ "triggers": [
+ "pdict.cc"
+ ],
+ "regions": {
+ "default": "https://pocket.dict.cc/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.getpocket.com/favicon.ico",
+ "name": "Pocket Explore",
+ "triggers": [
+ "pocketexplore"
+ ],
+ "regions": {
+ "default": "https://www.getpocket.com/explore/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pocketgamer.co.uk/favicon.ico",
+ "name": "Pocket Gamer",
+ "triggers": [
+ "pocketgamer"
+ ],
+ "regions": {
+ "default": "https://www.pocketgamer.co.uk/latest.asp?srch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pockettactics.com/assets/Uploads/pockettactics-favicon.png",
+ "name": "Pocket Tactics",
+ "triggers": [
+ "pockettactics"
+ ],
+ "regions": {
+ "default": "http://www.pockettactics.com/home/SearchForm?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.podcastscience.fm/wp-content/uploads/2017/09/cropped-PodcastScience_02_white_background_512_512-192x192.png",
+ "name": "Podcast Science",
+ "triggers": [
+ "psci"
+ ],
+ "regions": {
+ "default": "http://www.podcastscience.fm/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://podflix.com.br/favicon.ico",
+ "name": "Podflix",
+ "triggers": [
+ "podflix"
+ ],
+ "regions": {
+ "default": "http://podflix.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dgyqr055mfays.cloudfront.net/site/images/favicon-v2.ico",
+ "name": "Podio",
+ "triggers": [
+ "podio"
+ ],
+ "regions": {
+ "default": "https://podio.com/search#/query/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.podnapisi.net/static/favicon.ico",
+ "name": "Podnapisi",
+ "triggers": [
+ "podnapisi"
+ ],
+ "regions": {
+ "default": "https://www.podnapisi.net/ppodnapisi/search?sK={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.poemhunter.com/favicon.ico",
+ "name": "PoemHunter",
+ "triggers": [
+ "poem"
+ ],
+ "regions": {
+ "default": "http://www.poemhunter.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pokebip.com/images/icon.png?1457997583",
+ "name": "Pokdex Pokebip",
+ "triggers": [
+ "dex6g"
+ ],
+ "regions": {
+ "default": "https://www.pokebip.com/pokedex/index.php?phppage=recherche&req={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pokemondb.net/favicon.ico",
+ "name": "Pokemon Database",
+ "triggers": [
+ "pokedb",
+ "pokemondb"
+ ],
+ "regions": {
+ "default": "http://pokemondb.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/pokemmo/images/6/64/Favicon.ico/revision/latest?cb=20180322083810",
+ "name": "Pokemon MMO Wiki",
+ "triggers": [
+ "pokemmo"
+ ],
+ "regions": {
+ "default": "http://pokemmo.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pokemon.com/favicon.ico",
+ "name": "Pokemon Official Website Pokedex",
+ "triggers": [
+ "pokedex"
+ ],
+ "regions": {
+ "default": "https://www.pokemon.com/us/pokedex/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pokepedia.fr/wiki-logos/favicon.ico",
+ "name": "Pokepedia",
+ "triggers": [
+ "pokepedia"
+ ],
+ "regions": {
+ "default": "http://www.pokepedia.fr/index.php?title=Special%3ARecherche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pokecommunity.com/favicon.ico",
+ "name": "Pokécommunity",
+ "triggers": [
+ "pokecommunity"
+ ],
+ "regions": {
+ "default": "https://www.pokecommunity.com/search.php?do=q{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.pokemoncentral.it/favicon-16x16.png",
+ "name": "Pokémon Central Wiki",
+ "triggers": [
+ "pkmce",
+ "pocewiki"
+ ],
+ "regions": {
+ "default": "http://wiki.pokemoncentral.it/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dex.pokemonshowdown.com/favicon.ico",
+ "name": "Pokémon Showdown",
+ "triggers": [
+ "showdown"
+ ],
+ "regions": {
+ "default": "http://dex.pokemonshowdown.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.greenchu.de/favicon.ico",
+ "name": "PokéWiki",
+ "triggers": [
+ "pokewiki"
+ ],
+ "regions": {
+ "default": "http://www.pokewiki.de/index.php?search={{{term}}}&button=&title=Spezial%3ASuche"
+ }
+ },
+ {
+ "favicon": "http://emonitoring.poczta-polska.pl/hermes/themes/poczta-polska/library/assets/ico/favicon.png",
+ "name": "Polish Post tracking",
+ "triggers": [
+ "pptrack"
+ ],
+ "regions": {
+ "default": "http://emonitoring.poczta-polska.pl/?lang=en&numer={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Polish Wikipedia",
+ "triggers": [
+ "plw"
+ ],
+ "regions": {
+ "default": "https://pl.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.polito.it/images/favicon.png",
+ "name": "Politecnico di Torino",
+ "triggers": [
+ "polito"
+ ],
+ "regions": {
+ "default": "http://www.polito.it/search/?lang=it&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.politico.com/favicon-16x16.png",
+ "name": "Politico",
+ "triggers": [
+ "politico"
+ ],
+ "regions": {
+ "default": "http://www.politico.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.politico.eu/wp-content/themes/politico-eu/static/images/favicon/favicon.ico",
+ "name": "Politico EU",
+ "triggers": [
+ "politicoeu"
+ ],
+ "regions": {
+ "default": "http://www.politico.eu/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://politiken.dk/static/assets/favicon/politiken/favicon.ico",
+ "name": "Politiken.dk",
+ "triggers": [
+ "politiken"
+ ],
+ "regions": {
+ "default": "https://politiken.dk/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3vqw2nv1topde.cloudfront.net/images/theme-polk/favicon.ico",
+ "name": "Polk Audio",
+ "triggers": [
+ "polk"
+ ],
+ "regions": {
+ "default": "http://www.polkaudio.com/search/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pollin.de/themes/Frontend/Pollin/frontend/_public/src/img/favicon.ico",
+ "name": "Pollin Electronic",
+ "triggers": [
+ "pollin"
+ ],
+ "regions": {
+ "default": "http://www.pollin.de/shop/suchergebnis.html?S_TEXT={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pollstar.com/favicon.ico",
+ "name": "Pollstar",
+ "triggers": [
+ "concerts"
+ ],
+ "regions": {
+ "default": "http://www.pollstar.com/tour/searchall.pl?By=All&Content={{{term}}}&go_green.x=0&go_green.y=0"
+ }
+ },
+ {
+ "favicon": "http://pollstar.com/favicon.ico",
+ "name": "Pollstar",
+ "triggers": [
+ "pollstar"
+ ],
+ "regions": {
+ "default": "http://pollstar.com/tour/searchall.pl?By=All&Content={{{term}}}&go_green.x=0&go_green.y=0"
+ }
+ },
+ {
+ "favicon": "https://cdn.vox-cdn.com/uploads/hub/sbnu_logo_minimal/405/touch_icon_ipad_retina_1000x1000.7014.png",
+ "name": "Polygon",
+ "triggers": [
+ "polygon"
+ ],
+ "regions": {
+ "default": "https://www.polygon.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://polyratings.com/favicon.ico",
+ "name": "Polyratings",
+ "triggers": [
+ "polyratings"
+ ],
+ "regions": {
+ "default": "http://polyratings.com/search.php?type=ProfName&terms={{{term}}}&format=long&sort=name"
+ }
+ },
+ {
+ "favicon": "http://www.pond5.com/favicon-16x16.png",
+ "name": "Pond5",
+ "triggers": [
+ "pond5"
+ ],
+ "regions": {
+ "default": "http://www.pond5.com/video-sound-effects-music-after-effects-photos-illustrations/1/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons",
+ "triggers": [
+ "ponsde"
+ ],
+ "regions": {
+ "default": "https://de.pons.com/%C3%BCbersetzung?q={{{term}}}&l=deen&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons",
+ "triggers": [
+ "banglg"
+ ],
+ "regions": {
+ "default": "http://de.pons.com/übersetzung?q={{{term}}}&l=dela&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons",
+ "triggers": [
+ "ponsdeen"
+ ],
+ "regions": {
+ "default": "http://en.pons.com/translate?q={{{term}}}&l=deen&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons de<>es",
+ "triggers": [
+ "ponsdees"
+ ],
+ "regions": {
+ "default": "http://de.pons.com/%C3%BCbersetzung?q={{{term}}}&l=dees&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons de<>fr",
+ "triggers": [
+ "ponsdefr"
+ ],
+ "regions": {
+ "default": "http://de.pons.com/%C3%BCbersetzung?q={{{term}}}&l=defr&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons de<>it",
+ "triggers": [
+ "ponsdeit"
+ ],
+ "regions": {
+ "default": "http://de.pons.com/%C3%BCbersetzung?q={{{term}}}&l=deit&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "PONS Deutsch-Russisch",
+ "triggers": [
+ "ponsderu"
+ ],
+ "regions": {
+ "default": "http://en.pons.com/translate?q={{{term}}}&l=deru&in=&lf=de&cid="
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons German-Polish",
+ "triggers": [
+ "ponsdepl"
+ ],
+ "regions": {
+ "default": "http://en.pons.com/translate?q={{{term}}}&l=depl&in=&lf=de"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons it<>pl",
+ "triggers": [
+ "ponsitpl"
+ ],
+ "regions": {
+ "default": "http://pl.pons.com/tłumaczenie?q={{{term}}}&l=itpl"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons Online-Wörterbuch Latein",
+ "triggers": [
+ "ponsdela"
+ ],
+ "regions": {
+ "default": "https://de.pons.com/%C3%BCbersetzung?q={{{term}}}&l=dela"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons.eu",
+ "triggers": [
+ "ponspt"
+ ],
+ "regions": {
+ "default": "http://en.pons.com/translate?q={{{term}}}&l=enpt&in=&lf=en"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "PONS.eu",
+ "triggers": [
+ "pons"
+ ],
+ "regions": {
+ "default": "https://en.pons.com/translate?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "pons.eu",
+ "triggers": [
+ "ponsed"
+ ],
+ "regions": {
+ "default": "http://en.pons.com/translate?q={{{term}}}&l=deen&in=&lf=en"
+ }
+ },
+ {
+ "favicon": "https://assets.pons.com/assets/images/icons/favicon.ico",
+ "name": "Pons.eu",
+ "triggers": [
+ "ponsenfr"
+ ],
+ "regions": {
+ "default": "http://en.pons.eu/translate?q={{{term}}}&l=enfr&in=&lf=fr"
+ }
+ },
+ {
+ "favicon": "http://www.poolsupplyworld.com/favicon.ico",
+ "name": "Pool Supply World",
+ "triggers": [
+ "poolsupplyworld"
+ ],
+ "regions": {
+ "default": "http://www.poolsupplyworld.com/search.htm?searchBox={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.poppin.com/on/demandware.static/Sites-US-Site/-/default/dw9409b8eb/images/favicon.ico",
+ "name": "Poppin",
+ "triggers": [
+ "poppin"
+ ],
+ "regions": {
+ "default": "http://www.poppin.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.popsike.com/i/favicon.ico",
+ "name": "Popsike",
+ "triggers": [
+ "popsike"
+ ],
+ "regions": {
+ "default": "http://www.popsike.com/php/quicksearch.php?searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sjp.pwn.pl/favicon-32x32.png",
+ "name": "Poradnia Języka Polskiego",
+ "triggers": [
+ "por"
+ ],
+ "regions": {
+ "default": "http://sjp.pwn.pl/poradnia/szukaj/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://poromagia.com/static/favicon/favicon-16x16.png",
+ "name": "Poromagia",
+ "triggers": [
+ "poromagia"
+ ],
+ "regions": {
+ "default": "https://poromagia.com/fi/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ports.tantalo.net/favicon.ico",
+ "name": "Port Lookup",
+ "triggers": [
+ "port"
+ ],
+ "regions": {
+ "default": "http://ports.tantalo.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://port.hu/favicons/favicon.png",
+ "name": "PORT.hu",
+ "triggers": [
+ "porthu"
+ ],
+ "regions": {
+ "default": "http://port.hu/kereso?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://portableapps.com/sites/all/themes/responsive_bartik_pac/favicon.ico",
+ "name": "PortableApps.com",
+ "triggers": [
+ "papps"
+ ],
+ "regions": {
+ "default": "https://portableapps.com/search/node/{{{term}}}%20type%3Aapp"
+ }
+ },
+ {
+ "favicon": "https://portableapps.com/sites/all/themes/responsive_bartik_pac/favicon.ico",
+ "name": "PortableApps.com",
+ "triggers": [
+ "portableapps"
+ ],
+ "regions": {
+ "default": "https://portableapps.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.portagefilelist.de/favicon.ico",
+ "name": "Portage File List",
+ "triggers": [
+ "pfl"
+ ],
+ "regions": {
+ "default": "http://www.portagefilelist.de/site/query/file/?file={{{term}}}&unique_packages=yes&do"
+ }
+ },
+ {
+ "favicon": "http://theportalwiki.com/favicon.ico",
+ "name": "Portal Wiki",
+ "triggers": [
+ "portalwiki"
+ ],
+ "regions": {
+ "default": "http://theportalwiki.com/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://portallinux.es/wp-content/uploads/2015/11/LogoFlat_favicon.png",
+ "name": "PortalLinux",
+ "triggers": [
+ "portallinux"
+ ],
+ "regions": {
+ "default": "http://portallinux.es/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.post.at/img/ico/favicon.png",
+ "name": "Post.at",
+ "triggers": [
+ "postat"
+ ],
+ "regions": {
+ "default": "https://www.post.at/sendungsverfolgung.php/details?pnum1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.poste.it/favicon.ico",
+ "name": "Poste Italiane",
+ "triggers": [
+ "poste"
+ ],
+ "regions": {
+ "default": "https://www.poste.it/cerca/index.html#/risultati-spedizioni/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.posten.no:443/posten-template/_/image/60b33711-0a7f-40bc-974b-0209e50dae4a:91dbc5bf28c5fb069b0219ca5856e5da19efea66/square-192/posten-logo.png",
+ "name": "Posten",
+ "triggers": [
+ "posten"
+ ],
+ "regions": {
+ "default": "http://sporing.posten.no/sporing.html?lang=no&q={{{term}}}&submit="
+ }
+ },
+ {
+ "favicon": "https://www.postnord.se/build/20675317189/ui/images/favicons/favicon.ico",
+ "name": "Posten AB",
+ "triggers": [
+ "kolli"
+ ],
+ "regions": {
+ "default": "https://www.postnord.se/sv/verktyg/sok/Sidor/spara-brev-paket-och-pall.aspx?view=item&itemid={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://api.posteo.de/favicon.ico",
+ "name": "Posteo",
+ "triggers": [
+ "pgpkey"
+ ],
+ "regions": {
+ "default": "https://api.posteo.de/v1/public-keys/{{{term}}}?type=openpgp"
+ }
+ },
+ {
+ "favicon": "https://api.posteo.de/favicon.ico",
+ "name": "Posteo S/MIME Certificate Search",
+ "triggers": [
+ "smime"
+ ],
+ "regions": {
+ "default": "https://api.posteo.de/v1/public-keys/{{{term}}}?type=smime"
+ }
+ },
+ {
+ "favicon": "http://www.postgresql.org/favicon.ico",
+ "name": "Postgres",
+ "triggers": [
+ "postgres"
+ ],
+ "regions": {
+ "default": "http://www.postgresql.org/search/?q={{{term}}}&a=1&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.postgresql.org/favicon.ico",
+ "name": "PostgreSQL (Docs)",
+ "triggers": [
+ "psql"
+ ],
+ "regions": {
+ "default": "http://www.postgresql.org/search/?q={{{term}}} &a=1&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.postgresql.org/favicon.ico",
+ "name": "PostgreSQL documentation",
+ "triggers": [
+ "pgdocs"
+ ],
+ "regions": {
+ "default": "http://www.postgresql.org/search/?u=%2Fdocs%2F&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.postgresql.org/favicon.ico",
+ "name": "PostgreSQL.org",
+ "triggers": [
+ "postgresql"
+ ],
+ "regions": {
+ "default": "http://www.postgresql.org/search?q={{{term}}}&a=1&submit=Search"
+ }
+ },
+ {
+ "favicon": "//f10.pmo.ee/hb2exw_5lQHat_ZNKQ6UMFpe0dk=/256x256/smart/https://f.pmo.ee/logos/81/5ba210a7c2cc9705cfd32d200f09008d.png",
+ "name": "Postimees",
+ "triggers": [
+ "postimees",
+ "pms"
+ ],
+ "regions": {
+ "default": "http://www.postimees.ee/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.postnord.no/build/20675317189/ui/images/favicons/favicon.ico",
+ "name": "Postnord",
+ "triggers": [
+ "postnord"
+ ],
+ "regions": {
+ "default": "http://www.postnord.no/minside/SOPS/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.poststatus.com/wp-content/uploads/2015/10/cropped-logo-blue-192x192.png",
+ "name": "PostStatus",
+ "triggers": [
+ "poststatus"
+ ],
+ "regions": {
+ "default": "https://poststatus.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.potesaufeu.com/favicon.ico",
+ "name": "Potes Au Feu",
+ "triggers": [
+ "paf"
+ ],
+ "regions": {
+ "default": "http://www.potesaufeu.com/recherche/?_sf_s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.potterybarn.com/pbimgs/rk/images/i/201826/0045/images/favicon.ico",
+ "name": "Pottery Barn",
+ "triggers": [
+ "potterybarn"
+ ],
+ "regions": {
+ "default": "http://www.potterybarn.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.potterybarnkids.com/pkimgs/rk/images/i/201826/0021/images/favicon.ico",
+ "name": "Pottery Barn Kids",
+ "triggers": [
+ "pbkids"
+ ],
+ "regions": {
+ "default": "http://www.potterybarnkids.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://discover.poudrelibraries.org:80/iii/encore/resources/gold/images/favicon.ico",
+ "name": "Poudre River Public Library",
+ "triggers": [
+ "prpl"
+ ],
+ "regions": {
+ "default": "http://discover.poudrelibraries.org/iii/encore/search/C__S{{{term}}}__Orightresult__U?lang=eng"
+ }
+ },
+ {
+ "favicon": "https://pouet.net/favicon.ico",
+ "name": "Pouet",
+ "triggers": [
+ "pouet"
+ ],
+ "regions": {
+ "default": "https://pouet.net/search.php?what={{{term}}}&type=prod"
+ }
+ },
+ {
+ "favicon": "http://www.powdercity.com/favicon.ico",
+ "name": "Powder City",
+ "triggers": [
+ "powdercity"
+ ],
+ "regions": {
+ "default": "http://www.powdercity.com/search?type=product&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.powells.com/favicon.ico",
+ "name": "Powells",
+ "triggers": [
+ "powells"
+ ],
+ "regions": {
+ "default": "https://www.powells.com/SearchResults?kw=title:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://powerthesaurus.scdn1.secure.raxcdn.com/_favicons/favicon.ico",
+ "name": "Power Thesaurus",
+ "triggers": [
+ "pt"
+ ],
+ "regions": {
+ "default": "https://www.powerthesaurus.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.powershellgallery.com/Public/favicon.ico",
+ "name": "PowerShell Gallery",
+ "triggers": [
+ "psg"
+ ],
+ "regions": {
+ "default": "https://www.powershellgallery.com/items?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://powerui.kulestar.com/favicon.ico",
+ "name": "PowerUI",
+ "triggers": [
+ "powerui"
+ ],
+ "regions": {
+ "default": "https://powerui.kulestar.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pplware.sapo.pt/parceiros/pplware_chrome.png",
+ "name": "Pplware",
+ "triggers": [
+ "pplware"
+ ],
+ "regions": {
+ "default": "http://pplware.sapo.pt/resultados-da-pesquisa/?cx=partner-pub-1446920356351445%3Apqahidy83wu&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&sa=Pesquisar"
+ }
+ },
+ {
+ "favicon": "http://www.sul21.com.br/blogs/favicon.png",
+ "name": "PQP Bach",
+ "triggers": [
+ "pqpbach"
+ ],
+ "regions": {
+ "default": "http://pqpbach.sul21.com.br/?s={{{term}}}&submit=Pesquisa"
+ }
+ },
+ {
+ "favicon": "http://ar.prvademecum.com/favicon.ico",
+ "name": "PR Vademecum Argentina",
+ "triggers": [
+ "pr"
+ ],
+ "regions": {
+ "default": "http://ar.prvademecum.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pr0gramm.com/media/pr0gramm-favicon.png",
+ "name": "Pr0gramm",
+ "triggers": [
+ "pr0"
+ ],
+ "regions": {
+ "default": "https://pr0gramm.com/top/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pravidla.cz/favicon.ico?1",
+ "name": "Pravidla českého pravopisu",
+ "triggers": [
+ "pravidla"
+ ],
+ "regions": {
+ "default": "http://www.pravidla.cz/hledej/?qr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.precisionroller.com/favicon.ico?v=1",
+ "name": "Precision Roller",
+ "triggers": [
+ "proll"
+ ],
+ "regions": {
+ "default": "http://www.precisionroller.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://predb.me/favicon.ico",
+ "name": "PreDB.me",
+ "triggers": [
+ "predb"
+ ],
+ "regions": {
+ "default": "https://predb.me/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.predictit.org/favicon.ico",
+ "name": "PredictIt",
+ "triggers": [
+ "predictit"
+ ],
+ "regions": {
+ "default": "https://www.predictit.org/home/browse?Search={{{term}}}&isSearch=true"
+ }
+ },
+ {
+ "favicon": "http://www.sorocaba.sp.gov.br/wp-content/themes/pms-portal/images/favicon.ico",
+ "name": "Prefeitura de Sorocaba",
+ "triggers": [
+ "sorocaba"
+ ],
+ "regions": {
+ "default": "http://www.sorocaba.sp.gov.br/pesquisar/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.preloved.co.uk/favicon.ico",
+ "name": "Preloved",
+ "triggers": [
+ "preloved"
+ ],
+ "regions": {
+ "default": "http://preloved.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.presidentschoice.ca/favicon.ico",
+ "name": "President's Choice",
+ "triggers": [
+ "pc"
+ ],
+ "regions": {
+ "default": "http://www.presidentschoice.ca/en_CA/search-page.query@{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://medias2.prestastore.com/img/favicon.ico?1322601653",
+ "name": "PrestaShop Addons",
+ "triggers": [
+ "addons"
+ ],
+ "regions": {
+ "default": "https://addons.prestashop.com/fr/recherche?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.prestoclassical.co.uk/favicon.ico",
+ "name": "Presto Classical",
+ "triggers": [
+ "presto"
+ ],
+ "regions": {
+ "default": "http://www.prestoclassical.co.uk/search.php?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pretium.direct/favicon.png",
+ "name": "Pretium",
+ "triggers": [
+ "pretium"
+ ],
+ "regions": {
+ "default": "http://pretium.direct/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pretty-rfc.herokuapp.com/favicon.ico",
+ "name": "Pretty-RFC",
+ "triggers": [
+ "prfc"
+ ],
+ "regions": {
+ "default": "https://pretty-rfc.herokuapp.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://prezi-a.akamaihd.net/cover-versioned/676-55165809a9292653a7996200c74ad57a367b4a5e/common/img/favicon.ico?v=2",
+ "name": "Prezi",
+ "triggers": [
+ "prezi"
+ ],
+ "regions": {
+ "default": "https://prezi.com/explore/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.priberam.pt/favicon.ico",
+ "name": "Priberam",
+ "triggers": [
+ "priberam",
+ "dlpo"
+ ],
+ "regions": {
+ "default": "https://www.priberam.pt/dlpo/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.priberam.pt/favicon.ico",
+ "name": "Priberam - Conjugar",
+ "triggers": [
+ "dlpoc"
+ ],
+ "regions": {
+ "default": "https://www.priberam.pt/dlpo/Conjugar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://videogames.pricecharting.com/images/apple-touch-icon-precomposed.png",
+ "name": "Price Charting",
+ "triggers": [
+ "vp"
+ ],
+ "regions": {
+ "default": "http://videogames.pricecharting.com/search?q={{{term}}}&type=videogames&go=Go"
+ }
+ },
+ {
+ "favicon": "http://s4.cnnx.io/catalogue/us/pg/3638c837/theme/pricegrabber/resources/favicon.ico",
+ "name": "Price Grabber",
+ "triggers": [
+ "pricegrabber"
+ ],
+ "regions": {
+ "default": "https://www.pricegrabber.com/{{{term}}}/products.html/form_keyword=bbdee/st=query/sv=findit_top"
+ }
+ },
+ {
+ "favicon": "http://www.price.com.hk/images/favicon/price_favicon.ico",
+ "name": "Price.com.hk",
+ "triggers": [
+ "pricehk"
+ ],
+ "regions": {
+ "default": "http://www.price.com.hk/search.php?g=A&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://s4.cnnx.io/catalogue/us/pg/3638c837/theme/pricegrabber/resources/favicon.ico",
+ "name": "PriceGrabber",
+ "triggers": [
+ "pgrab"
+ ],
+ "regions": {
+ "default": "https://www.pricegrabber.com//search_request.php?form_keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.pricemania.sk/favicon.ico",
+ "name": "Pricemania",
+ "triggers": [
+ "pricemania"
+ ],
+ "regions": {
+ "default": "https://www.pricemania.sk/katalog/vyhladavanie/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.priceminister.com/favicon.ico",
+ "name": "Priceminister",
+ "triggers": [
+ "pminister",
+ "pm"
+ ],
+ "regions": {
+ "default": "http://www.priceminister.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.pricerunner.com/images/i/favicon-32x32-default.png",
+ "name": "Pricerunner",
+ "triggers": [
+ "pricerun"
+ ],
+ "regions": {
+ "default": "http://www.pricerunner.dk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.pricerunner.com/images/i/favicon-32x32-default.png",
+ "name": "PriceRunner",
+ "triggers": [
+ "pricerunner"
+ ],
+ "regions": {
+ "default": "http://www.pricerunner.se/pl/360-364563094/Herrklaeder/Jam-OD-Yellow-Yellow-over-dyed-jean-jacket-priser?other_hits=%3B25607%3B%3B&q=acne+jam+od+yellow+yellow&ref=redirect&search={{{term}}}&sort=4"
+ }
+ },
+ {
+ "favicon": "https://cdn.pricespy.co.nz/g/favicon_nz.ico",
+ "name": "pricespy.co.nz",
+ "triggers": [
+ "pricespy"
+ ],
+ "regions": {
+ "default": "http://pricespy.co.nz/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/rfe/g/favicon.960d4ec09156a9f26b54df9be2a80d60.ico",
+ "name": "pricespyuk",
+ "triggers": [
+ "psuk"
+ ],
+ "regions": {
+ "default": "http://pricespy.co.uk/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://i0.pricewatch.com/icons/favicon.ico",
+ "name": "Pricewatch",
+ "triggers": [
+ "pw"
+ ],
+ "regions": {
+ "default": "http://www.pricewatch.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.primeinspiration.com/favicon.ico",
+ "name": "Prime Inspiration",
+ "triggers": [
+ "primeinspire"
+ ],
+ "regions": {
+ "default": "https://www.primeinspiration.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images-na.ssl-images-amazon.com/images/G/01/digital/video/DVUI/favicons/favicon-128x128._CB525481107_.png",
+ "name": "Prime Video",
+ "triggers": [
+ "pv"
+ ],
+ "regions": {
+ "default": "https://www.primevideo.com/region/eu/search/ref=dv_web_nav_search?phrase={{{term}}}&ie=UTF8"
+ }
+ },
+ {
+ "favicon": "http://www.primewire.ag/favicon.ico",
+ "name": "PrimeWire",
+ "triggers": [
+ "pwire",
+ "primewire"
+ ],
+ "regions": {
+ "default": "http://www.primewire.ag/index.php?search_keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.primfx.com/q/agacead/images/192_icon.png",
+ "name": "PrimFX",
+ "triggers": [
+ "primfx"
+ ],
+ "regions": {
+ "default": "https://www.primfx.com/q/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://static.primiciasya.com/css/208/favicon.ico",
+ "name": "PrimiciasYA.com",
+ "triggers": [
+ "pya"
+ ],
+ "regions": {
+ "default": "http://www.primiciasya.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.primrose.co.uk/favicon.ico",
+ "name": "Primrose",
+ "triggers": [
+ "primrose"
+ ],
+ "regions": {
+ "default": "http://www.primrose.co.uk/search.mvc?search_term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.princeton.edu/themes/custom/tony/icons/favicon-32x32.png",
+ "name": "Princeton",
+ "triggers": [
+ "princeton"
+ ],
+ "regions": {
+ "default": "https://www.princeton.edu/main/tools/search/?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.princetonreview.com/content/images/favicon.png",
+ "name": "Princeton Review",
+ "triggers": [
+ "princetonreview"
+ ],
+ "regions": {
+ "default": "https://www.princetonreview.com/search-results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://principien.de/favicon.png",
+ "name": "Principien",
+ "triggers": [
+ "principien"
+ ],
+ "regions": {
+ "default": "http://principien.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.printfriendly.com/favicon.ico",
+ "name": "PrintFriendly",
+ "triggers": [
+ "pf",
+ "pdfy"
+ ],
+ "regions": {
+ "default": "https://www.printfriendly.com/print/?source=site&url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.prisguiden.no/static/app-icons/favicon.ico",
+ "name": "Prisguide.no",
+ "triggers": [
+ "prisguide"
+ ],
+ "regions": {
+ "default": "https://www.prisguide.no/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/g/favicon_se.ico",
+ "name": "Prisjakt",
+ "triggers": [
+ "prisjakt"
+ ],
+ "regions": {
+ "default": "https://www.prisjakt.nu/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/g/favicon_se.ico",
+ "name": "Prisjakt",
+ "triggers": [
+ "pris"
+ ],
+ "regions": {
+ "default": "http://www.prisjakt.nu/#rparams=ss={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/g/favicon_se.ico",
+ "name": "Prisjakt",
+ "triggers": [
+ "pj"
+ ],
+ "regions": {
+ "default": "http://www.prisjakt.nu/search.php?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.pji.nu/g/favicon_no.ico",
+ "name": "Prisjakt (Norway)",
+ "triggers": [
+ "pjno"
+ ],
+ "regions": {
+ "default": "http://www.prisjakt.no/#rparams=ss={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://privacygrade.org/assets/favicon.ico",
+ "name": "privacygrade.org",
+ "triggers": [
+ "privacygrade"
+ ],
+ "regions": {
+ "default": "http://privacygrade.org/apps/search?utf8=✓&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.procyclingstats.com/images/pcs-icon.ico",
+ "name": "Pro Cycling Stats",
+ "triggers": [
+ "pcs"
+ ],
+ "regions": {
+ "default": "http://www.procyclingstats.com/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2p3bygnnzw9w3.cloudfront.net/req/201806122/favicons/pfr/favicon-32.png",
+ "name": "Pro Football Reference",
+ "triggers": [
+ "fbr"
+ ],
+ "regions": {
+ "default": "http://www.pro-football-reference.com/player_search.fcgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.protoolreviews.com/wp-content/uploads/2014/10/cropped-PTR-favicon-192x192.png",
+ "name": "Pro Tool Reviews",
+ "triggers": [
+ "ptr"
+ ],
+ "regions": {
+ "default": "http://www.protoolreviews.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2p3bygnnzw9w3.cloudfront.net/req/201806122/favicons/pfr/favicon-32.png",
+ "name": "pro-football-reference.com",
+ "triggers": [
+ "pfr"
+ ],
+ "regions": {
+ "default": "http://www.pro-football-reference.com/search/search.fcgi?search={{{term}}}&pid="
+ }
+ },
+ {
+ "favicon": "https://dc75lzxypo94l.cloudfront.net/probuilds/favicon.png",
+ "name": "Probuilds",
+ "triggers": [
+ "probuilds"
+ ],
+ "regions": {
+ "default": "http://www.probuilds.net/champions?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dc75lzxypo94l.cloudfront.net/probuilds/favicon.png",
+ "name": "Probuilds Champion",
+ "triggers": [
+ "pbc"
+ ],
+ "regions": {
+ "default": "http://www.probuilds.net/champions/details/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pnas.org/sites/default/files/images/favicon.ico",
+ "name": "Proceedings of the National Academy of Sciences",
+ "triggers": [
+ "pnas"
+ ],
+ "regions": {
+ "default": "http://www.pnas.org/search?fulltext={{{term}}}&submit=yes"
+ }
+ },
+ {
+ "favicon": "http://www.procog.com/favicon.ico",
+ "name": "ProCog",
+ "triggers": [
+ "procog"
+ ],
+ "regions": {
+ "default": "http://www.procog.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.procook.co.uk/favicon.ico",
+ "name": "ProCook",
+ "triggers": [
+ "procook"
+ ],
+ "regions": {
+ "default": "http://www.procook.co.uk/shop/search/?searchDep=main+site&searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.producthunt.com/favicon.ico",
+ "name": "Product Hunt",
+ "triggers": [
+ "ph"
+ ],
+ "regions": {
+ "default": "https://www.producthunt.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://producthunt.com/favicon.ico",
+ "name": "Product Hunt",
+ "triggers": [
+ "producthunt"
+ ],
+ "regions": {
+ "default": "https://producthunt.com/#!/s/posts/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.producthunt.com/favicon.ico",
+ "name": "Producthunt",
+ "triggers": [
+ "prodhun"
+ ],
+ "regions": {
+ "default": "https://www.producthunt.com/#!/s/posts/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.proff.no/img/ico/favicon.ico",
+ "name": "Proff",
+ "triggers": [
+ "proff"
+ ],
+ "regions": {
+ "default": "https://www.proff.no/rollesøk?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.profitopia.de/favicon.ico",
+ "name": "Profitopia Help",
+ "triggers": [
+ "profitopia"
+ ],
+ "regions": {
+ "default": "https://help.profitopia.de/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://progaccess33.net/favicon.ico",
+ "name": "ProgAccess33",
+ "triggers": [
+ "progaccess"
+ ],
+ "regions": {
+ "default": "https://progaccess33.net/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.programmableweb.com/sites/default/files/pwfav.png",
+ "name": "ProgrammableWeb",
+ "triggers": [
+ "programmableweb"
+ ],
+ "regions": {
+ "default": "https://www.programmableweb.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/softwareengineering/img/favicon.ico?v=41d685b6de3b",
+ "name": "programmers.stackexchange.com",
+ "triggers": [
+ "pro",
+ "prog"
+ ],
+ "regions": {
+ "default": "http://programmers.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/codegolf/img/favicon.ico?v=38413b30209a",
+ "name": "Programming Puzzles & Code Golf Stack Exchange",
+ "triggers": [
+ "ppcg"
+ ],
+ "regions": {
+ "default": "https://codegolf.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.programmingsimplified.com/sites/default/files/logo.png",
+ "name": "Programming Simplified",
+ "triggers": [
+ "psimplified"
+ ],
+ "regions": {
+ "default": "http://www.programmingsimplified.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://knowledgebase.progress.com/favicon.ico",
+ "name": "Progress",
+ "triggers": [
+ "progress"
+ ],
+ "regions": {
+ "default": "http://knowledgebase.progress.com/pkb_Home?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.progress.com/cfs-file.ashx/__key/themefiles/s-7e987e474b714b01ba29b4336720c446-files/favicon.ico",
+ "name": "Progress Community",
+ "triggers": [
+ "procomm"
+ ],
+ "regions": {
+ "default": "https://community.progress.com/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://daks2k3a4ib2z.cloudfront.net/56b26b90d28b886833e7a042/57cb6064e71ebf393854d217_progress-fav.png",
+ "name": "Progress.org",
+ "triggers": [
+ "progress.org"
+ ],
+ "regions": {
+ "default": "http://www.progress.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.progressiverc.com/media/favicon/default/favicon.ico",
+ "name": "ProgressiveRC",
+ "triggers": [
+ "prc"
+ ],
+ "regions": {
+ "default": "http://www.progressiverc.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gutenberg.org/favicon.ico",
+ "name": "Project Gutenberg",
+ "triggers": [
+ "projectgutenberg",
+ "pg",
+ "gutenberg"
+ ],
+ "regions": {
+ "default": "https://www.gutenberg.org/ebooks/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.projecthoneypot.org/favicon.ico",
+ "name": "Project Honey Pot",
+ "triggers": [
+ "honeypot"
+ ],
+ "regions": {
+ "default": "https://www.projecthoneypot.org/ip_{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.project-imas.com/favicon.ico",
+ "name": "Project iM@S Wiki",
+ "triggers": [
+ "imas"
+ ],
+ "regions": {
+ "default": "http://www.project-imas.com/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.project-imas.com/favicon.ico",
+ "name": "project-imas.com wiki",
+ "triggers": [
+ "imaswiki"
+ ],
+ "regions": {
+ "default": "http://www.project-imas.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spiegel.de/favicon.ico",
+ "name": "Projekt Gutenberg-DE",
+ "triggers": [
+ "pgde"
+ ],
+ "regions": {
+ "default": "http://gutenberg.spiegel.de/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.gutenberg.org/favicon.ico",
+ "name": "Projet Gutenberg Fr",
+ "triggers": [
+ "pgfr"
+ ],
+ "regions": {
+ "default": "https://www.gutenberg.org/ebooks/search/?query=l.fr+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nationalarchives.gov.uk/wp-content/themes/tna-base/img/favicon.ico",
+ "name": "PRONOM technical registry (The National Archives)",
+ "triggers": [
+ "puid"
+ ],
+ "regions": {
+ "default": "https://nationalarchives.gov.uk/PRONOM/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://proofwiki.org/favicon.ico",
+ "name": "Proof Wiki",
+ "triggers": [
+ "proof"
+ ],
+ "regions": {
+ "default": "https://proofwiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.proofwiki.org/favicon.ico",
+ "name": "ProofWiki",
+ "triggers": [
+ "proofwiki"
+ ],
+ "regions": {
+ "default": "http://www.proofwiki.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.proshop.dk/favicon-128.png",
+ "name": "Proshop",
+ "triggers": [
+ "proshop"
+ ],
+ "regions": {
+ "default": "https://www.proshop.dk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.p7s1.io/xfiles/prosieben/favicon.ico",
+ "name": "ProSieben",
+ "triggers": [
+ "pro7"
+ ],
+ "regions": {
+ "default": "http://www.prosieben.de/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.prothom-alo.com/favicon.ico",
+ "name": "Prothom Alo (EN)",
+ "triggers": [
+ "pa-en"
+ ],
+ "regions": {
+ "default": "http://en.prothom-alo.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://protocols.io/img/favicon.ico",
+ "name": "Protocols.io",
+ "triggers": [
+ "protocolsio"
+ ],
+ "regions": {
+ "default": "https://protocols.io/search?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://proxer.me/images/favicon.ico",
+ "name": "Proxer.me",
+ "triggers": [
+ "proxerme"
+ ],
+ "regions": {
+ "default": "https://proxer.me/suche?set=suche&name={{{term}}}&sprache=alle&typ=all&genre=&nogenre=&sort=name&length=&length-limit=down#liste"
+ }
+ },
+ {
+ "favicon": "http://www.pseudomonas.com/favicon.ico",
+ "name": "Pseudomonas Genome Database",
+ "triggers": [
+ "pao1"
+ ],
+ "regions": {
+ "default": "http://www.pseudomonas.com/searchAnnotation.do?strain_ids=107&field1=commonNameFields&input1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.gamergen.com/img/gamergen-128x128.png",
+ "name": "PSP GEN",
+ "triggers": [
+ "pspgen"
+ ],
+ "regions": {
+ "default": "http://www.pspgen.com/s/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://psprices.com/static/favicon.3e8b0367f822.ico",
+ "name": "PSPrices",
+ "triggers": [
+ "psprices"
+ ],
+ "regions": {
+ "default": "https://psprices.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://psychonautwiki.org/favicon.ico",
+ "name": "psychonaut wiki",
+ "triggers": [
+ "pnw",
+ "pwiki"
+ ],
+ "regions": {
+ "default": "https://psychonautwiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ptv.vic.gov.au/favicon.ico",
+ "name": "PTV Victoria",
+ "triggers": [
+ "ptv"
+ ],
+ "regions": {
+ "default": "https://www.ptv.vic.gov.au/timetables/ModeSearchForm?Mode=&Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "PubChem",
+ "triggers": [
+ "pubchem"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/pccompound/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://publicintelligence.net/pics/favicon-128.png",
+ "name": "Public Intelligence",
+ "triggers": [
+ "publicintelligence"
+ ],
+ "regions": {
+ "default": "https://publicintelligence.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://publiclab.org/images/pl-255.png",
+ "name": "Public Lab",
+ "triggers": [
+ "pl"
+ ],
+ "regions": {
+ "default": "http://publiclab.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://publichd.se/wp-content/uploads/sites/219/2017/04/cropped-iStock-517668014-192x192.jpg",
+ "name": "PublicHD",
+ "triggers": [
+ "publichd"
+ ],
+ "regions": {
+ "default": "http://www.publichd.se/index.php?page=torrents&search={{{term}}}&category=0&active=0"
+ }
+ },
+ {
+ "favicon": "https://static.publico.pt/files/site/assets/img/ico/favicon.ico?v=Km29lWbk4K",
+ "name": "Publico",
+ "triggers": [
+ "publico"
+ ],
+ "regions": {
+ "default": "http://www.publico.pt/pesquisa?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pch.com/templates/publishersclearinghouse4/favicon.ico",
+ "name": "Publishers Clearing House",
+ "triggers": [
+ "pch"
+ ],
+ "regions": {
+ "default": "http://pch.com/?={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "PubMed",
+ "triggers": [
+ "pubmed",
+ "pmd",
+ "pmid"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/pubmed/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "Pubmed",
+ "triggers": [
+ "pub"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/pubmed?EntrezSystem2.PEntrez.Pubmed.SearchBar.Db=pubmed&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pubsgalore.co.uk/favicon.ico",
+ "name": "Pubs Galore",
+ "triggers": [
+ "pubs"
+ ],
+ "regions": {
+ "default": "http://www.pubsgalore.co.uk/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.puella-magi.net/favicon.ico",
+ "name": "Puella Magi Madoka Magica Wiki",
+ "triggers": [
+ "pmmm"
+ ],
+ "regions": {
+ "default": "https://wiki.puella-magi.net/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pumpbiz.com/skin/frontend/smartwave/porto/favicon.ico",
+ "name": "PumpBiz",
+ "triggers": [
+ "pumpbiz"
+ ],
+ "regions": {
+ "default": "http://www.pumpbiz.com/shopping_search.asp?searchString={{{term}}}&searchType=0&FIND.x=0&FIND.y=0&FIND=FIND+IT"
+ }
+ },
+ {
+ "favicon": "https://punctumbooks.com/favicon.ico",
+ "name": "punctum books",
+ "triggers": [
+ "punctumbooks"
+ ],
+ "regions": {
+ "default": "https://punctumbooks.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.punguzo.com/favicon.ico",
+ "name": "Punguzo.com",
+ "triggers": [
+ "punguzo"
+ ],
+ "regions": {
+ "default": "http://www.punguzo.com/?n={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://docs.puppet.com/favicon.ico?v=20160406",
+ "name": "Puppet Docs",
+ "triggers": [
+ "puptype"
+ ],
+ "regions": {
+ "default": "https://docs.puppet.com/puppet/latest/type.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forge.puppetlabs.com/assets/e590ef2/images/favicon.ico",
+ "name": "Puppet Forge",
+ "triggers": [
+ "puppet"
+ ],
+ "regions": {
+ "default": "https://forge.puppetlabs.com/modules?q={{{term}}}&commit=Go"
+ }
+ },
+ {
+ "favicon": "http://puredata.info/favicon.ico",
+ "name": "Pure Data",
+ "triggers": [
+ "puredata"
+ ],
+ "regions": {
+ "default": "http://puredata.info/search?SearchableText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eshiponline.purolator.com/favicon.ico",
+ "name": "Purolator shipment tracking",
+ "triggers": [
+ "purolator"
+ ],
+ "regions": {
+ "default": "https://eshiponline.purolator.com/ShipOnline/Public/Track/TrackingDetails.aspx?pin={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.freefind.com/favicon.ico",
+ "name": "PurpleMath",
+ "triggers": [
+ "purplemath"
+ ],
+ "regions": {
+ "default": "https://search.freefind.com/find.html?id=5014414&pageid=r&mode=ALL&n=0&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pursuit.purescript.org/static/res/favicon/favicon.ico?etag=WTfCrMG3",
+ "name": "Pursuit",
+ "triggers": [
+ "pursuit"
+ ],
+ "regions": {
+ "default": "http://pursuit.purescript.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://prpm.dbp.gov.my/favicon.ico",
+ "name": "Pusat Rujukan Persuratan Melayu",
+ "triggers": [
+ "kamus",
+ "prpm"
+ ],
+ "regions": {
+ "default": "http://prpm.dbp.gov.my/Search.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://putonyourcakepants.com/wp-content/uploads/2016/01/cropped-cropped-CakePants_Logo_PinkNavy_NoBack_2900x1360-192x192.png",
+ "name": "Put on Your Cake Pants",
+ "triggers": [
+ "poycp"
+ ],
+ "regions": {
+ "default": "http://putonyourcakepants.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.puzzledragonx.com/en/img/favicon.ico",
+ "name": "Puzzle & Dragon Database",
+ "triggers": [
+ "padx"
+ ],
+ "regions": {
+ "default": "http://www.puzzledragonx.com/en/search.asp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://puzzledragonx.com/en/img/favicon.ico",
+ "name": "Puzzle & Dragons Database",
+ "triggers": [
+ "pdx"
+ ],
+ "regions": {
+ "default": "http://puzzledragonx.com/en/search.asp?q={{{term}}}&searchoption=1"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/pad/images/6/64/Favicon.ico/revision/latest?cb=20130330130537",
+ "name": "Puzzle & Dragons Wiki",
+ "triggers": [
+ "pad"
+ ],
+ "regions": {
+ "default": "http://pad.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/puzzling/img/favicon.ico?v=fc7753fe28c4",
+ "name": "Puzzling",
+ "triggers": [
+ "puzzse"
+ ],
+ "regions": {
+ "default": "https://puzzling.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.puzzlopia.com/favicon-16x16.png",
+ "name": "Puzzlopia",
+ "triggers": [
+ "puzzles"
+ ],
+ "regions": {
+ "default": "http://www.puzzlopia.com/search-results?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pylint-messages.wikidot.com/local--favicon/favicon.gif",
+ "name": "PyLint Messages",
+ "triggers": [
+ "pylm"
+ ],
+ "regions": {
+ "default": "http://pylint-messages.wikidot.com/messages:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pylonshq.com/favicon.ico",
+ "name": "Pylons Docs",
+ "triggers": [
+ "pylons"
+ ],
+ "regions": {
+ "default": "http://pylonshq.com/search#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pypi.org/static/images/favicon.6a76275d.ico",
+ "name": "PyPI",
+ "triggers": [
+ "pypi"
+ ],
+ "regions": {
+ "default": "https://pypi.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.pylonsproject.org/projects/pyramid/en/latest/_static/pylons.ico",
+ "name": "Pyramid Web Framework",
+ "triggers": [
+ "pyramid"
+ ],
+ "regions": {
+ "default": "https://docs.pylonsproject.org/projects/pyramid/en/latest/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.pyside.org/favicon.ico?t=2016041300",
+ "name": "PySide",
+ "triggers": [
+ "pyside"
+ ],
+ "regions": {
+ "default": "http://www.pyside.org/docs/pyside/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://docs.python.org/2/_static/py.png",
+ "name": "Python",
+ "triggers": [
+ "python2"
+ ],
+ "regions": {
+ "default": "https://docs.python.org/2/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.python.org/3/_static/py.png",
+ "name": "Python",
+ "triggers": [
+ "py",
+ "python",
+ "python3",
+ "py3"
+ ],
+ "regions": {
+ "default": "https://docs.python.org/3/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/3/_static/py.png",
+ "name": "Python 3 Docs",
+ "triggers": [
+ "py3k"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/3/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.python.org/3.6/library/_static/py.png",
+ "name": "Python 3.6 Documentation",
+ "triggers": [
+ "py36doc"
+ ],
+ "regions": {
+ "default": "https://docs.python.org/3.6/library/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/dev/_static/py.png",
+ "name": "Python dev doc",
+ "triggers": [
+ "pythondev"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/dev/search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://docs.python.org/3.4/_static/py.png",
+ "name": "Python Documentation",
+ "triggers": [
+ "py34"
+ ],
+ "regions": {
+ "default": "https://docs.python.org/3.4/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.python.org/static/favicon.ico",
+ "name": "Python PEP",
+ "triggers": [
+ "pep"
+ ],
+ "regions": {
+ "default": "https://www.python.org/dev/peps/pep-{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/2.6/_static/py.png",
+ "name": "Python2.6 Docs",
+ "triggers": [
+ "python26"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/2.6/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/2.7/_static/py.png",
+ "name": "Python2.7 Docs",
+ "triggers": [
+ "python27"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/2.7/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/3.0/_static/py.png",
+ "name": "Python3.0 Docs",
+ "triggers": [
+ "python30"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/3.0/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/3.1/_static/py.png",
+ "name": "Python3.1 Docs",
+ "triggers": [
+ "python31"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/3.1/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://docs.python.org/3.2/_static/py.png",
+ "name": "Python3.2 Docs",
+ "triggers": [
+ "python32"
+ ],
+ "regions": {
+ "default": "http://docs.python.org/3.2/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://pyvideo.org/theme/images/favicon.png",
+ "name": "pyvideo.org",
+ "triggers": [
+ "pyvideo"
+ ],
+ "regions": {
+ "default": "http://pyvideo.org/search?models=videos.video&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.paxinasgalegas.es/img/favicons/favicon-16x16.png",
+ "name": "Páxinas Galegas",
+ "triggers": [
+ "paxgal"
+ ],
+ "regions": {
+ "default": "http://www.paxinasgalegas.es/resultados.aspx?tipo=0&texto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.qiita.com/assets/favicons/public/production-4ff10c1e1e2b5fcb353ff9cafdd56c70.ico",
+ "name": "Qiita",
+ "triggers": [
+ "qiita"
+ ],
+ "regions": {
+ "default": "http://qiita.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-www.qobuz.com/img/favicon-128x128.png",
+ "name": "Qobuz",
+ "triggers": [
+ "qobuz"
+ ],
+ "regions": {
+ "default": "http://www.qobuz.com/recherche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Qomun",
+ "triggers": [
+ "qomun"
+ ],
+ "regions": {
+ "default": "http://en.qomun.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://qpongo.com/favicon.ico",
+ "name": "Qpongo",
+ "triggers": [
+ "qpon"
+ ],
+ "regions": {
+ "default": "http://qpongo.com/ddgsearch.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3.amazonaws.com/files.qrz.com/static/qrz/favicon.ico",
+ "name": "QRZ.com",
+ "triggers": [
+ "qrz"
+ ],
+ "regions": {
+ "default": "https://www.qrz.com/db/?callsign={{{term}}}&cmd=Search"
+ }
+ },
+ {
+ "favicon": "http://qrzcq.com/img/og.png",
+ "name": "QRZCQ",
+ "triggers": [
+ "call"
+ ],
+ "regions": {
+ "default": "http://qrzcq.com/?q={{{term}}}&action=search&page=search"
+ }
+ },
+ {
+ "favicon": "http://qrzcq.com/img/og.png",
+ "name": "QRZCQ Database",
+ "triggers": [
+ "cq"
+ ],
+ "regions": {
+ "default": "http://qrzcq.com/call/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d33sqmjvzgs8hq.cloudfront.net/wp-content/themes/oneqt/assets/images/favicon-16x16.png",
+ "name": "Qt 5 Documentation",
+ "triggers": [
+ "qt5",
+ "qt"
+ ],
+ "regions": {
+ "default": "https://doc.qt.io/qt-5/search-results.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d33sqmjvzgs8hq.cloudfront.net/wp-content/themes/oneqt/assets/images/favicon-16x16.png",
+ "name": "Qt Documentation",
+ "triggers": [
+ "qt4"
+ ],
+ "regions": {
+ "default": "https://doc.qt.io/qt-4.8/search-results.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.qualtrics.com/favicon.ico",
+ "name": "Qualtrics Support",
+ "triggers": [
+ "qual"
+ ],
+ "regions": {
+ "default": "https://www.qualtrics.com/support/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ssllabs.com/favicon.ico",
+ "name": "Qualys SSL Labs",
+ "triggers": [
+ "qssl"
+ ],
+ "regions": {
+ "default": "https://www.ssllabs.com/ssldb/analyze.html?d={{{term}}}&hideResults=on"
+ }
+ },
+ {
+ "favicon": "https://www.quandl.com/assets/quandl-icon-32x32-092ea5839e97c68c141f81fa64724a7007e9df6c10e225b310b2c5258500564b.png",
+ "name": "Quandl",
+ "triggers": [
+ "quandl"
+ ],
+ "regions": {
+ "default": "https://www.quandl.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.quantcast.com/wp-content/themes/quantcast/dist/images/favicon.ico",
+ "name": "Quantcast",
+ "triggers": [
+ "quantcast"
+ ],
+ "regions": {
+ "default": "https://www.quantcast.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://qz.com/wp-content/uploads/2018/03/qz_og_img1.png?w=192",
+ "name": "Quartz",
+ "triggers": [
+ "quartz",
+ "qz"
+ ],
+ "regions": {
+ "default": "http://qz.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.queenslibrary.org/sites/all/themes/phoenix/favicon.ico",
+ "name": "QueensLibrary",
+ "triggers": [
+ "queenslibrary"
+ ],
+ "regions": {
+ "default": "http://www.queenslibrary.org/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.querycat.com/favicon.ico",
+ "name": "QueryCat",
+ "triggers": [
+ "querycat"
+ ],
+ "regions": {
+ "default": "http://www.querycat.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://queryposts.com/favicon.ico",
+ "name": "QueryPosts",
+ "triggers": [
+ "queryposts"
+ ],
+ "regions": {
+ "default": "http://queryposts.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.qcunbon.be/content/images/favicon.png",
+ "name": "Qui connaît un bon : Bruxelles",
+ "triggers": [
+ "qcubbrux"
+ ],
+ "regions": {
+ "default": "http://www.qcunbon.be/bruxelles?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.qth.fr/blog/wp-content/themes/arclite/favicon.ico",
+ "name": "Quick Troll Hosted",
+ "triggers": [
+ "fanch",
+ "qth"
+ ],
+ "regions": {
+ "default": "http://www.qth.fr/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://quickdocs.org/favicon.ico",
+ "name": "Quickdocs",
+ "triggers": [
+ "quickdocs"
+ ],
+ "regions": {
+ "default": "http://quickdocs.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://m.quickmeme.com/favicon.ico",
+ "name": "quickmeme",
+ "triggers": [
+ "qme"
+ ],
+ "regions": {
+ "default": "http://m.quickmeme.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://quimbee-herokuapp-com.global.ssl.fastly.net/assets/favicon-246599535eee148f1815f9900ec2fc984c84e4d52e809478e5eb7503aef7b5ba.ico",
+ "name": "Quimbee",
+ "triggers": [
+ "qb"
+ ],
+ "regions": {
+ "default": "https://www.quimbee.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://quinapalus.com/favicon.ico",
+ "name": "Quinapalus",
+ "triggers": [
+ "qat"
+ ],
+ "regions": {
+ "default": "http://quinapalus.com/cgi-bin/qat?pat={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://quirky.com/wp-content/uploads/2017/09/quirky-icon.png",
+ "name": "Quirky",
+ "triggers": [
+ "quirky"
+ ],
+ "regions": {
+ "default": "https://www.quirky.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://quizlet.com/a/i/favicon.MDra.ico",
+ "name": "Quizlet",
+ "triggers": [
+ "quizlet"
+ ],
+ "regions": {
+ "default": "http://quizlet.com/subject/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.qumran2.net/favicon.ico",
+ "name": "Qumran",
+ "triggers": [
+ "qum"
+ ],
+ "regions": {
+ "default": "http://www.qumran2.net/indice.php?parole={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://qsf.fs.quoracdn.net/-3-images.favicon.ico-26-3f34badcb59c8f6c.ico",
+ "name": "Quora",
+ "triggers": [
+ "quora"
+ ],
+ "regions": {
+ "default": "https://www.quora.com/search?q={{{term}}}&context_type=&context_id="
+ }
+ },
+ {
+ "favicon": "https://qsf.fs.quoracdn.net/-3-images.favicon.ico-26-3f34badcb59c8f6c.ico",
+ "name": "Quora",
+ "triggers": [
+ "q"
+ ],
+ "regions": {
+ "default": "https://www.quora.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://quttera.com/favicon.ico",
+ "name": "Quttera",
+ "triggers": [
+ "quttera"
+ ],
+ "regions": {
+ "default": "https://quttera.com/sitescan/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.qim.com/favicon.ico",
+ "name": "Québec Info Musique",
+ "triggers": [
+ "qimalbum",
+ "qima"
+ ],
+ "regions": {
+ "default": "http://www.qim.com/albums/albums.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.qim.com/favicon.ico",
+ "name": "Québec Info Musique",
+ "triggers": [
+ "qim",
+ "qimartiste",
+ "quebecinfomusique"
+ ],
+ "regions": {
+ "default": "http://www.qim.com/artistes/artiste.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant",
+ "triggers": [
+ "qwt"
+ ],
+ "regions": {
+ "default": "https://qwant.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant",
+ "triggers": [
+ "qw"
+ ],
+ "regions": {
+ "default": "http://www.qwant.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant",
+ "triggers": [
+ "qwant"
+ ],
+ "regions": {
+ "default": "https://www.qwant.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant Images",
+ "triggers": [
+ "qwi"
+ ],
+ "regions": {
+ "default": "https://www.qwant.com/?q={{{term}}}&t=images"
+ }
+ },
+ {
+ "favicon": "https://lite.qwant.com/favicon.ico",
+ "name": "Qwant lite",
+ "triggers": [
+ "qwl"
+ ],
+ "regions": {
+ "default": "https://lite.qwant.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant Music",
+ "triggers": [
+ "qm"
+ ],
+ "regions": {
+ "default": "https://www.qwant.com/?q={{{term}}}&t=music"
+ }
+ },
+ {
+ "favicon": "https://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant News",
+ "triggers": [
+ "qwn"
+ ],
+ "regions": {
+ "default": "https://www.qwant.com/?q={{{term}}}&t=news"
+ }
+ },
+ {
+ "favicon": "https://www.qwant.com/favicon-196.png?1529070764468",
+ "name": "Qwant web",
+ "triggers": [
+ "qww"
+ ],
+ "regions": {
+ "default": "https://www.qwant.com/?q={{{term}}}&t=web"
+ }
+ },
+ {
+ "favicon": "https://www.rdocumentation.org/favicon.ico",
+ "name": "R Documentation",
+ "triggers": [
+ "rdo"
+ ],
+ "regions": {
+ "default": "https://www.rdocumentation.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "R questions on Stack Overflow",
+ "triggers": [
+ "rso",
+ "sor"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q=[r]+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.retrovideogamestore.com/favicon.ico",
+ "name": "R. U. Game?",
+ "triggers": [
+ "rugame"
+ ],
+ "regions": {
+ "default": "https://www.retrovideogamestore.com/index.php?option=com_mijoshop&route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "r/Melbourne",
+ "triggers": [
+ "rmelb"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/melbourne/search?q={{{term}}}&restrict_sr=on&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "r/OutOfTheLoop",
+ "triggers": [
+ "ootl"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/OutOfTheLoop/search?q={{{term}}}&restrict_sr=on"
+ }
+ },
+ {
+ "favicon": "http://www.rsdb.org/static/favicon.ico",
+ "name": "Racial Slur Database",
+ "triggers": [
+ "rsdb"
+ ],
+ "regions": {
+ "default": "http://www.rsdb.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.racing.com/resources/Racing/img/favicon/hub/favicon-32x32.png",
+ "name": "RACING.COM",
+ "triggers": [
+ "racing"
+ ],
+ "regions": {
+ "default": "http://www.racing.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.racket-lang.org/favicon.ico",
+ "name": "Racket",
+ "triggers": [
+ "racket"
+ ],
+ "regions": {
+ "default": "https://docs.racket-lang.org/search/index.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.radicalphilosophy.com/favicon.ico",
+ "name": "Radical Philosophy",
+ "triggers": [
+ "rphilos"
+ ],
+ "regions": {
+ "default": "http://www.radicalphilosophy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/www.radiofreesatan.com/blog/wp-content/uploads/2017/03/cropped-logo-only_512.png?fit=192,192",
+ "name": "Radio Free Satan",
+ "triggers": [
+ "rfs"
+ ],
+ "regions": {
+ "default": "http://www.radiofreesatan.com/?s={{{term}}}&submit=Submit"
+ }
+ },
+ {
+ "favicon": "https://www.rts.ch/hummingbird-static/images/hp/icons/favicon.ico",
+ "name": "Radio télévision suisse",
+ "triggers": [
+ "rts"
+ ],
+ "regions": {
+ "default": "https://www.rts.ch/services/recherche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.radiojavan.com/images/favicon.png",
+ "name": "RadioJavan",
+ "triggers": [
+ "radiojavan"
+ ],
+ "regions": {
+ "default": "https://www.radiojavan.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://radiopaedia.org/favicon.ico",
+ "name": "Radiopaedia.org",
+ "triggers": [
+ "radiopaedia"
+ ],
+ "regions": {
+ "default": "http://radiopaedia.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/1490/5112/t/31/assets/favicon.png?14750270686085362032",
+ "name": "RadioShack",
+ "triggers": [
+ "radioshack"
+ ],
+ "regions": {
+ "default": "https://www.radioshack.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uk.rs-online.com/rs.ico",
+ "name": "RadioSpare UK",
+ "triggers": [
+ "rsuk"
+ ],
+ "regions": {
+ "default": "http://uk.rs-online.com/web/c/?sra=oss&r=t&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.immediate.co.uk/volatile/sites/3/2016/11/cropped-RT-logo-2.png?quality=90&resize=192,192",
+ "name": "RadioTimes",
+ "triggers": [
+ "radiotimes"
+ ],
+ "regions": {
+ "default": "http://www.radiotimes.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/dfaf6d806403f93ec9b9146f3c6266e2?s=32",
+ "name": "Ragged Claws Network",
+ "triggers": [
+ "rcn"
+ ],
+ "regions": {
+ "default": "http://www.raggedclaws.com/home/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "https://www.rte.ie/favicon.ico",
+ "name": "Raidió Teilifís Éireann",
+ "triggers": [
+ "rte"
+ ],
+ "regions": {
+ "default": "https://www.rte.ie/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://api.rubyonrails.org/favicon.ico",
+ "name": "Rails API",
+ "triggers": [
+ "rails"
+ ],
+ "regions": {
+ "default": "http://api.rubyonrails.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://apidock.com/images/favicon.ico",
+ "name": "Rails-Dock",
+ "triggers": [
+ "railsdock"
+ ],
+ "regions": {
+ "default": "http://apidock.com/rails/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://railscasts.com/favicon.ico",
+ "name": "RailsCasts",
+ "triggers": [
+ "railscasts"
+ ],
+ "regions": {
+ "default": "http://railscasts.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rainbowresource.com/favicon.ico",
+ "name": "Rainbow Resource Catalog",
+ "triggers": [
+ "rrc"
+ ],
+ "regions": {
+ "default": "http://www.rainbowresource.com/searchspring.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.rakuten.co.jp/favicon.ico",
+ "name": "Rakuten",
+ "triggers": [
+ "rakuten"
+ ],
+ "regions": {
+ "default": "http://search.rakuten.co.jp/search/mall/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://websearch.rakuten.co.jp/favicon.ico",
+ "name": "Rakuten Infoseek",
+ "triggers": [
+ "infoseek"
+ ],
+ "regions": {
+ "default": "http://websearch.rakuten.co.jp/Web?qt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rallypoint.com/favicon.ico",
+ "name": "RallyPoint",
+ "triggers": [
+ "rallypoint"
+ ],
+ "regions": {
+ "default": "https://www.rallypoint.com/answers?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ramdajs.com/favicon.ico",
+ "name": "Ramda Javascript library",
+ "triggers": [
+ "ramda"
+ ],
+ "regions": {
+ "default": "http://ramdajs.com/docs/#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.random.org/favicon.ico",
+ "name": "random.org",
+ "triggers": [
+ "random"
+ ],
+ "regions": {
+ "default": "https://www.random.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rapgenius.com/favicon.ico",
+ "name": "Rap Genius",
+ "triggers": [
+ "rg",
+ "rapgenius"
+ ],
+ "regions": {
+ "default": "http://rapgenius.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rapidonline.com/favicon.ico",
+ "name": "Rapid Online",
+ "triggers": [
+ "rapidonline"
+ ],
+ "regions": {
+ "default": "http://www.rapidonline.com/SearchResults.aspx?kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rapidmoviez.com/files/img/favicon.ico",
+ "name": "Rapidmoviez",
+ "triggers": [
+ "rm"
+ ],
+ "regions": {
+ "default": "http://rapidmoviez.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://raptr.com/favicon.ico",
+ "name": "Raptr",
+ "triggers": [
+ "raptr"
+ ],
+ "regions": {
+ "default": "https://raptr.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rarbg.to/favicon.ico",
+ "name": "RarBG",
+ "triggers": [
+ "rarbg"
+ ],
+ "regions": {
+ "default": "https://rarbg.to/torrents.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://raritanval.edu/sites/all/themes/rvcc_bootstrap_subtheme/images/favicon-128.png",
+ "name": "Raritan Valley Community College",
+ "triggers": [
+ "rvcc"
+ ],
+ "regions": {
+ "default": "http://raritanval.edu/rvcc/search.aspx?searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.raspberrypi.org/app/themes/mind-control/images/favicon.png",
+ "name": "Raspberry Pi",
+ "triggers": [
+ "raspberrypi"
+ ],
+ "regions": {
+ "default": "https://www.raspberrypi.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.raspberrypi.org/app/themes/mind-control/images/favicon.png",
+ "name": "Raspberry Pi",
+ "triggers": [
+ "rp"
+ ],
+ "regions": {
+ "default": "https://www.raspberrypi.org/phpBB3/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/raspberrypi/img/favicon.ico?v=eb3b0387c906",
+ "name": "Raspberry pi Stackexchange",
+ "triggers": [
+ "rpi-so"
+ ],
+ "regions": {
+ "default": "http://raspberrypi.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://store.raspberrypi.com/favicon.ico",
+ "name": "Raspberry Pi Store",
+ "triggers": [
+ "pistore"
+ ],
+ "regions": {
+ "default": "http://store.raspberrypi.com/search/results?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ratemyprofessors.com/images/favicon-32.png",
+ "name": "Rate My Professor",
+ "triggers": [
+ "ratemyprofessor",
+ "rmp"
+ ],
+ "regions": {
+ "default": "https://www.ratemyprofessors.com/search.jsp?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rateyourmusic.com/favicon.ico",
+ "name": "Rate Your Music",
+ "triggers": [
+ "rateyourmusic"
+ ],
+ "regions": {
+ "default": "https://rateyourmusic.com/search?searchterm={{{term}}}&searchtype=a"
+ }
+ },
+ {
+ "favicon": "https://rateyourmusic.com/favicon.ico",
+ "name": "Rate Your Music",
+ "triggers": [
+ "rym"
+ ],
+ "regions": {
+ "default": "https://rateyourmusic.com/search?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rateyourmusic.com/favicon.ico",
+ "name": "Rate Your Music",
+ "triggers": [
+ "rymf"
+ ],
+ "regions": {
+ "default": "https://rateyourmusic.com/search?searchtype=F&searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rateyourmusic.com/favicon.ico",
+ "name": "Rate Your Music (genre)",
+ "triggers": [
+ "rateyourgenre"
+ ],
+ "regions": {
+ "default": "https://rateyourmusic.com/search?searchtype=a&searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rateyourmusic.com/favicon.ico",
+ "name": "Rate Your Music genre search",
+ "triggers": [
+ "rymgenre"
+ ],
+ "regions": {
+ "default": "https://rateyourmusic.com/search?searchtype=g&searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ratebeer.com/favicon.ico",
+ "name": "ratebeer",
+ "triggers": [
+ "ratebeer"
+ ],
+ "regions": {
+ "default": "http://www.ratebeer.com/findbeer.asp?BeerName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rationalwiki.org/favicon.ico",
+ "name": "RationalWiki",
+ "triggers": [
+ "rationalwiki"
+ ],
+ "regions": {
+ "default": "http://rationalwiki.org/w/index.php?search={{{term}}}&button=&title=Special:Search&go=Go"
+ }
+ },
+ {
+ "favicon": "http://rationalwiki.org/favicon.ico",
+ "name": "RationalWiki",
+ "triggers": [
+ "rw"
+ ],
+ "regions": {
+ "default": "http://rationalwiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ravelry.com/favicon-16x16.png",
+ "name": "Ravelry",
+ "triggers": [
+ "ravelry"
+ ],
+ "regions": {
+ "default": "http://www.ravelry.com/patterns/search#query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.raywenderlich.com/favicon.ico",
+ "name": "Ray Wenderlich",
+ "triggers": [
+ "ray"
+ ],
+ "regions": {
+ "default": "https://www.raywenderlich.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://razzball.com/favicon.ico",
+ "name": "Razzball",
+ "triggers": [
+ "razzball"
+ ],
+ "regions": {
+ "default": "http://razzball.com/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rbcroyalbank.com/favicon.ico",
+ "name": "RBC Royal Bank",
+ "triggers": [
+ "rbc"
+ ],
+ "regions": {
+ "default": "https://www.rbcroyalbank.com/search-public/index.html?question={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.dnswatch.info/favicon.ico",
+ "name": "RBL Lookup",
+ "triggers": [
+ "rbl"
+ ],
+ "regions": {
+ "default": "https://www.dnswatch.info/dns/rbl-lookup?host={{{term}}}&submit=RBL+Lookup"
+ }
+ },
+ {
+ "favicon": "https://rbt.asia/favicon.ico",
+ "name": "rbt.asia - /g/",
+ "triggers": [
+ "rbtg"
+ ],
+ "regions": {
+ "default": "https://rbt.asia/g/?task=search&ghost=&search_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rbt.asia/favicon.ico",
+ "name": "rbtmu",
+ "triggers": [
+ "rbtmu"
+ ],
+ "regions": {
+ "default": "https://rbt.asia/mu/search/text/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://rcsb.org/favicon.ico",
+ "name": "RCSB",
+ "triggers": [
+ "rcsb"
+ ],
+ "regions": {
+ "default": "http://rcsb.org/pdb/explore/explore.do?structureId={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ovi.rdw.nl/Images/favicon.ico",
+ "name": "RDW (Dutch governmental traffic agency)",
+ "triggers": [
+ "kenteken"
+ ],
+ "regions": {
+ "default": "https://ovi.rdw.nl/default.aspx?kenteken={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://reactome.org/templates/favourite/favicon.ico",
+ "name": "Reactome",
+ "triggers": [
+ "reactome"
+ ],
+ "regions": {
+ "default": "http://reactome.org/content/query?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.readthedocs.org/images/favicon.png",
+ "name": "Read the Docs",
+ "triggers": [
+ "readthedocs",
+ "rtd"
+ ],
+ "regions": {
+ "default": "https://readthedocs.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.readthedocs.org/images/favicon.png",
+ "name": "Read the Docs",
+ "triggers": [
+ "rtfd"
+ ],
+ "regions": {
+ "default": "http://{{{term}}}.rtfd.io"
+ }
+ },
+ {
+ "favicon": "https://static.readerscave.com/2016/12/cropped-icon-trans-512x512-2-192x192.png",
+ "name": "Reader's Cave",
+ "triggers": [
+ "rc"
+ ],
+ "regions": {
+ "default": "https://www.readerscave.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.readwrite.com/wp-content/uploads/2018/03/cropped-rw-192x192.jpg",
+ "name": "ReadWriteWeb",
+ "triggers": [
+ "readwriteweb"
+ ],
+ "regions": {
+ "default": "http://readwrite.com/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://academia.gal/favicon.ico",
+ "name": "Real Academia Galega",
+ "triggers": [
+ "rag"
+ ],
+ "regions": {
+ "default": "http://academia.gal/dicionario/-/termo/busca/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.shop.loblaws.ca/ContentMedia/rcss/logos/64x64icon.ico",
+ "name": "Real Canadian Superstore",
+ "triggers": [
+ "rcss",
+ "superstore"
+ ],
+ "regions": {
+ "default": "https://www.realcanadiansuperstore.ca/search/?search-bar={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://apps.leg.wa.gov/favicon.ico",
+ "name": "Real Clear World",
+ "triggers": [
+ "rcw"
+ ],
+ "regions": {
+ "default": "http://apps.leg.wa.gov/RCW/default.aspx?cite={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.realclearpolitics.com/favicon.ico",
+ "name": "RealClear Politics",
+ "triggers": [
+ "rcp"
+ ],
+ "regions": {
+ "default": "http://www.realclearpolitics.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//realocdn.com/assets/488688f7f2cbd1f80122e9a25c40ed009/img/favicons/favicon-16x16.png",
+ "name": "Realo",
+ "triggers": [
+ "realo"
+ ],
+ "regions": {
+ "default": "https://realo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.rdc-next-prod.rdc.moveaws.com/assets/favicon-144287b492113455703667bc3182768a9b2666765a1cd4beba38cfe40294eccc.ico",
+ "name": "Realtor.com",
+ "triggers": [
+ "realtor"
+ ],
+ "regions": {
+ "default": "http://www.realtor.com/realestateandhomes-search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3c3gqvays1doh.cloudfront.net/favicon.ico",
+ "name": "Reason.com",
+ "triggers": [
+ "reason"
+ ],
+ "regions": {
+ "default": "https://reason.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reasonablefaith.org/favicon-16x16.png",
+ "name": "Reasonable Faith",
+ "triggers": [
+ "rf"
+ ],
+ "regions": {
+ "default": "https://www.reasonablefaith.org/search/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tools-static.wmflabs.org/toolforge/favicons/favicon.ico",
+ "name": "Reasonator",
+ "triggers": [
+ "reasonator"
+ ],
+ "regions": {
+ "default": "https://tools.wmflabs.org/reasonator/?find={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/reborn/images/6/64/Favicon.ico/revision/latest?cb=20101024013859",
+ "name": "Reborn Wiki",
+ "triggers": [
+ "reborn"
+ ],
+ "regions": {
+ "default": "http://reborn.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dyivx00f9izcg.cloudfront.net/images/favicon/favicon.rev-c812cda9360199d.ico",
+ "name": "reBuy.de Kaufen",
+ "triggers": [
+ "rebuy"
+ ],
+ "regions": {
+ "default": "https://www.rebuy.de/kaufen/suchen?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://archive.recapthelaw.org/touch-icon-192x192.png",
+ "name": "RECAP the law",
+ "triggers": [
+ "recap"
+ ],
+ "regions": {
+ "default": "http://archive.recapthelaw.org/search/advanced/?q={{{term}}}&x=0&y=0&court=&docket_number=&case_name=&pacer_case_number=&date_filed=&date_filed_end=&date_terminated=&date_terminated_end=&date_last_filing=&date_last_filing_end="
+ }
+ },
+ {
+ "favicon": "http://tuil.webs.com/favicon.ico",
+ "name": "Recipes: Fireburst",
+ "triggers": [
+ "fbrecipes"
+ ],
+ "regions": {
+ "default": "http://tuil.webs.com/fireburst/specializedsearch/recipes.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reckless.com/favicon.ico",
+ "name": "Reckless Records",
+ "triggers": [
+ "reckless"
+ ],
+ "regions": {
+ "default": "http://www.reckless.com/index.php?keywords={{{term}}}&format=&cond=&store=&is_search=true&srch=Search"
+ }
+ },
+ {
+ "favicon": "http://www.reclameaqui.com.br/favicon.ico",
+ "name": "Reclame Aqui",
+ "triggers": [
+ "reclame"
+ ],
+ "regions": {
+ "default": "http://www.reclameaqui.com.br/busca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.recordclick.com/wp-content/uploads/2017/08/favicon-32x32.png",
+ "name": "RecordClick",
+ "triggers": [
+ "recordclick"
+ ],
+ "regions": {
+ "default": "http://recordclick.com/?s={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "//prncdn-9c47.kxcdn.com/2.0/img/favicon.ico",
+ "name": "recruit.net",
+ "triggers": [
+ "rn"
+ ],
+ "regions": {
+ "default": "http://india.recruit.net/search.html?query={{{term}}}&location=delhi"
+ }
+ },
+ {
+ "favicon": "http://rebiun.baratz.es/favicon.ico",
+ "name": "Red de Bibliotecas REBIUN",
+ "triggers": [
+ "rebiun"
+ ],
+ "regions": {
+ "default": "http://rebiun.baratz.es/rebiun/search?q={{{term}}}&start=0&rows=12&sort=score+desc&advanced_handler=advanced"
+ }
+ },
+ {
+ "favicon": "https://www.redflagdeals.com/search/favicon.ico",
+ "name": "Red Flag Deals",
+ "triggers": [
+ "redflagdeals"
+ ],
+ "regions": {
+ "default": "https://www.redflagdeals.com/search/?={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugzilla.redhat.com/images/favicon.ico",
+ "name": "Red Hat Bugzilla",
+ "triggers": [
+ "rhbz",
+ "rbugs"
+ ],
+ "regions": {
+ "default": "https://bugzilla.redhat.com/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://access.redhat.com/webassets/avalon/g/favicon.ico",
+ "name": "Red Hat Customer Portal",
+ "triggers": [
+ "rht"
+ ],
+ "regions": {
+ "default": "https://access.redhat.com/search/#/?q={{{term}}}&p=1&srch=any&language=en&documentKind=Documentation"
+ }
+ },
+ {
+ "favicon": "https://rhn.redhat.com/auth/resources/7.2.0.ga/login/red-hat-theme/img/favicon.ico",
+ "name": "Red Hat Security Advisory",
+ "triggers": [
+ "rhsa"
+ ],
+ "regions": {
+ "default": "https://rhn.redhat.com/errata/RHSA-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://redacted.ch/favicon.ico",
+ "name": "Redacted",
+ "triggers": [
+ "red"
+ ],
+ "regions": {
+ "default": "https://redacted.ch/torrents.php?searchstr={{{term}}}&order_by=time&order_way=desc&group_results=1&action=basic&searchsubmit=1"
+ }
+ },
+ {
+ "favicon": "http://redbot.org/static/logo/favicon-16x16.png",
+ "name": "REDbot",
+ "triggers": [
+ "redbot"
+ ],
+ "regions": {
+ "default": "http://redbot.org/?uri={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.redbox.com/content/images/favicon.ico",
+ "name": "RedBox",
+ "triggers": [
+ "redbox"
+ ],
+ "regions": {
+ "default": "https://www.redbox.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3spquiph2sexc.cloudfront.net/favicon.png",
+ "name": "RedBubble",
+ "triggers": [
+ "redbubble"
+ ],
+ "regions": {
+ "default": "https://www.redbubble.com/shop/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit",
+ "triggers": [
+ "ssr"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/{{{term}}}/search?q=agbhegicb"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit",
+ "triggers": [
+ "subr",
+ "sbr",
+ "reddits",
+ "subreddit",
+ "rsub",
+ "sr",
+ "sreddit"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit",
+ "triggers": [
+ "r",
+ "reddit"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit",
+ "triggers": [
+ "srs",
+ "subredditsearch"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/search?q=subreddit:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit",
+ "triggers": [
+ "rsn"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/{{{term}}}/new/"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit (past year (and more))",
+ "triggers": [
+ "ryear"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/search?q={{{term}}}&t=year"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit ELI5",
+ "triggers": [
+ "eli5"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/explainlikeimfive/search?q={{{term}}}&restrict_sr=on&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "https://m.reddit.com/favicon.ico",
+ "name": "Reddit Mobile",
+ "triggers": [
+ "mre"
+ ],
+ "regions": {
+ "default": "https://m.reddit.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit Modhelp",
+ "triggers": [
+ "modhelp"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/modhelp/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit PC Master Race",
+ "triggers": [
+ "pcmr"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/pcmasterrace/search?q={{{term}}}&restrict_sr=on&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit r/the_donald",
+ "triggers": [
+ "thedonald"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/the_donald/search?q={{{term}}}&restrict_sr=on&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit User",
+ "triggers": [
+ "reu"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/user/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Reddit's Mechanical Keybaords Subreddit",
+ "triggers": [
+ "rmk"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/MechanicalKeyboards/search?q={{{term}}}&sort=relevance&t=all"
+ }
+ },
+ {
+ "favicon": "http://www.redensarten-index.de/favicon.ico",
+ "name": "Redensarten-Index",
+ "triggers": [
+ "redensarten"
+ ],
+ "regions": {
+ "default": "http://www.redensarten-index.de/suche.php?suchbegriff={{{term}}}&bool=relevanz&gawoe=an&suchspalte[]=rart_ou&suchspalte[]=rart_varianten_ou"
+ }
+ },
+ {
+ "favicon": "https://www.redfin.com/favicon.ico",
+ "name": "RedFin",
+ "triggers": [
+ "redfin"
+ ],
+ "regions": {
+ "default": "https://www.redfin.com/homes-for-sale#!search_location={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.relcdetroit.org/favicon.ico",
+ "name": "Redford Evangelical Lutheran Church",
+ "triggers": [
+ "redford"
+ ],
+ "regions": {
+ "default": "http://www.relcdetroit.org/index.php?p_id=1{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://redis.io/images/favicon.png",
+ "name": "Redis Command Reference",
+ "triggers": [
+ "redis"
+ ],
+ "regions": {
+ "default": "http://redis.io/commands/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.redmine.org/favicon.ico?1322400152",
+ "name": "Redmine",
+ "triggers": [
+ "redmine"
+ ],
+ "regions": {
+ "default": "https://www.redmine.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.redpik.net/favicon.ico",
+ "name": "Redpik",
+ "triggers": [
+ "rpk"
+ ],
+ "regions": {
+ "default": "http://www.redpik.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.en.redtram.com/favicon.ico",
+ "name": "RedTram",
+ "triggers": [
+ "redtram"
+ ],
+ "regions": {
+ "default": "http://search.en.redtram.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.redusers.com/noticias/wp-content/themes/ru60/favicon.ico?v=2",
+ "name": "RedUSERS",
+ "triggers": [
+ "ru"
+ ],
+ "regions": {
+ "default": "http://www.redusers.com/noticias/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dothop.com//images/favicon-s.ico",
+ "name": "RedZ",
+ "triggers": [
+ "redz"
+ ],
+ "regions": {
+ "default": "http://redz.com/search/page-1__limit-50__engine-meta__type-web__query-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.reed.co.uk/favicon.ico",
+ "name": "reed.co.uk",
+ "triggers": [
+ "reed"
+ ],
+ "regions": {
+ "default": "http://www.reed.co.uk/job/searchresults.aspx?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reelviews.net/favicon.png",
+ "name": "Reelviews",
+ "triggers": [
+ "reelviews"
+ ],
+ "regions": {
+ "default": "http://www.reelviews.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reference.com/favicon.ico",
+ "name": "Reference.com",
+ "triggers": [
+ "ref"
+ ],
+ "regions": {
+ "default": "http://www.reference.com/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://reflets.info/favicon-16x16.png",
+ "name": "Reflets.info",
+ "triggers": [
+ "reflets"
+ ],
+ "regions": {
+ "default": "https://reflets.info/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.refreshcartridges.co.uk/icon-192.png",
+ "name": "Refresh Cartridges",
+ "triggers": [
+ "refresh"
+ ],
+ "regions": {
+ "default": "http://www.refreshcartridges.co.uk/advanced_search_result.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://registro.br/favicon.ico",
+ "name": "Registro.br",
+ "triggers": [
+ "whoisbr"
+ ],
+ "regions": {
+ "default": "https://registro.br/cgi-bin/whois/?qr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://regravity.com/favicon.ico",
+ "name": "Regravity",
+ "triggers": [
+ "regrav"
+ ],
+ "regions": {
+ "default": "http://regravity.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.regexlib.com/favicon.ico",
+ "name": "Regular Expression Library",
+ "triggers": [
+ "regex"
+ ],
+ "regions": {
+ "default": "http://www.regexlib.com/Search.aspx?k={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/b7558406528fd8e314a69a97b5f6255e?s=32",
+ "name": "Regular Expressions",
+ "triggers": [
+ "re"
+ ],
+ "regions": {
+ "default": "https://oldpapyrus.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rei.com/favicon.ico",
+ "name": "REI",
+ "triggers": [
+ "rei"
+ ],
+ "regions": {
+ "default": "http://www.rei.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.reichelt.de/favicon.ico",
+ "name": "Reichelt",
+ "triggers": [
+ "reichelt"
+ ],
+ "regions": {
+ "default": "https://secure.reichelt.de/?ACTION=446;SEARCH={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reittiopas.fi/icons-hsl-18da13427c6e362f148f4a5b783ee98c/favicon.ico",
+ "name": "Reittiopas",
+ "triggers": [
+ "reittiopas"
+ ],
+ "regions": {
+ "default": "http://www.reittiopas.fi/?showsearchformsaved=hide&from_in= {{{term}}}&from=&via_in=&via=&via_time=0&to_in= daeklbljledbf&to=&hour=15&minute=39&timetype=departure&date_cb=on&day=7&month=7&year=2015&cmargin=3&wspeed=70&method=1&stz=0&mc1=0&mc2=0&mc3=0&mc4=0&mc5=0&mc6=0&mc0=1&nroutes=3&gotoHash="
+ }
+ },
+ {
+ "favicon": "https://releasemonitor.de/images/favicon.png",
+ "name": "Release Monitor",
+ "triggers": [
+ "remo"
+ ],
+ "regions": {
+ "default": "https://releasemonitor.de/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rlslog.net/wp-content/favicon.ico",
+ "name": "Releaselog",
+ "triggers": [
+ "rlslog"
+ ],
+ "regions": {
+ "default": "http://www.rlslog.net/?s={{{term}}}&sbutt=Go"
+ }
+ },
+ {
+ "favicon": "https://remywiki.com/favicon.ico",
+ "name": "RemyWiki",
+ "triggers": [
+ "remywiki"
+ ],
+ "regions": {
+ "default": "https://remywiki.com/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ideas.repec.org/favicon.ico",
+ "name": "RePEc IDEAS",
+ "triggers": [
+ "ideas"
+ ],
+ "regions": {
+ "default": "http://ideas.repec.org/cgi-bin/htsearch?q={{{term}}}&cmd=Search!"
+ }
+ },
+ {
+ "favicon": "http://www.replacements.com/favicon.ico",
+ "name": "Replacements.com",
+ "triggers": [
+ "rep"
+ ],
+ "regions": {
+ "default": "http://www.replacements.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://repositorium.sdum.uminho.pt/favicon.ico",
+ "name": "Repositorium University of Minho",
+ "triggers": [
+ "repum"
+ ],
+ "regions": {
+ "default": "https://repositorium.sdum.uminho.pt/simple-search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://reprap.org/favicon.ico",
+ "name": "RepRap",
+ "triggers": [
+ "rr",
+ "reprap"
+ ],
+ "regions": {
+ "default": "http://reprap.org/mediawiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reproduction-gallery.com/icon.png",
+ "name": "Reproduction Gallery",
+ "triggers": [
+ "reproduction-gallery"
+ ],
+ "regions": {
+ "default": "https://www.reproduction-gallery.com/search-paintings/?form_redirect=&form_id=form_search2&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://c5.rgstatic.net/m/426351313275430/images/favicon/favicon.ico",
+ "name": "Researchgate.net",
+ "triggers": [
+ "rgate"
+ ],
+ "regions": {
+ "default": "https://www.researchgate.net/search.Search.html?type=researcher&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.residentadvisor.net/favicon.ico",
+ "name": "Resident Advisor",
+ "triggers": [
+ "residentadvisor",
+ "ra"
+ ],
+ "regions": {
+ "default": "http://www.residentadvisor.net/search.aspx?searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.respaper.com/favicon.ico",
+ "name": "Respaper",
+ "triggers": [
+ "resp"
+ ],
+ "regions": {
+ "default": "http://www.respaper.com/s?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.resto.lu/across/resources/static/20170517153748/site/images/resto_icon_64px.png",
+ "name": "Resto.lu",
+ "triggers": [
+ "restolu"
+ ],
+ "regions": {
+ "default": "http://www.resto.lu/fr/Luxembourg/guide.cfm?searchmode=classic&RESTOTYPE=isresto&nom={{{term}}}&idcuisine_type=&ville=&region=&idprix=ddg@pivert.org"
+ }
+ },
+ {
+ "favicon": "http://en.resto.be/across/resources/static/6130cfde4ac3b45b8d8072226934f0db734524d1/site/images/resto_icon_64px.png",
+ "name": "RestoBE",
+ "triggers": [
+ "restobe"
+ ],
+ "regions": {
+ "default": "http://en.resto.be/business/search?searchbox=true&businessTypeId=1&fullText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.resto.fr/static/front/img/resto_icon_64px.png",
+ "name": "RestoFR",
+ "triggers": [
+ "restofr"
+ ],
+ "regions": {
+ "default": "http://www.resto.fr/business/search?searchbox=true&businessTypeId=1&fullText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reta-vortaro.de/favicon.ico",
+ "name": "Reta Vortaro",
+ "triggers": [
+ "revo"
+ ],
+ "regions": {
+ "default": "http://www.reta-vortaro.de/cgi-bin/sercxu.pl?sercxata={{{term}}}&x=on&kadroj=1"
+ }
+ },
+ {
+ "favicon": "http://www.reta-vortaro.de/favicon.ico",
+ "name": "Reta Vortaro",
+ "triggers": [
+ "reta-vortaro"
+ ],
+ "regions": {
+ "default": "http://www.reta-vortaro.de/cgi-bin/sercxu.pl?sercxata={{{term}}}&kadroj=1"
+ }
+ },
+ {
+ "favicon": "https://www.retailmenot.com/favicon.ico",
+ "name": "RetailgMeNot",
+ "triggers": [
+ "retailmenot"
+ ],
+ "regions": {
+ "default": "https://www.retailmenot.com/view/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.retailmenot.com/favicon.ico",
+ "name": "RetailMeNot",
+ "triggers": [
+ "rmn"
+ ],
+ "regions": {
+ "default": "https://www.retailmenot.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://retinaboys.com/wp-content/themes/retinaboys/img/favicon.png",
+ "name": "RetinaBoys.com",
+ "triggers": [
+ "retina"
+ ],
+ "regions": {
+ "default": "http://retinaboys.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.returnofkings.com/favicon.ico",
+ "name": "Return Of Kings",
+ "triggers": [
+ "rok"
+ ],
+ "regions": {
+ "default": "http://www.returnofkings.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3.reutersmedia.net/resources_v2/images/favicon/favicon-96x96.png",
+ "name": "Reuters",
+ "triggers": [
+ "reuters",
+ "reuq"
+ ],
+ "regions": {
+ "default": "https://www.reuters.com/search/news?blob={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.revamed.com/assets/images/revamed/favicon-16x16.png?lastmod=1526546224&hash=8efd5fb7e7645e9be6af3bfc01b1b8ec3030c9982071dac1ca772142d4273dc3",
+ "name": "RevaMed B.V.",
+ "triggers": [
+ "revamed"
+ ],
+ "regions": {
+ "default": "https://www.revamed.com/search?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.reverb.com/assets/top-level/favicon-59e5395fbcfeb0d833d139f7575c6726.png",
+ "name": "Reverb",
+ "triggers": [
+ "reverb"
+ ],
+ "regions": {
+ "default": "https://reverb.com/marketplace?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://gp1.wac.edgecastcdn.net/802892/production_static/20180703114938/images/meta/favicon-16x16.png",
+ "name": "Reverb Nation",
+ "triggers": [
+ "reverbnation"
+ ],
+ "regions": {
+ "default": "https://www.reverbnation.com/main/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.reverseaustralia.com/favicon.ico",
+ "name": "Reverse Australia",
+ "triggers": [
+ "revau"
+ ],
+ "regions": {
+ "default": "http://www.reverseaustralia.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "reespt"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/spanish-portuguese/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "plfr"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/polonais-francais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "frpl"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/francais-polonais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "frge",
+ "refrge"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/francais-allemand/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "frjp"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/francais-japonais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "trad",
+ "refreb"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/french-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "gefr",
+ "regefr"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/allemand-francais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso",
+ "triggers": [
+ "reverso"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/german-english/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.reverso.net/context/v4010/reverso-context-fav.ico",
+ "name": "Reverso Context",
+ "triggers": [
+ "revenit"
+ ],
+ "regions": {
+ "default": "http://context.reverso.net/translation/english-italian/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.reverso.net/context/v4010/reverso-context-fav.ico",
+ "name": "Reverso context",
+ "triggers": [
+ "revesen"
+ ],
+ "regions": {
+ "default": "http://context.reverso.net/translation/spanish-english/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.reverso.net/context/v4010/reverso-context-fav.ico",
+ "name": "Reverso Context",
+ "triggers": [
+ "reviten",
+ "riten"
+ ],
+ "regions": {
+ "default": "http://context.reverso.net/translation/italian-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.reverso.net/context/v4010/reverso-context-fav.ico",
+ "name": "Reverso Context French-English",
+ "triggers": [
+ "rcfe"
+ ],
+ "regions": {
+ "default": "http://context.reverso.net/translation/french-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso Dictionary",
+ "triggers": [
+ "ren",
+ "reen"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/english-definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso DIctionary",
+ "triggers": [
+ "reversoiten"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/italian-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso English - Spanish",
+ "triggers": [
+ "reenes"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/english-spanish/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso French - Definition",
+ "triggers": [
+ "refr"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/french-definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso French - Spanish",
+ "triggers": [
+ "refres"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/french-spanish/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionnaire.reverso.net/favicon.ico",
+ "name": "Reverso French Definition",
+ "triggers": [
+ "rfr"
+ ],
+ "regions": {
+ "default": "http://dictionnaire.reverso.net/francais-definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso German - Definition",
+ "triggers": [
+ "rege"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/german-definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://woerterbuch.reverso.net/favicon.ico",
+ "name": "Reverso German - Spanish",
+ "triggers": [
+ "regees"
+ ],
+ "regions": {
+ "default": "http://woerterbuch.reverso.net/deutsch-spanisch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.reverso.net/context/v4010/reverso-context-fav.ico",
+ "name": "Reverso it-fr",
+ "triggers": [
+ "itfr"
+ ],
+ "regions": {
+ "default": "http://context.reverso.net/traduction/italien-francais/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.bab.la/img/languages/favicon-128.png",
+ "name": "Reverso Konjugator",
+ "triggers": [
+ "konj"
+ ],
+ "regions": {
+ "default": "http://de.bab.la/konjugieren/deutsch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso Spanish - Definition",
+ "triggers": [
+ "rees"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/spanish-definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso Spanish - English",
+ "triggers": [
+ "reesen"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/spanish-english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dictionary.reverso.net/favicon.ico",
+ "name": "Reverso Spanish - French",
+ "triggers": [
+ "reesfr"
+ ],
+ "regions": {
+ "default": "http://dictionary.reverso.net/spanish-french/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://woerterbuch.reverso.net/favicon.ico",
+ "name": "Reverso Spanish - German",
+ "triggers": [
+ "reesge"
+ ],
+ "regions": {
+ "default": "http://woerterbuch.reverso.net/spanisch-deutsch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://reviewmeta.com/public/imgs/reviewmeta/favicon.ico",
+ "name": "ReviewMeta",
+ "triggers": [
+ "reviewmeta"
+ ],
+ "regions": {
+ "default": "https://reviewmeta.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.revolve.com/favicon.ico",
+ "name": "Revolve",
+ "triggers": [
+ "revolve"
+ ],
+ "regions": {
+ "default": "http://www.revolve.com/bags/br/2df9df/?&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.revzilla.com/android-chrome-192x192.png",
+ "name": "RevZilla",
+ "triggers": [
+ "revzilla"
+ ],
+ "regions": {
+ "default": "http://www.revzilla.com/search?query={{{term}}}&commit=Search"
+ }
+ },
+ {
+ "favicon": "http://rex.kb.dk/primo_library/libweb/action/search.do?fn=search&vl%28freeText0%29=fbkjjgckjfahbl",
+ "name": "REX – The Royal Library and Copenhagen University Library Service",
+ "triggers": [
+ "rex"
+ ],
+ "regions": {
+ "default": "http://rex.kb.dk/primo_library/libweb/action/search.do?fn=search&vl%28freeText0%29={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rexall.ca/favicon.ico",
+ "name": "Rexall",
+ "triggers": [
+ "rexall"
+ ],
+ "regions": {
+ "default": "https://www.rexall.ca/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.rc-cdn.community.thermomix.com/assets/20180622-095555/bundles/tmrcfront/favicon.ico",
+ "name": "rezeptwelt.de",
+ "triggers": [
+ "tmr"
+ ],
+ "regions": {
+ "default": "http://www.rezeptwelt.de/search/?rec_all=0&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rfclipart.com/assets/icons/favicon.ico?v=47MzRRrkqg",
+ "name": "RFclipart",
+ "triggers": [
+ "rfclipart"
+ ],
+ "regions": {
+ "default": "http://rfclipart.com/search.html?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rgb.to/img/favicon.png",
+ "name": "rgb to",
+ "triggers": [
+ "ral"
+ ],
+ "regions": {
+ "default": "http://rgb.to/ral/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://app.rhapsody.com/favicon.ico",
+ "name": "Rhapsody",
+ "triggers": [
+ "rhap"
+ ],
+ "regions": {
+ "default": "http://app.rhapsody.com/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://rhymebrain.com/favicon.ico",
+ "name": "RhymeBrain",
+ "triggers": [
+ "rhymebrain"
+ ],
+ "regions": {
+ "default": "http://rhymebrain.com/en/What_rhymes_with_{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.rhymer.com/favicon.ico",
+ "name": "Rhymer",
+ "triggers": [
+ "rhymer"
+ ],
+ "regions": {
+ "default": "http://www.rhymer.com/RhymingDictionary/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://www.rhymezone.com/favicon.ico",
+ "name": "RhymeZone",
+ "triggers": [
+ "rhyme"
+ ],
+ "regions": {
+ "default": "https://www.rhymezone.com/r/rhyme.cgi?Word={{{term}}}&typeofrhyme=perfect&org1=syl&org2=l&org3=y"
+ }
+ },
+ {
+ "favicon": "http://www.rhymezone.com/favicon.ico",
+ "name": "RhymeZone",
+ "triggers": [
+ "rz"
+ ],
+ "regions": {
+ "default": "http://www.rhymezone.com/r/rhyme.cgi?Word={{{term}}}&typeofrhyme=perfect&org1=syl&org2=l&org3=y"
+ }
+ },
+ {
+ "favicon": "https://style-6a38.kxcdn.com/12.2.15/lib/images/favicon-16x16.png",
+ "name": "ricardo.ch",
+ "triggers": [
+ "ricardo"
+ ],
+ "regions": {
+ "default": "https://www.ricardo.ch/search/search.asp?txtSearch={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.rightstuf.com/favicon.ico",
+ "name": "RightStuf",
+ "triggers": [
+ "rs"
+ ],
+ "regions": {
+ "default": "http://www.rightstuf.com/rssite/facetedSearch/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rigvedawiki.net/favicon.ico",
+ "name": "Rigveda Wiki",
+ "triggers": [
+ "rigveda"
+ ],
+ "regions": {
+ "default": "https://rigvedawiki.net/r1/wiki.php/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rigvedawiki.net/favicon.ico",
+ "name": "Rigveda Wiki",
+ "triggers": [
+ "rigvedawiki"
+ ],
+ "regions": {
+ "default": "http://rigvedawiki.net/r1/wiki.php/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rijnmond.nl/Content/Images/rijnmond/favicon.ico",
+ "name": "rijnmond.nl",
+ "triggers": [
+ "rijnmond"
+ ],
+ "regions": {
+ "default": "http://www.rijnmond.nl/zoeken?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rimessolides.com/images/favicon.ico",
+ "name": "Rimessolides.com",
+ "triggers": [
+ "rime"
+ ],
+ "regions": {
+ "default": "http://www.rimessolides.com/rime.aspx?m={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rimlexikon.com/smart_img/57.png",
+ "name": "Rimlexikon.com",
+ "triggers": [
+ "rim"
+ ],
+ "regions": {
+ "default": "http://rimlexikon.com/index.php?rim={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rinf.com/alt-news/wp-content/uploads/2013/11/favicon.png",
+ "name": "RINF Alternative news",
+ "triggers": [
+ "rinf"
+ ],
+ "regions": {
+ "default": "http://www.rinf.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.ripe.net/favicon.ico",
+ "name": "RIPE Database",
+ "triggers": [
+ "ripedb"
+ ],
+ "regions": {
+ "default": "https://apps.db.ripe.net/search/query.html?searchtext={{{term}}}&search%3AdoSearch=Search#resultsAnchor"
+ }
+ },
+ {
+ "favicon": "https://www.ripenear.me/sites/default/files/fv01.png",
+ "name": "RipeNear.Me",
+ "triggers": [
+ "ripenearme"
+ ],
+ "regions": {
+ "default": "http://ripenear.me/map?search_location={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.ripe.net/favicon.ico",
+ "name": "RIPEstat",
+ "triggers": [
+ "ripestat"
+ ],
+ "regions": {
+ "default": "http://stat.ripe.net/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ripe.net/favicon.ico",
+ "name": "RIPEstat - Internet Measurments and Analysis",
+ "triggers": [
+ "ripe"
+ ],
+ "regions": {
+ "default": "https://stat.ripe.net/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ris.bka.gv.at/Images/favicon.ico",
+ "name": "RIS",
+ "triggers": [
+ "ris"
+ ],
+ "regions": {
+ "default": "https://www.ris.bka.gv.at/Ergebnis.wxe?Abfrage=Gesamtabfrage&SearchInAsylGH=False&SearchInAvn=False&SearchInAvsv=False&SearchInBegut=False&SearchInBgblAlt=False&SearchInBgblAuth=False&SearchInBgblPdf=False&SearchInBks=False&SearchInBundesnormen=False&SearchInDok=False&SearchInDsk=False&SearchInErlaesse=False&SearchInGbk=False&SearchInGemeinderecht=False&SearchInJustiz=False&SearchInBvwg=False&SearchInLvwg=False&SearchInLgbl=False&SearchInLgblNO=False&SearchInLgblAuth=False&SearchInLrBgld=False&SearchInLrK=False&SearchInLrNO=False&SearchInLrOO=False&SearchInLrSbg=False&SearchInLrStmk=False&SearchInLrT=False&SearchInLrVbg=False&SearchInLrW=False&SearchInNormenliste=False&SearchInPvak=False&SearchInRegV=False&SearchInUbas=False&SearchInUmse=False&SearchInUvs=False&SearchInVerg=False&SearchInVfgh=False&SearchInVwgh=False&ImRisSeit=Undefined&ResultPageSize=100&Suchworte={{{term}}}&Position=1"
+ }
+ },
+ {
+ "favicon": "http://www.roadandtrack.com/sites/roadtrack/assets/images/favicon.ico",
+ "name": "Road & Track",
+ "triggers": [
+ "randt",
+ "roadandtrack"
+ ],
+ "regions": {
+ "default": "http://www.roadandtrack.com/content/search?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.robertchristgau.com/favicon.ico",
+ "name": "Robert Christgau",
+ "triggers": [
+ "xgau"
+ ],
+ "regions": {
+ "default": "http://www.robertchristgau.com/get_artist.php?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.rbxcdn.com/1387da00c070fd34110985aee87f3155.ico.gzip",
+ "name": "Roblox",
+ "triggers": [
+ "roblox",
+ "rblx",
+ "robloxg"
+ ],
+ "regions": {
+ "default": "https://www.roblox.com/Catalog/Lists.aspx?m=TopFavorites&c=9&t=AllTime&d=All&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.rbxcdn.com/1387da00c070fd34110985aee87f3155.ico.gzip",
+ "name": "Roblox Groups",
+ "triggers": [
+ "robloxgr"
+ ],
+ "regions": {
+ "default": "https://www.roblox.com/Groups/search.aspx?val={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.rbxcdn.com/1387da00c070fd34110985aee87f3155.ico.gzip",
+ "name": "Roblox Users",
+ "triggers": [
+ "rblxg"
+ ],
+ "regions": {
+ "default": "https://www.roblox.com/search/users?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.roblox.com/favicon.ico",
+ "name": "ROBLOX Wiki",
+ "triggers": [
+ "rbxw",
+ "rowiki"
+ ],
+ "regions": {
+ "default": "http://wiki.roblox.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.robokart.com/favicon.ico",
+ "name": "robokart",
+ "triggers": [
+ "rk"
+ ],
+ "regions": {
+ "default": "http://www.robokart.com/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ros.org/wp-content/uploads/2013/10/rosorg-favicon.png",
+ "name": "RobotOS",
+ "triggers": [
+ "ros"
+ ],
+ "regions": {
+ "default": "http://www.ros.org/search/index.html?cx=018259903093183594226%3Atxvzw9fat6w&cof=FORID%3A11%3BNB%3A1&ie=UTF-8&filter=0&num=10&input={{{term}}}&q=gcbaffg&sa=Submit"
+ }
+ },
+ {
+ "favicon": "https://cdn-images-1.medium.com/fit/c/256/256/1*o7t6H896JdbH44l4086Rjg.png",
+ "name": "RobotReview",
+ "triggers": [
+ "robotreview"
+ ],
+ "regions": {
+ "default": "https://robot-review.ru/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.robtex.com/favicon.ico",
+ "name": "Robtex",
+ "triggers": [
+ "robtex"
+ ],
+ "regions": {
+ "default": "https://www.robtex.com/dns-lookup/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rocwiki.org/restfile/Wiki_Settings/Images/sendfile/tinylogo.png",
+ "name": "Rochester Wiki",
+ "triggers": [
+ "rocwiki"
+ ],
+ "regions": {
+ "default": "http://rocwiki.org/?action=search&string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rockpapershotgun.com/wp-content/themes/rockpapershotgun2013/images/favicon-new.ico",
+ "name": "Rock Paper Shotgun",
+ "triggers": [
+ "rockpapershotgun"
+ ],
+ "regions": {
+ "default": "https://www.rockpapershotgun.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://psychocydd.co.uk/favicon.ico",
+ "name": "RockBox",
+ "triggers": [
+ "rockbox"
+ ],
+ "regions": {
+ "default": "http://psychocydd.co.uk/torrents.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rocketindustrial.com/favicon.ico",
+ "name": "Rocket Industrial",
+ "triggers": [
+ "rocket"
+ ],
+ "regions": {
+ "default": "http://www.rocketindustrial.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Rocket League Reddit",
+ "triggers": [
+ "rlr",
+ "srrl"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/RocketLeague/search?q={{{term}}}&restrict_sr=on"
+ }
+ },
+ {
+ "favicon": "//www.rockethub.com/favicon.ico",
+ "name": "RocketHub",
+ "triggers": [
+ "rockethub"
+ ],
+ "regions": {
+ "default": "http://rockethub.com/projects?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s2.wp.com/wp-content/themes/vip/rocketnews-en/img/pts_logo.png",
+ "name": "RocketNews24",
+ "triggers": [
+ "rn24"
+ ],
+ "regions": {
+ "default": "http://en.rocketnews24.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rockit.it/web/img/favicon/favicon.ico",
+ "name": "Rockit",
+ "triggers": [
+ "rockit"
+ ],
+ "regions": {
+ "default": "https://www.rockit.it/web/cerca.php?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rockol.it/favicon.ico?v=GvBnaPa4z5",
+ "name": "Rockol",
+ "triggers": [
+ "rockol"
+ ],
+ "regions": {
+ "default": "http://www.rockol.it/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.rockwellautomation.com/resources/images/rockwellautomation/icons/favicon.ico?v=2",
+ "name": "Rockwell Automation Literature",
+ "triggers": [
+ "ralit"
+ ],
+ "regions": {
+ "default": "http://search.rockwellautomation.com/search?q={{{term}}}&client=literature&filter=0&ie=UTF-8&oe=UTF-8&output=xml_no_dtd&proxystylesheet=literature&site=literature&getfields=*&lang=en&hl=en&num=20&requiredfields=xlanguage%3AMU%7Cxlanguage%3AEN"
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/www.roeselare.org/wp-content/uploads/2017/09/cropped-ROESELAREBLOGT.jpg?fit=192,192",
+ "name": "Roeselare Blogt",
+ "triggers": [
+ "roeselare.org"
+ ],
+ "regions": {
+ "default": "http://www.roeselare.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rogerebert.com/assets/fav/favicon-1d748137ec3330cdb2451cf174c55795.ico",
+ "name": "Roger Ebert",
+ "triggers": [
+ "rogerebert"
+ ],
+ "regions": {
+ "default": "http://www.rogerebert.com/search?utf8=%E2%9C%93&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rogerebert.com/assets/fav/favicon-1d748137ec3330cdb2451cf174c55795.ico",
+ "name": "RogerEbert.com",
+ "triggers": [
+ "ebert"
+ ],
+ "regions": {
+ "default": "http://rogerebert.suntimes.com/section/bossv2?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rogers.com/cms/rogers/images/favicon.ico",
+ "name": "Rogers",
+ "triggers": [
+ "rogers"
+ ],
+ "regions": {
+ "default": "https://www.rogers.com/customer/search?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.roget.org/favicon.ico",
+ "name": "Roget's Hyperlinked Thesaurus",
+ "triggers": [
+ "roget"
+ ],
+ "regions": {
+ "default": "http://www.roget.org/scripts/qq.php?seekword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://roguebasin.roguelikedevelopment.org/favicon.ico",
+ "name": "RogueBasin",
+ "triggers": [
+ "roguebasin"
+ ],
+ "regions": {
+ "default": "http://roguebasin.roguelikedevelopment.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.roguebasin.com/favicon.ico",
+ "name": "RogueBasin",
+ "triggers": [
+ "rougebasin"
+ ],
+ "regions": {
+ "default": "http://www.roguebasin.com/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://rokomari.com/static/200/images/favicon.ico",
+ "name": "rokomari.com",
+ "triggers": [
+ "rokomari"
+ ],
+ "regions": {
+ "default": "http://rokomari.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://owner.roku.com/favicon.ico",
+ "name": "Roku",
+ "triggers": [
+ "roku"
+ ],
+ "regions": {
+ "default": "https://owner.roku.com/Add/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rolexforums.com/favicon.ico",
+ "name": "Rolex Forums",
+ "triggers": [
+ "trf"
+ ],
+ "regions": {
+ "default": "http://www.rolexforums.com/tags.php?tag={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rcdb.com/favicon.ico",
+ "name": "Roller Coaster Database",
+ "triggers": [
+ "rcdb"
+ ],
+ "regions": {
+ "default": "https://rcdb.com/qs.htm?qs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rollingstone.com/wp-content/uploads/2018/07/cropped-rs-favicon.png?w=192",
+ "name": "Rolling Stone",
+ "triggers": [
+ "rollingstone"
+ ],
+ "regions": {
+ "default": "https://www.rollingstone.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rollingstone.com.ar/favicon.ico",
+ "name": "Rolling Stone Argentina",
+ "triggers": [
+ "rsar"
+ ],
+ "regions": {
+ "default": "http://www.rollingstone.com.ar/buscador-r30-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rollingstone.it/wp-content/themes/rs2017-LBdP/images/icons/favicon.ico",
+ "name": "Rolling Stone Italia",
+ "triggers": [
+ "rollingstoneit"
+ ],
+ "regions": {
+ "default": "http://www.rollingstone.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://romfind.com/favicon.ico",
+ "name": "Rom Find",
+ "triggers": [
+ "romfind"
+ ],
+ "regions": {
+ "default": "http://romfind.com/game_search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://romhustler.net/favicon.ico",
+ "name": "Rom Hustler",
+ "triggers": [
+ "romhustler"
+ ],
+ "regions": {
+ "default": "http://romhustler.net/roms/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.romajidesu.com/favicon.ico",
+ "name": "Romajidesu Kanji",
+ "triggers": [
+ "rdkj"
+ ],
+ "regions": {
+ "default": "http://www.romajidesu.com/kanji/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.romajidesu.com/favicon.ico",
+ "name": "Romajidesu Kanji Search",
+ "triggers": [
+ "romajidesukanji"
+ ],
+ "regions": {
+ "default": "http://www.romajidesu.com/kanji/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.romajidesu.com/favicon.ico",
+ "name": "Romajidesu Vocabulary",
+ "triggers": [
+ "rdvcb",
+ "romajidesuvcb"
+ ],
+ "regions": {
+ "default": "http://www.romajidesu.com/?m=dictionary&a=lookup&w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d35c7d8c.web.cern.ch/sites/d35c7d8c.web.cern.ch/files/favicon6.ico",
+ "name": "ROOT",
+ "triggers": [
+ "root"
+ ],
+ "regions": {
+ "default": "https://root.cern.ch/drupal/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.roots-archives.com/favicon.ico",
+ "name": "Roots Archives",
+ "triggers": [
+ "rootsarchives"
+ ],
+ "regions": {
+ "default": "http://www.roots-archives.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rosettacode.org/favicon.ico",
+ "name": "RosettaCode.org",
+ "triggers": [
+ "rosettacode"
+ ],
+ "regions": {
+ "default": "https://rosettacode.org/mw/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.rossmann-cdn.de/resources/templating-kit/themes/einkaufsportal/img/favicon.ico",
+ "name": "Rossmann(DE)",
+ "triggers": [
+ "rossde"
+ ],
+ "regions": {
+ "default": "https://www.rossmann.de/verbraucherportal/toolbox/suche.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rotoworld.com/favicon.ico",
+ "name": "Rotoworld",
+ "triggers": [
+ "roto"
+ ],
+ "regions": {
+ "default": "http://rotoworld.com/content/playersearch.aspx?searchname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://staticv2-4.rottentomatoes.com/static/images/icons/favicon.ico",
+ "name": "Rotten Tomato",
+ "triggers": [
+ "rottentomato",
+ "rottentomatoes",
+ "rt"
+ ],
+ "regions": {
+ "default": "https://www.rottentomatoes.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.routeify.com/wp-content/uploads/2018/02/Routeify_Logo_favicon_v1.png",
+ "name": "ROUTEIFY",
+ "triggers": [
+ "routeify"
+ ],
+ "regions": {
+ "default": "http://routeify.com/?s={{{term}}}&post_type=product"
+ }
+ },
+ {
+ "favicon": "http://rozethaber.com/search/favicon.ico",
+ "name": "Rozet Haber",
+ "triggers": [
+ "rozet"
+ ],
+ "regions": {
+ "default": "http://rozethaber.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.rozetka.ua/favicon.ico",
+ "name": "Rozetka",
+ "triggers": [
+ "rozetka"
+ ],
+ "regions": {
+ "default": "https://rozetka.com.ua/search/?section_id=&section=&text={{{term}}}&rz-search-button="
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/rpg/img/favicon.ico?v=37f3c7c86b1e",
+ "name": "RPG Stack Exchange",
+ "triggers": [
+ "rpgsx",
+ "rpg"
+ ],
+ "regions": {
+ "default": "http://rpg.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cf.geekdo-static.com/icons/favicon.ico",
+ "name": "RPGGeek",
+ "triggers": [
+ "rpggeek"
+ ],
+ "regions": {
+ "default": "https://rpggeek.com/geeksearch.php?action=search&objecttype=rpgunified&q={{{term}}}&B1=Go"
+ }
+ },
+ {
+ "favicon": "http://rpm.pbone.net/favicon.ico",
+ "name": "RPM.pbone.net",
+ "triggers": [
+ "pbone"
+ ],
+ "regions": {
+ "default": "http://rpm.pbone.net/index.php3?stat=3&search={{{term}}}&Search.x=0&Search.y=0&simple=1&srodzaj=1"
+ }
+ },
+ {
+ "favicon": "https://rpmfind.net/favicon.ico",
+ "name": "RPMfind.net",
+ "triggers": [
+ "rpm",
+ "rpmfind"
+ ],
+ "regions": {
+ "default": "https://rpmfind.net/linux/rpm2html/search.php?query={{{term}}}&submit=Search+..."
+ }
+ },
+ {
+ "favicon": "https://fr.rs-online.com/rs.ico",
+ "name": "RS Component (FR)",
+ "triggers": [
+ "rsfr"
+ ],
+ "regions": {
+ "default": "http://radiospares-fr.rs-online.com/web/c/?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uk.rs-online.com/rs.ico",
+ "name": "RS Components",
+ "triggers": [
+ "rsc"
+ ],
+ "regions": {
+ "default": "http://uk.rs-online.com/web/c/?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.rs-online.com/rs.ico",
+ "name": "RS Components (DE)",
+ "triggers": [
+ "rsde"
+ ],
+ "regions": {
+ "default": "http://de.rs-online.com/web/c/?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://it.rs-online.com/rs.ico",
+ "name": "RS Components Italy",
+ "triggers": [
+ "rsit"
+ ],
+ "regions": {
+ "default": "http://it.rs-online.com/web/c/?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.4cdn.org/image/favicon.ico",
+ "name": "rs.4chan.org",
+ "triggers": [
+ "rs4"
+ ],
+ "regions": {
+ "default": "https://rs.4chan.org/?s={{{term}}}&from=ALL"
+ }
+ },
+ {
+ "favicon": "http://www.rcsb.org/favicon.ico",
+ "name": "RSCB Protein Data Bank",
+ "triggers": [
+ "pdb"
+ ],
+ "regions": {
+ "default": "http://www.rcsb.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rseek.org/favicon.png",
+ "name": "RSeek",
+ "triggers": [
+ "rseek"
+ ],
+ "regions": {
+ "default": "http://www.rseek.org/?cx=010923144343702598753:boaz1reyxd4&newwindow=1&q={{{term}}}&sa=Search+functions,+lists,+and+more&cof=FORID:11&siteurl=www.rseek.org/"
+ }
+ },
+ {
+ "favicon": "http://www.wiringherlant.nl/favicon.ico",
+ "name": "RSG Wiringherlant",
+ "triggers": [
+ "wiringherlant"
+ ],
+ "regions": {
+ "default": "http://www.wiringherlant.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.rsspump.com/favicon.ico",
+ "name": "RSSPump",
+ "triggers": [
+ "rsspump"
+ ],
+ "regions": {
+ "default": "http://search.rsspump.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rsssearchhub.com/modules/RssSearchHub/icons/favicon-16x16.png",
+ "name": "RSSsearchhub",
+ "triggers": [
+ "rsssh"
+ ],
+ "regions": {
+ "default": "http://www.rsssearchhub.com/feeds/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rt.com/favicon.ico",
+ "name": "RT",
+ "triggers": [
+ "rtnews"
+ ],
+ "regions": {
+ "default": "https://rt.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.rti.com/favicon.ico",
+ "name": "RTI Connext-DDS 5.2.3 User Manual",
+ "triggers": [
+ "rti523um"
+ ],
+ "regions": {
+ "default": "https://community.rti.com/static/documentation/connext-dds/5.2.3/doc/manuals/connext_dds/html_files/RTI_ConnextDDS_CoreLibraries_UsersManual/index.htm#search-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.rti.com/favicon.ico",
+ "name": "RTI DDS 5.1 C++ API Search",
+ "triggers": [
+ "rti51cpp"
+ ],
+ "regions": {
+ "default": "https://community.rti.com/rti-doc/510/ndds.5.1.0/doc/html/api_cpp/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.rti.com/favicon.ico",
+ "name": "RTI DDS 5.1 Java API Search",
+ "triggers": [
+ "rti51java"
+ ],
+ "regions": {
+ "default": "https://community.rti.com/rti-doc/510/ndds.5.1.0/doc/html/api_java/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.rti.com/favicon.ico",
+ "name": "RTI Knowledge Base",
+ "triggers": [
+ "rtikb"
+ ],
+ "regions": {
+ "default": "https://community.rti.com/search/kb/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rtvnh.nl/static/image/favicon.ico",
+ "name": "RTVNH",
+ "triggers": [
+ "rtvnh"
+ ],
+ "regions": {
+ "default": "http://www.rtvnh.nl/zoeken/1/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ru.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "ru.wikipedia.org",
+ "triggers": [
+ "wikiru",
+ "ruwk",
+ "ш",
+ "шру"
+ ],
+ "regions": {
+ "default": "https://ru.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ru.wiktionary.org/static/favicon/piece.ico",
+ "name": "ru.wiktionary.org",
+ "triggers": [
+ "wtru"
+ ],
+ "regions": {
+ "default": "http://ru.wiktionary.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://cdn0.rubylane.com/0/rubylane.favicon.ico?cachever=d33a65d077",
+ "name": "Ruby Lane",
+ "triggers": [
+ "rubylane"
+ ],
+ "regions": {
+ "default": "http://www.rubylane.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ruby-toolbox.com/favicon.ico",
+ "name": "Ruby Toolbox",
+ "triggers": [
+ "rubytoolbox"
+ ],
+ "regions": {
+ "default": "https://www.ruby-toolbox.com/search?utf8=✓&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ruby-doc.org/favicon.ico",
+ "name": "Ruby-Doc.org",
+ "triggers": [
+ "rubydoc"
+ ],
+ "regions": {
+ "default": "https://www.ruby-doc.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rdoc.info/favicon.ico",
+ "name": "RubyDoc.info",
+ "triggers": [
+ "rdoc"
+ ],
+ "regions": {
+ "default": "http://rdoc.info/find/github?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rubygems.org/favicon.ico",
+ "name": "RubyGems",
+ "triggers": [
+ "rubygems",
+ "gems"
+ ],
+ "regions": {
+ "default": "https://rubygems.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rubygems.org/favicon.ico",
+ "name": "RubyGems",
+ "triggers": [
+ "gem"
+ ],
+ "regions": {
+ "default": "https://rubygems.org/search?utf8=%E2%9C%93&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.rueducommerce.fr/favicon.ico",
+ "name": "Rue du commerce",
+ "triggers": [
+ "rdc"
+ ],
+ "regions": {
+ "default": "http://search.rueducommerce.fr/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rugatu.com/favicon.ico",
+ "name": "Rugatu Q&A",
+ "triggers": [
+ "rugatu"
+ ],
+ "regions": {
+ "default": "http://www.rugatu.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rugbyleagueproject.org/favicon.ico",
+ "name": "Rugby League Project",
+ "triggers": [
+ "rlp"
+ ],
+ "regions": {
+ "default": "http://www.rugbyleagueproject.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ruk.ca/sites/ruk.ca/files/ruk_favicon_2.ico",
+ "name": "ruk.ca",
+ "triggers": [
+ "ruk"
+ ],
+ "regions": {
+ "default": "http://ruk.ca/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rukkus.com/favicon.ico",
+ "name": "Rukkus",
+ "triggers": [
+ "rukkus"
+ ],
+ "regions": {
+ "default": "https://rukkus.com/search-results/all/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.runehq.com/image/favicon.ico",
+ "name": "RuneHQ",
+ "triggers": [
+ "rhq"
+ ],
+ "regions": {
+ "default": "http://www.runehq.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/2007scape/images/6/64/Favicon.ico/revision/latest?cb=20170714053530",
+ "name": "RuneScape 2007 Wiki",
+ "triggers": [
+ "rs07"
+ ],
+ "regions": {
+ "default": "http://2007.runescape.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/runescape2/images/6/64/Favicon.ico/revision/latest?cb=20161107142607",
+ "name": "Runescape Wiki",
+ "triggers": [
+ "runescape",
+ "rscape",
+ "rsw",
+ "rswiki"
+ ],
+ "regions": {
+ "default": "http://runescape.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d368g9lw5ileu7.cloudfront.net/img/icons/favicon.bxbizn.png",
+ "name": "RunSignUp",
+ "triggers": [
+ "rsu"
+ ],
+ "regions": {
+ "default": "https://runsignup.com/Races?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ru.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Russian Wikipedia (Википедия)",
+ "triggers": [
+ "ruwiki"
+ ],
+ "regions": {
+ "default": "https://ru.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.rust-lang.org/favicon.ico",
+ "name": "Rust Nightly Standard Library Documentation",
+ "triggers": [
+ "rustn"
+ ],
+ "regions": {
+ "default": "https://doc.rust-lang.org/nightly/std/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rusta.com/favicon.ico",
+ "name": "Rusta",
+ "triggers": [
+ "rusta"
+ ],
+ "regions": {
+ "default": "http://www.rusta.com/se/Sok/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://dcs.rutgers.edu/sites/all/themes/Rutgers/favicon.ico",
+ "name": "Rutgers University – Digital Classroom Services",
+ "triggers": [
+ "dcs"
+ ],
+ "regions": {
+ "default": "https://dcs.rutgers.edu/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.billygrahambookstore.org/media/favicon/default/bgicon.ico",
+ "name": "Ruth's Attic",
+ "triggers": [
+ "ruth"
+ ],
+ "regions": {
+ "default": "https://www.billygrahambookstore.org/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://s.rutor.info/favicon.ico",
+ "name": "rutor.info",
+ "triggers": [
+ "torin"
+ ],
+ "regions": {
+ "default": "http://super-tor.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rutor.is/s/favicon.ico",
+ "name": "Rutor.is",
+ "triggers": [
+ "rutor"
+ ],
+ "regions": {
+ "default": "http://rutor.is/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rutracker.org/favicon-16x16.png",
+ "name": "RuTracker",
+ "triggers": [
+ "rutracker",
+ "rut"
+ ],
+ "regions": {
+ "default": "https://rutracker.org/forum/tracker.php?nm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rutracker.org/favicon-16x16.png",
+ "name": "rutracker",
+ "triggers": [
+ "rutr"
+ ],
+ "regions": {
+ "default": "https://rutracker.org/forum/tracker.php?nm={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://rutracker.net/favicon-16x16.png",
+ "name": "rutracker.net",
+ "triggers": [
+ "rutn"
+ ],
+ "regions": {
+ "default": "https://rutracker.net/forum/tracker.php?nm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.rutronik24.com/favicon_r24.ico",
+ "name": "Rutronik",
+ "triggers": [
+ "rutronik"
+ ],
+ "regions": {
+ "default": "https://www.rutronik24.com/search-result/qs:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://rutube.ru/static/favicon.ico",
+ "name": "RuTube",
+ "triggers": [
+ "rutube"
+ ],
+ "regions": {
+ "default": "https://rutube.ru/search.html?page=index&search={{{term}}}&search_type=track"
+ }
+ },
+ {
+ "favicon": "http://www.swalter.com/skin/frontend/rd/swalter/favicon.ico",
+ "name": "S. Walter Packaging",
+ "triggers": [
+ "swalter"
+ ],
+ "regions": {
+ "default": "http://www.swalter.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.saabforum.nl/favicon.ico",
+ "name": "Saabforum.nl",
+ "triggers": [
+ "saabforum"
+ ],
+ "regions": {
+ "default": "http://www.saabforum.nl/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.saavn.com/favicon.ico",
+ "name": "Saavn",
+ "triggers": [
+ "saavn"
+ ],
+ "regions": {
+ "default": "http://www.saavn.com/s/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://i0.wp.com/sabahlatan.com/wp-content/uploads/2016/03/cropped-sabahlatanicon-1.png?fit=192,192&ssl=1",
+ "name": "Sabahlatan",
+ "triggers": [
+ "sabahlatan"
+ ],
+ "regions": {
+ "default": "http://sabahlatan.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bugs.sabayon.org/images/favicon.ico",
+ "name": "Sabayon Bugzilla",
+ "triggers": [
+ "sabayonbugs"
+ ],
+ "regions": {
+ "default": "https://bugs.sabayon.org/buglist.cgi?bug_status=__all__&content={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.sabayon.org/images/favicon.ico",
+ "name": "Sabayon Entropy Packages",
+ "triggers": [
+ "equo"
+ ],
+ "regions": {
+ "default": "https://packages.sabayon.org/quicksearch?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forum.sabayon.org/favicon.ico",
+ "name": "Sabayon Forums",
+ "triggers": [
+ "sabayonforums"
+ ],
+ "regions": {
+ "default": "https://forum.sabayon.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yeastgenome.org/img-domain/favicon.ico",
+ "name": "Saccharomyces Genome Database",
+ "triggers": [
+ "yg"
+ ],
+ "regions": {
+ "default": "https://www.yeastgenome.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yeastgenome.org/img-domain/favicon.ico",
+ "name": "Saccharomyces Genome Database (SGD)",
+ "triggers": [
+ "yeast"
+ ],
+ "regions": {
+ "default": "http://www.yeastgenome.org/search?q={{{term}}}&is_quick=true"
+ }
+ },
+ {
+ "favicon": "https://www.safaribooksonline.com/static/favicon.ico",
+ "name": "Safari Books Online",
+ "triggers": [
+ "safari"
+ ],
+ "regions": {
+ "default": "https://www.safaribooksonline.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://safari-extensions.apple.com/favicon.ico",
+ "name": "Safari Extensions Gallery",
+ "triggers": [
+ "safariext"
+ ],
+ "regions": {
+ "default": "https://safari-extensions.apple.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://safebooru.org/favicon.ico",
+ "name": "Safebooru",
+ "triggers": [
+ "safebooru"
+ ],
+ "regions": {
+ "default": "http://safebooru.org/index.php?page=post&s=list&tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.synapse.org/favicon.png?v=3",
+ "name": "Sage Synapse",
+ "triggers": [
+ "synapse"
+ ],
+ "regions": {
+ "default": "https://www.synapse.org/#!Search:{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.sahibinden.com/favicon.ico",
+ "name": "sahibinden.com",
+ "triggers": [
+ "sahibinden"
+ ],
+ "regions": {
+ "default": "http://www.sahibinden.com/kelime-ile-arama?query_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sailguide.com/favicon.ico?v=3ee4MYOmwd",
+ "name": "Sailguide",
+ "triggers": [
+ "sailguide"
+ ],
+ "regions": {
+ "default": "http://www.sailguide.com/boats?boatname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sainsburys.co.uk/webapp/wcs/stores/servlet/favicon.ico",
+ "name": "Sainsbury's",
+ "triggers": [
+ "sainsburys"
+ ],
+ "regions": {
+ "default": "https://www.sainsburys.co.uk/webapp/wcs/stores/servlet/SearchDisplayView?storeId=10151&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sakugabooru.com/favicon.ico?new",
+ "name": "Sakugabooru",
+ "triggers": [
+ "sakuga"
+ ],
+ "regions": {
+ "default": "https://sakugabooru.com/post?tags={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://login.salesforce.com/favicon.ico",
+ "name": "Salesforce",
+ "triggers": [
+ "sforce"
+ ],
+ "regions": {
+ "default": "https://login.salesforce.com/ui/setup/SetupSearchResultsPage?setupSearch={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://help.salesforce.com/favicon.ico",
+ "name": "Salesforce Help",
+ "triggers": [
+ "sfhelp"
+ ],
+ "regions": {
+ "default": "https://help.salesforce.com/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/salesforce/img/favicon.ico?v=9841feb8ed49",
+ "name": "Salesforce Stack Exchange",
+ "triggers": [
+ "sfse"
+ ],
+ "regions": {
+ "default": "http://salesforce.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://appexchange.salesforce.com/favicon.ico",
+ "name": "Salesforce.com AppExchange",
+ "triggers": [
+ "appex"
+ ],
+ "regions": {
+ "default": "https://appexchange.salesforce.com/results?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.salidzini.lv/favicon.ico",
+ "name": "Salidzini.lv",
+ "triggers": [
+ "sal"
+ ],
+ "regions": {
+ "default": "http://www.salidzini.lv/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.salixos.org/wiki/index.php/img/favicon.png",
+ "name": "SalixOS",
+ "triggers": [
+ "salix"
+ ],
+ "regions": {
+ "default": "https://www.salixos.org/wiki/index.php/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.salixos.org/forum/img/favicon.png",
+ "name": "SalixOS Forums",
+ "triggers": [
+ "salixforums"
+ ],
+ "regions": {
+ "default": "https://www.salixos.org/forum/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.saltystock.com/favicon.ico",
+ "name": "saltystock",
+ "triggers": [
+ "saltystock"
+ ],
+ "regions": {
+ "default": "http://www.saltystock.com/search.pp?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://video.samaritanspurse.org/wp-content/plugins/genesis-favicon-uploader/favicons/favicon.ico",
+ "name": "Samaritan Purse TV",
+ "triggers": [
+ "sptv"
+ ],
+ "regions": {
+ "default": "http://video.samaritanspurse.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.samaritanspurse.org/wp-content/themes/samaritans-purse/images/favicon.png",
+ "name": "Samaritan's Purse",
+ "triggers": [
+ "samaritans"
+ ],
+ "regions": {
+ "default": "http://www.samaritanspurse.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.samsung.com/us/smg/etc/designs/samsung/global/favicon.ico",
+ "name": "Samsung",
+ "triggers": [
+ "sam"
+ ],
+ "regions": {
+ "default": "http://www.samsung.com/au/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sandiego.org/media/favicon.ico",
+ "name": "San Diego - The Official Travel Resource for the San Diego Region",
+ "triggers": [
+ "sandiego"
+ ],
+ "regions": {
+ "default": "https://www.sandiego.org/search/site.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sflib1.sfpl.org/favicon.ico",
+ "name": "San Francisco Public Library",
+ "triggers": [
+ "sfpl"
+ ],
+ "regions": {
+ "default": "https://sflib1.sfpl.org/search~S1?/X{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sccl.bibliocommons.com/images/CAL-SCCL/favicon.ico",
+ "name": "Sana Clara County Library District",
+ "triggers": [
+ "sccl"
+ ],
+ "regions": {
+ "default": "https://sccl.bibliocommons.com/search/?t=smart&searchOpt=catalogue&q= {{{term}}}&search_category=keyword"
+ }
+ },
+ {
+ "favicon": "http://www.sanakirja.org/static/sanakirja_img/favicon.ico?1414356562",
+ "name": "Sanakirja",
+ "triggers": [
+ "sana"
+ ],
+ "regions": {
+ "default": "http://www.sanakirja.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sanakirja.org/static/sanakirja_img/favicon.ico?1414356562",
+ "name": "Sanakirja.org",
+ "triggers": [
+ "sanakirja"
+ ],
+ "regions": {
+ "default": "http://www.sanakirja.org/search.php?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.sanakirja.org/static/sanakirja_img/favicon.ico?1414356562",
+ "name": "Sanakirja.org en-fi",
+ "triggers": [
+ "skenfi"
+ ],
+ "regions": {
+ "default": "http://www.sanakirja.org/search.php?l=3&l2=17&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sanalpazar.com/favicon.ico",
+ "name": "Sanal Pazar",
+ "triggers": [
+ "sanalpazar"
+ ],
+ "regions": {
+ "default": "http://www.sanalpazar.com/urunara?criteria={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sandiamesa.com/wp-content/uploads/2017/07/cropped-icon-4-192x192.png",
+ "name": "Sandia Mesa Animation Studios",
+ "triggers": [
+ "sandiamesa"
+ ],
+ "regions": {
+ "default": "https://sandiamesa.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://apps.sandstorm.io/favicons/favicon.ico",
+ "name": "Sandstorm App Market",
+ "triggers": [
+ "sandstorm"
+ ],
+ "regions": {
+ "default": "https://apps.sandstorm.io/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://smpl.bibliocommons.com/images/CAL-SANTAMONICA/favicon.ico",
+ "name": "Santa Monica Public Library",
+ "triggers": [
+ "smpl"
+ ],
+ "regions": {
+ "default": "https://smpl.bibliocommons.com/search?t=smart&search_category=keyword&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://adsabs.harvard.edu/cgi-bin/favicon.ico",
+ "name": "SAO/NASA ADS",
+ "triggers": [
+ "ads"
+ ],
+ "regions": {
+ "default": "http://adsabs.harvard.edu/cgi-bin/basic_connect?qsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://adsabs.harvard.edu//cgi-bin/favicon.ico",
+ "name": "SAO/NASA Astrophysics Data System",
+ "triggers": [
+ "adsabs"
+ ],
+ "regions": {
+ "default": "http://adsabs.harvard.edu//cgi-bin/basic_connect?qsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://svenska.se/wp-content/uploads/2017/10/cropped-krans_sa-192x192.png",
+ "name": "SAOB",
+ "triggers": [
+ "saob"
+ ],
+ "regions": {
+ "default": "https://svenska.se/tre/?sok={{{term}}}&pz=1"
+ }
+ },
+ {
+ "favicon": "https://search.sap.com/favicon.ico",
+ "name": "SAP Community Network",
+ "triggers": [
+ "scn"
+ ],
+ "regions": {
+ "default": "https://search.sap.com/ui/scn#query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.sap.com/favicon.ico",
+ "name": "SAP Community Network",
+ "triggers": [
+ "sdn"
+ ],
+ "regions": {
+ "default": "https://search.sap.com/ui/scn#query={{{term}}}&startindex=1"
+ }
+ },
+ {
+ "favicon": "https://launchpad.support.sap.com/favicon.ico",
+ "name": "SAP Downloads",
+ "triggers": [
+ "sapdl"
+ ],
+ "regions": {
+ "default": "https://launchpad.support.sap.com/#/softwarecenter/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.sap.com/viewer/_build_c7f0d79fc4297d38c201b9ef/images/favicon.ico",
+ "name": "SAP Help Portal",
+ "triggers": [
+ "saphelp"
+ ],
+ "regions": {
+ "default": "https://help.sap.com/viewer/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://launchpad.support.sap.com/favicon.ico",
+ "name": "SAP Notes",
+ "triggers": [
+ "sapnotes"
+ ],
+ "regions": {
+ "default": "https://launchpad.support.sap.com/#/solutions/notes/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://launchpad.support.sap.com/favicon.ico",
+ "name": "SAP notes",
+ "triggers": [
+ "sapnote"
+ ],
+ "regions": {
+ "default": "https://launchpad.support.sap.com/#/notes/{{{term}}}/E"
+ }
+ },
+ {
+ "favicon": "//imgs.sapo.pt/sapologos/touchicon/generic/touch-icon-128.png",
+ "name": "SAPO",
+ "triggers": [
+ "sapo"
+ ],
+ "regions": {
+ "default": "http://pesquisa.sapo.pt/?barra=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forums.sapphirecommunity.com/favicon.ico",
+ "name": "Sapphire",
+ "triggers": [
+ "sapphire"
+ ],
+ "regions": {
+ "default": "http://forums.sapphirecommunity.com/search.php?keywords={{{term}}}&terms=all&author=&fid%5B%5D=4&fid%5B%5D=6&sc=1&sf=all&sr=posts&sk=t&sd=d&st=0&ch=800&t=0&submit=Search"
+ }
+ },
+ {
+ "favicon": "https://www.saraiva.com.br/skin/frontend/saraiva/saraiva/favicon.ico",
+ "name": "Saraiva",
+ "triggers": [
+ "saraiva"
+ ],
+ "regions": {
+ "default": "https://busca.saraiva.com.br/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cfw.sarna.net/favicon-96x96.png",
+ "name": "Sarna",
+ "triggers": [
+ "sarna"
+ ],
+ "regions": {
+ "default": "http://www.sarna.net/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://support.sas.com/etc/designs/saswww/favicon.ico",
+ "name": "SAS",
+ "triggers": [
+ "sas"
+ ],
+ "regions": {
+ "default": "https://support.sas.com/dsearch?Find=Search&ct=&qt={{{term}}}&col=suppprd&nh=25&qp=&qc=suppsas&ws=1&qm=1&st=1&lk=1&rf=0&oq=&rq=0"
+ }
+ },
+ {
+ "favicon": "https://saucenao.com/favicon.ico",
+ "name": "SauceNAO",
+ "triggers": [
+ "saucenao"
+ ],
+ "regions": {
+ "default": "https://saucenao.com/search.php?db=999&url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://savannah.gnu.org/images/Savannah.theme/icon.png",
+ "name": "Savannah",
+ "triggers": [
+ "savannah"
+ ],
+ "regions": {
+ "default": "https://savannah.gnu.org/search/?type_of_search=soft&words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ctsecure.saveonfoods.com/app/storefront/content/dist/styles/css/themes/8E4E398/images/FavIcon.ico?mwg_v=18731149",
+ "name": "Save-On-Foods",
+ "triggers": [
+ "saveonfoods"
+ ],
+ "regions": {
+ "default": "https://shop.saveonfoods.com/#/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.saxo.com/favicon.ico?httpRoute=true",
+ "name": "SAXO.com",
+ "triggers": [
+ "saxo"
+ ],
+ "regions": {
+ "default": "https://www.saxo.com/dk/soeg/boeger?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sayat.me/img/favicon.ico",
+ "name": "Sayat.me",
+ "triggers": [
+ "sayat"
+ ],
+ "regions": {
+ "default": "https://sayat.me/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sba.gov/favicon.ico",
+ "name": "SBA",
+ "triggers": [
+ "sba"
+ ],
+ "regions": {
+ "default": "http://www.sba.gov/search/sba-search-results.html?cx=012149749304426494285%3Avl4bn0plkpq&cof=FORID%3A11&ie=UTF-8&q={{{term}}}&btnG=Search"
+ }
+ },
+ {
+ "favicon": "http://fahrplan.sbb.ch/hafas-res/fahrplan/img/sbb/favicon.ico",
+ "name": "SBB",
+ "triggers": [
+ "sbb"
+ ],
+ "regions": {
+ "default": "http://fahrplan.sbb.ch/bin/query.exe/dn?S={{{term}}}&Z={{{s2}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scala-lang.org/resources/favicon-16x16.png",
+ "name": "Scala API",
+ "triggers": [
+ "scalalang",
+ "scaladoc",
+ "scala"
+ ],
+ "regions": {
+ "default": "http://www.scala-lang.org/api/current/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://index.scala-lang.org/assets/img/favicon.ico",
+ "name": "Scala Center",
+ "triggers": [
+ "scaladex"
+ ],
+ "regions": {
+ "default": "https://index.scala-lang.org/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://index.scala-lang.org/assets/img/favicon.ico",
+ "name": "Scala Library Index",
+ "triggers": [
+ "scalai"
+ ],
+ "regions": {
+ "default": "https://index.scala-lang.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scala-lang.org/resources/favicon-16x16.png",
+ "name": "Scala Standard Library",
+ "triggers": [
+ "scalaapi"
+ ],
+ "regions": {
+ "default": "http://www.scala-lang.org/api/current/index.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scan.co.uk/content/icons/favicon.ico",
+ "name": "Scan",
+ "triggers": [
+ "scan"
+ ],
+ "regions": {
+ "default": "http://www.scan.co.uk/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://scala-search.org/favicon.ico",
+ "name": "Scaps: Scala API Search",
+ "triggers": [
+ "scaps"
+ ],
+ "regions": {
+ "default": "http://scala-search.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://scd.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "SCD de l'Université de Poitiers (bibliothèques universitaires)",
+ "triggers": [
+ "scdpo"
+ ],
+ "regions": {
+ "default": "http://scd.summon.serialssolutions.com/search?s.q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.scheidung.de/fileadmin/favicons/favicon-16x16.png",
+ "name": "Scheidung.de",
+ "triggers": [
+ "scheidung"
+ ],
+ "regions": {
+ "default": "https://www.scheidung.de/suche.html?tx_kesearch_pi1%5Bsword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://srfi.schemers.org/srfi-aiiebicfdblc/favicon.png",
+ "name": "Scheme Request for Implementation",
+ "triggers": [
+ "srfi"
+ ],
+ "regions": {
+ "default": "http://srfi.schemers.org/srfi-{{{term}}}/srfi-aiiebicfdblc.html"
+ }
+ },
+ {
+ "favicon": "http://tree.schimka.com//favicon.ico",
+ "name": "Schimka",
+ "triggers": [
+ "schimka"
+ ],
+ "regions": {
+ "default": "http://tree.schimka.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.schnittberichte.com/favicon.ico",
+ "name": "Schnittberichte",
+ "triggers": [
+ "schnittberichte"
+ ],
+ "regions": {
+ "default": "http://www.schnittberichte.com/svds.php?Page=Suche&String={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scholarpedia.org/favicon.ico",
+ "name": "Scholarpedia",
+ "triggers": [
+ "scholarpedia"
+ ],
+ "regions": {
+ "default": "http://www.scholarpedia.org/wiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Title"
+ }
+ },
+ {
+ "favicon": "https://media.scholieren.net/apple-touch-icon.png",
+ "name": "scholieren.com",
+ "triggers": [
+ "scholieren"
+ ],
+ "regions": {
+ "default": "http://www.scholieren.com/zoek?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//i.schoolido.lu/static/favicon.ico",
+ "name": "schoolido.lu",
+ "triggers": [
+ "sit"
+ ],
+ "regions": {
+ "default": "http://schoolido.lu/cards/?search={{{term}}}&name=&rarity=&attribute=&is_promo=&is_special=&is_event=&skill=&translated_collection=&collection=&main_unit=&sub_unit=&idol_school=&idol_year=&release_after=&release_before=&view=cards&albumbuilder_account=15585&account=&ordering=id&reverse_order=on"
+ }
+ },
+ {
+ "favicon": "http://www.schottenland.de/favicon.ico",
+ "name": "Schottenland",
+ "triggers": [
+ "schottenland"
+ ],
+ "regions": {
+ "default": "http://www.schottenland.de/suche/?searchstring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d2ob0iztsaxy5v.cloudfront.net/favicon.gif",
+ "name": "Schuh",
+ "triggers": [
+ "schuh"
+ ],
+ "regions": {
+ "default": "http://www.schuh.co.uk/results.aspx#st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.srf.ch/extension/srf_shared/design/standard/images/favicons/favicon-96x96.png",
+ "name": "Schweizer Radio und Fernsehen",
+ "triggers": [
+ "srf"
+ ],
+ "regions": {
+ "default": "https://www.srf.ch/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//lib.search.ch/favicon.ico?c=3",
+ "name": "Schweizer Telefonbuch tel.search.ch",
+ "triggers": [
+ "telsearch"
+ ],
+ "regions": {
+ "default": "https://tel.search.ch/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sci-hub.tw/favicon.ico",
+ "name": "Sci-Hub",
+ "triggers": [
+ "sh"
+ ],
+ "regions": {
+ "default": "https://sci-hub.tw/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sciencedaily.com/favicon.ico",
+ "name": "Science Daily",
+ "triggers": [
+ "scd"
+ ],
+ "regions": {
+ "default": "https://www.sciencedaily.com/search/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sciencedaily.com/favicon.ico",
+ "name": "Sciencedaily",
+ "triggers": [
+ "sciencedaily"
+ ],
+ "regions": {
+ "default": "https://www.sciencedaily.com/search/?keyword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d2ufo47lrtsv5s.cloudfront.net/sites/all/themes/shared/science_jcore/favicon.ico",
+ "name": "sciencemag",
+ "triggers": [
+ "smag"
+ ],
+ "regions": {
+ "default": "http://science.sciencemag.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.scientificamerican.com/public/resources/favicons/favicon-4c8c70500bd3f01ae8c38cf7dd2771fe.ico",
+ "name": "Scientific American",
+ "triggers": [
+ "sa"
+ ],
+ "regions": {
+ "default": "https://www.scientificamerican.com/search/?q={{{term}}}&x=-783&y=-180 "
+ }
+ },
+ {
+ "favicon": "https://search.scielo.org/static/image/favicon.ico",
+ "name": "Scientific Electronic Library Online",
+ "triggers": [
+ "scielo"
+ ],
+ "regions": {
+ "default": "http://search.scielo.org/?q={{{term}}}&where=ORG"
+ }
+ },
+ {
+ "favicon": "https://sci-hub.tw/favicon.ico",
+ "name": "SCI-HUB",
+ "triggers": [
+ "scihub"
+ ],
+ "regions": {
+ "default": "http://sci-hub.tw/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.scilab.org/favicon.ico",
+ "name": "Scilab Documentation",
+ "triggers": [
+ "scilab"
+ ],
+ "regions": {
+ "default": "https://help.scilab.org/docs/6.0.0/en_US/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scimagojr.com/favicon.ico",
+ "name": "Scimago Journal & Country Rank",
+ "triggers": [
+ "sjr"
+ ],
+ "regions": {
+ "default": "http://www.scimagojr.com/journalsearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://scimagojr.com/favicon.ico",
+ "name": "SCImago Journal Rank",
+ "triggers": [
+ "scimago"
+ ],
+ "regions": {
+ "default": "http://scimagojr.com/journalsearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.scipy.org/doc/scipy/reference/_static/favicon.ico",
+ "name": "SciPy",
+ "triggers": [
+ "scipy"
+ ],
+ "regions": {
+ "default": "https://docs.scipy.org/doc/scipy/reference/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://www.scirus.com/favicon.ico",
+ "name": "Scirus",
+ "triggers": [
+ "scrius"
+ ],
+ "regions": {
+ "default": "http://www.scirus.com/srsapp/search?q={{{term}}}&t=all&sort=0&g=s"
+ }
+ },
+ {
+ "favicon": "http://www.scoop.it/resources/img/V4/blue/favico.png",
+ "name": "Scoop.it",
+ "triggers": [
+ "scoop"
+ ],
+ "regions": {
+ "default": "http://www.scoop.it/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scope.dk/favicon.ico",
+ "name": "scope.dk",
+ "triggers": [
+ "scope.dk"
+ ],
+ "regions": {
+ "default": "http://www.scope.dk/sogning?sog={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.scopek.com/favicon.ico",
+ "name": "scopek",
+ "triggers": [
+ "scopek"
+ ],
+ "regions": {
+ "default": "http://www.scopek.com/index.aspx?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.scotbycycles.co.uk/favicon.ico",
+ "name": "Scotby Cycles",
+ "triggers": [
+ "scotby"
+ ],
+ "regions": {
+ "default": "https://www.scotbycycles.co.uk/facetresults.aspx?Term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://2q68zr2j8z7226zse114443m-wpengine.netdna-ssl.com/wp-content/uploads/2015/08/cropped-SWI-Logo-Favicon-2-192x192.png",
+ "name": "Scott Wyden Imagery",
+ "triggers": [
+ "scottwyden"
+ ],
+ "regions": {
+ "default": "https://scottwyden.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3media.247sports.com/Content/Scout/Icon/favicon-16x16.png",
+ "name": "scout.com",
+ "triggers": [
+ "scout"
+ ],
+ "regions": {
+ "default": "http://www.scout.com/news?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://scouts.org.uk/favicon.ico",
+ "name": "Scouts UK",
+ "triggers": [
+ "scouts"
+ ],
+ "regions": {
+ "default": "http://scouts.org.uk/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.scp-wiki.net/local--favicon/favicon.gif",
+ "name": "SCP Foundation",
+ "triggers": [
+ "scp"
+ ],
+ "regions": {
+ "default": "http://www.scp-wiki.net/search:site/a/p/q/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.scrabblelookup.com/favicon.ico",
+ "name": "scrabblelookup",
+ "triggers": [
+ "scrabblelookup"
+ ],
+ "regions": {
+ "default": "http://www.scrabblelookup.com/word/portion/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://marketplace.tf/favicon.png?v=GvvaRl2O4q",
+ "name": "Scrap.TF",
+ "triggers": [
+ "marketplacetf"
+ ],
+ "regions": {
+ "default": "https://marketplace.tf/search?q={{{term}}}&?r=76561198039950396"
+ }
+ },
+ {
+ "favicon": "http://scrapetorrent.com/favicon.ico",
+ "name": "Scrape Torrent",
+ "triggers": [
+ "scrape"
+ ],
+ "regions": {
+ "default": "http://scrapetorrent.com/Search/index.php?search={{{term}}} &sort=seed"
+ }
+ },
+ {
+ "favicon": "http://doc.scrapy.org/favicon.ico",
+ "name": "scrapy docs",
+ "triggers": [
+ "scrapy"
+ ],
+ "regions": {
+ "default": "http://doc.scrapy.org/en/latest/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://scratch.mit.edu/favicon.ico",
+ "name": "scratch",
+ "triggers": [
+ "scratch",
+ "sb2"
+ ],
+ "regions": {
+ "default": "https://scratch.mit.edu/search/projects?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://scratch.mit.edu/favicon.ico",
+ "name": "Scratch",
+ "triggers": [
+ "s_user"
+ ],
+ "regions": {
+ "default": "https://scratch.mit.edu/users/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://scratchforums.asun.co/favicon.ico",
+ "name": "Scratch Forums Search",
+ "triggers": [
+ "scratchforums"
+ ],
+ "regions": {
+ "default": "https://scratchforums.asun.co/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.scratch.mit.edu/favicon.ico",
+ "name": "Scratch Wiki",
+ "triggers": [
+ "scratchwiki"
+ ],
+ "regions": {
+ "default": "http://wiki.scratch.mit.edu/w/index.php?search={{{term}}}&fulltext=Search&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://assets.roosterteeth.com/img/rt-favicon.png",
+ "name": "ScrewAttack.com",
+ "triggers": [
+ "screwattack"
+ ],
+ "regions": {
+ "default": "http://www.screwattack.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.screwfix.com/favicon.ico",
+ "name": "Screwfix",
+ "triggers": [
+ "screwfix"
+ ],
+ "regions": {
+ "default": "https://www.screwfix.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.scribd.com/favicon.ico?v=4",
+ "name": "Scribd",
+ "triggers": [
+ "scribd",
+ "docs"
+ ],
+ "regions": {
+ "default": "https://www.scribd.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://scrollback.io/assets/images/favicon.png",
+ "name": "Scrollback",
+ "triggers": [
+ "scrollback"
+ ],
+ "regions": {
+ "default": "https://scrollback.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.scrooge.co.uk/touch-icon-32x32.png",
+ "name": "Scrooge",
+ "triggers": [
+ "scrooge"
+ ],
+ "regions": {
+ "default": "https://www.scrooge.co.uk/search?keyphrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.scryfall.com/icon.png?49b7eb5b6f6d8897b251a7b0d2ba2952",
+ "name": "Scryfall",
+ "triggers": [
+ "sfa",
+ "scry",
+ "scryfall"
+ ],
+ "regions": {
+ "default": "https://scryfall.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.libsdl.org/favicon.ico",
+ "name": "SDL2 Wiki",
+ "triggers": [
+ "sdl2"
+ ],
+ "regions": {
+ "default": "https://wiki.libsdl.org/FrontPage?action=fullsearch&context=180&value={{{term}}}&titlesearch=Titles"
+ }
+ },
+ {
+ "favicon": "https://seaborn.pydata.org/_static/favicon.ico",
+ "name": "seaborn",
+ "triggers": [
+ "sns"
+ ],
+ "regions": {
+ "default": "https://seaborn.pydata.org/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "https://addons.cdn.mozilla.net/favicon.ico?v=2",
+ "name": "Seamonkey Add-on",
+ "triggers": [
+ "seamonkey"
+ ],
+ "regions": {
+ "default": "https://addons.mozilla.org/en-US/seamonkey/search/?q={{{term}}}&cat=all&lver=any&pid=1&sort=&pp=20&lup=&advanced="
+ }
+ },
+ {
+ "favicon": "http://www.searchco.de/static/favicon.ico",
+ "name": "Search Code",
+ "triggers": [
+ "code"
+ ],
+ "regions": {
+ "default": "http://www.searchco.de/?q={{{term}}}&cs=on"
+ }
+ },
+ {
+ "favicon": "https://searchengineland.com/favicon.ico",
+ "name": "Search Engine Land",
+ "triggers": [
+ "seland"
+ ],
+ "regions": {
+ "default": "http://search.searchengineland.com/search?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searchenginewatch.com/wp-content/themes/search-engine-watch/img/icons/favicon-32x32.png",
+ "name": "Search Engine Watch",
+ "triggers": [
+ "searchenginewatch"
+ ],
+ "regions": {
+ "default": "https://searchenginewatch.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://unicode-search.net/favicon.ico",
+ "name": "Search for character(s) in Unicode",
+ "triggers": [
+ "uni"
+ ],
+ "regions": {
+ "default": "http://unicode-search.net/unicode-namesearch.pl?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.oid-info.com/favicon.ico",
+ "name": "Search OID registry",
+ "triggers": [
+ "oid"
+ ],
+ "regions": {
+ "default": "http://www.oid-info.com/cgi-bin/display?oid={{{term}}}&submit=Display&action=display"
+ }
+ },
+ {
+ "favicon": "http://www.searchtempest.com/favicons/favicon.ico",
+ "name": "Search Tempest",
+ "triggers": [
+ "searchtempest"
+ ],
+ "regions": {
+ "default": "http://www.searchtempest.com/search?location=12345&search_string={{{term}}}&cityselect=zip"
+ }
+ },
+ {
+ "favicon": "http://search-hadoop.com/asset/img/icon-hadoop.png",
+ "name": "Search-Hadoop",
+ "triggers": [
+ "hadoop"
+ ],
+ "regions": {
+ "default": "http://search-hadoop.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//lib.search.ch/favicon.ico?c=3",
+ "name": "search.ch",
+ "triggers": [
+ "searchch"
+ ],
+ "regions": {
+ "default": "https://www.search.ch/?q={{{term}}}&search=Suchen"
+ }
+ },
+ {
+ "favicon": "//lib.search.ch/favicon.ico?c=3",
+ "name": "Search.ch Phonebook (Switzerland)",
+ "triggers": [
+ "telch"
+ ],
+ "regions": {
+ "default": "https://tel.search.ch/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d25euotgly07ai.cloudfront.net/images/favicon-16x16.png",
+ "name": "Search.com",
+ "triggers": [
+ "search"
+ ],
+ "regions": {
+ "default": "http://www.search.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchalta.com/assets/images/favicon.png",
+ "name": "SearchAlta Image Search",
+ "triggers": [
+ "altaimage"
+ ],
+ "regions": {
+ "default": "http://www.searchalta.com/?a=images&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchalta.com/assets/images/favicon.png",
+ "name": "SearchAlta Video Search",
+ "triggers": [
+ "altavideo"
+ ],
+ "regions": {
+ "default": "http://www.searchalta.com/?a=videos&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchbug.com/images/ico/searchbug.ico",
+ "name": "SearchBug",
+ "triggers": [
+ "searchbug"
+ ],
+ "regions": {
+ "default": "http://www.searchbug.com/tools/reverse-phone-lookup.aspx?TYPE=phonerev&TAG=tools&FULLPHONE={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://searchco.de/static/favicon.ico",
+ "name": "searchco.de",
+ "triggers": [
+ "searchcode"
+ ],
+ "regions": {
+ "default": "http://searchco.de/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searchcode.com/static/favicon.ico",
+ "name": "Searchcode",
+ "triggers": [
+ "scode",
+ "sea"
+ ],
+ "regions": {
+ "default": "https://searchcode.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchforphp.com/favicon.ico",
+ "name": "SearchForPHP",
+ "triggers": [
+ "searchforphp"
+ ],
+ "regions": {
+ "default": "http://www.searchforphp.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.searchlock.com/images/favicon.ico",
+ "name": "SearchLock",
+ "triggers": [
+ "slk",
+ "slock"
+ ],
+ "regions": {
+ "default": "https://www.searchlock.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.searchlock.com/images/favicon.ico",
+ "name": "Searchlock Images",
+ "triggers": [
+ "slocki"
+ ],
+ "regions": {
+ "default": "https://www.searchlock.com/search?tbm=isch&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searchworks.stanford.edu/assets/favicon-8a4c41227945e5f20503f62517defcfb2ef88f578e222838318c704472d483b0.ico",
+ "name": "SearchWorks (SULAIR)",
+ "triggers": [
+ "searchworks"
+ ],
+ "regions": {
+ "default": "https://searchworks.stanford.edu/?q={{{term}}}&search_field=search"
+ }
+ },
+ {
+ "favicon": "http://www.sears.com/favicon.ico",
+ "name": "Sears",
+ "triggers": [
+ "sears"
+ ],
+ "regions": {
+ "default": "http://www.sears.com/shc/s/search_10153_12605?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lh4.googleusercontent.com/TAiIc0M1VgFsAWFY1Xv9dOdAC1iVEHv0OmnAsbttwtplVy6KZUXiv5qJoUdfjCUK1EFcSf_2hIAleTxt99_U-3TS5og5tZJI",
+ "name": "Sears Canada",
+ "triggers": [
+ "searsca"
+ ],
+ "regions": {
+ "default": "http://www.sears.ca/en/search?q={{{term}}}&lang=default"
+ }
+ },
+ {
+ "favicon": "http://www.searsoutlet.com/webr/rvba0ce15/img/favicon.png",
+ "name": "Sears Outlet",
+ "triggers": [
+ "searsoutlet"
+ ],
+ "regions": {
+ "default": "http://www.searsoutlet.com/d/products.jsp?md=srh_md&stxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searx.me/static/themes/oscar/img/favicon.png",
+ "name": "searX",
+ "triggers": [
+ "searx"
+ ],
+ "regions": {
+ "default": "https://searx.me/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searx.me/static/themes/oscar/img/favicon.png",
+ "name": "searx.me",
+ "triggers": [
+ "searx.me"
+ ],
+ "regions": {
+ "default": "https://searx.me/?q={{{term}}}&pageno=1&category_general"
+ }
+ },
+ {
+ "favicon": "https://seatgeek.com/favicon.png",
+ "name": "SeatGeek",
+ "triggers": [
+ "seatgeek"
+ ],
+ "regions": {
+ "default": "https://seatgeek.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sebsauvage.net/favicon.ico",
+ "name": "Sebsauvage",
+ "triggers": [
+ "seb"
+ ],
+ "regions": {
+ "default": "http://sebsauvage.net/rhaa/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sec.gov/favicon.ico",
+ "name": "SEC",
+ "triggers": [
+ "sec",
+ "secedgar",
+ "edgar",
+ "edgart"
+ ],
+ "regions": {
+ "default": "https://www.sec.gov/cgi-bin/browse-edgar?CIK={{{term}}}&owner=exclude&action=getcompany"
+ }
+ },
+ {
+ "favicon": "http://insecure.org/favicon.ico",
+ "name": "SecLists.org",
+ "triggers": [
+ "seclists"
+ ],
+ "regions": {
+ "default": "http://insecure.org/search.html?cx=partner-pub-0078565546631069%3Abx60rb-fytx&cof=FORID%3A9&ie=ISO-8859-1&q={{{term}}}&sa=SecSearch"
+ }
+ },
+ {
+ "favicon": "https://secondhandsongs.com/art/favicon.png",
+ "name": "SecondHandSongs",
+ "triggers": [
+ "shs"
+ ],
+ "regions": {
+ "default": "https://secondhandsongs.com/search?search_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://securedrop.readthedocs.org/favicon.ico",
+ "name": "SecureDrop Read the Docs",
+ "triggers": [
+ "securedrop"
+ ],
+ "regions": {
+ "default": "https://securedrop.readthedocs.org/en/latest/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://securelist.com/wp-content/themes/securelist/images/site-icon.png",
+ "name": "Securelist Malware info",
+ "triggers": [
+ "kasperskymal"
+ ],
+ "regions": {
+ "default": "https://www.securelist.com/en/descriptions?words={{{term}}}&behavior=&Search=Search&search_type=1"
+ }
+ },
+ {
+ "favicon": "https://securityinabox.org/favicon.ico",
+ "name": "Security in a Box",
+ "triggers": [
+ "siab"
+ ],
+ "regions": {
+ "default": "https://securityinabox.org/en/search/node/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://securityshelf.com/wp-content/uploads/2016/11/cropped-SS-Security-Shelf_Final-Brand_Brand-Black-2-192x192.jpg",
+ "name": "Security Shelf",
+ "triggers": [
+ "securityshelf"
+ ],
+ "regions": {
+ "default": "https://securityshelf.com/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.securitytube.net/favicon.ico",
+ "name": "Security Tube",
+ "triggers": [
+ "sectube"
+ ],
+ "regions": {
+ "default": "http://www.securitytube.net/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.security.nl/favicon.ico",
+ "name": "Security.nl",
+ "triggers": [
+ "securitynl"
+ ],
+ "regions": {
+ "default": "https://www.security.nl/zoeken?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://securityheaders.io/images/favicon.ico",
+ "name": "securityheaders.io",
+ "triggers": [
+ "securityheaders"
+ ],
+ "regions": {
+ "default": "https://securityheaders.io/?q={{{term}}}&followRedirects=on"
+ }
+ },
+ {
+ "favicon": "https://sedo.com/favicon.ico",
+ "name": "Sedo",
+ "triggers": [
+ "sedo"
+ ],
+ "regions": {
+ "default": "https://sedo.com/search/searchresult.php4?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.seedpeer.me/assets/images/favicon.ico",
+ "name": "seedpeer.me",
+ "triggers": [
+ "spme"
+ ],
+ "regions": {
+ "default": "http://www.seedpeer.me/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.seefelder.net/favicon.ico",
+ "name": "Seefelder",
+ "triggers": [
+ "seefelder"
+ ],
+ "regions": {
+ "default": "https://www.seefelder.net/suche?id=&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://seekcdn.com/search/houston/1.0.9472/favicon.ico",
+ "name": "Seek",
+ "triggers": [
+ "seek"
+ ],
+ "regions": {
+ "default": "http://www.seek.com.au/JobSearch?SearchFrom=quick&Keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.seekingalpha.com/assets/favicon-192x192-59bfd51c9fe6af025b2f9f96c807e46f8e2f06c5ae787b15bf1423e6c676d4db.png",
+ "name": "Seeking Alpha",
+ "triggers": [
+ "seekingalpha"
+ ],
+ "regions": {
+ "default": "http://seekingalpha.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Seeks",
+ "triggers": [
+ "seeks"
+ ],
+ "regions": {
+ "default": "http://seeks-project.info/search.php/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://seenthis.net/favicon.ico",
+ "name": "SeenThis",
+ "triggers": [
+ "seen"
+ ],
+ "regions": {
+ "default": "http://seenthis.net/spip.php?page=recherche&recherche={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sefaria.org/static/icons/favicon.ico?v=xQzLlLp7oR",
+ "name": "Sefaria",
+ "triggers": [
+ "sefaria"
+ ],
+ "regions": {
+ "default": "http://www.sefaria.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.segredosdatiaemilia.com.br/wp-content/uploads/2013/08/16x16logo.jpg",
+ "name": "Segredos da Tia Emilia",
+ "triggers": [
+ "sdte"
+ ],
+ "regions": {
+ "default": "http://www.segredosdatiaemilia.com.br/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sehat.com.pk/product_images/faviicon.png",
+ "name": "Sehat",
+ "triggers": [
+ "sehat"
+ ],
+ "regions": {
+ "default": "https://sehat.com.pk/search.php?search_query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://lain.wiki/favicon.ico",
+ "name": "SEL wiki",
+ "triggers": [
+ "lainwiki"
+ ],
+ "regions": {
+ "default": "https://lain.wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://de.selfhtml.org/skins/Selfhtml/images/favicon2.ico",
+ "name": "SELFHTML",
+ "triggers": [
+ "selfhtml"
+ ],
+ "regions": {
+ "default": "http://de.selfhtml.org/navigation/suche/index.htm?Suchanfrage={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.selfhtml.org/skins/Selfhtml/images/favicon2.ico",
+ "name": "SELFHTML wiki",
+ "triggers": [
+ "selfhtmlwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.selfhtml.org/wiki/Spezial:Suche?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.semanticscholar.org/img/favicon.png",
+ "name": "Semantic Scholar",
+ "triggers": [
+ "smsc"
+ ],
+ "regions": {
+ "default": "https://www.semanticscholar.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.semanticscholar.org/img/favicon.png",
+ "name": "Semantic Scholar",
+ "triggers": [
+ "semantic",
+ "ssch"
+ ],
+ "regions": {
+ "default": "https://www.semanticscholar.org/search?q={{{term}}}&sort=relevance&ae=false"
+ }
+ },
+ {
+ "favicon": "http://www.senderbase.org/assets/favicons/favicon-49c9b25776778ff43873cf5ebde2e1ffcd0747ad1042ac5a5306cdde3ffca8cd.ico",
+ "name": "SenderBase",
+ "triggers": [
+ "senderbase"
+ ],
+ "regions": {
+ "default": "http://www.senderbase.org/senderbase_queries/detailhost?search_string={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.senscritique.com/favicon-16x16.png",
+ "name": "Sens Critique",
+ "triggers": [
+ "scri",
+ "senscritique"
+ ],
+ "regions": {
+ "default": "http://www.senscritique.com/recherche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.senscritique.com/favicon-16x16.png",
+ "name": "SensCritique",
+ "triggers": [
+ "scq"
+ ],
+ "regions": {
+ "default": "https://www.senscritique.com/recherche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.senscritique.com/favicon-16x16.png",
+ "name": "SensCritique",
+ "triggers": [
+ "scritique"
+ ],
+ "regions": {
+ "default": "http://www.senscritique.com/recherche/?gs_query={{{term}}}&submit2="
+ }
+ },
+ {
+ "favicon": "http://senseis.xmp.net/favicon.ico",
+ "name": "Sensei's Library",
+ "triggers": [
+ "senseislibrary"
+ ],
+ "regions": {
+ "default": "http://senseis.xmp.net/?searchstring={{{term}}}&fullsearch.x=0&fullsearch.y=0&searchtype=either"
+ }
+ },
+ {
+ "favicon": "http://senseis.xmp.net/favicon.ico",
+ "name": "Sensei's Library",
+ "triggers": [
+ "senseis"
+ ],
+ "regions": {
+ "default": "http://senseis.xmp.net/?searchstring={{{term}}}&fullsearch.x=0&fullsearch.y=0&searchtype=either "
+ }
+ },
+ {
+ "favicon": "http://senseis.xmp.net/favicon.ico",
+ "name": "Sensei's Library",
+ "triggers": [
+ "sensei"
+ ],
+ "regions": {
+ "default": "http://senseis.xmp.net/?search={{{term}}}&searchtype=title"
+ }
+ },
+ {
+ "favicon": "http://sentireascoltare.com/favicon.png",
+ "name": "Sentire Ascoltare",
+ "triggers": [
+ "sentireascoltare"
+ ],
+ "regions": {
+ "default": "http://sentireascoltare.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sentireascoltare.com/favicon.png",
+ "name": "SENTIREASCOLTARE",
+ "triggers": [
+ "senta"
+ ],
+ "regions": {
+ "default": "http://sentireascoltare.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dlinkers-pullz-hihigckid8tyws.netdna-ssl.com/wp-content/uploads/2017/08/favicon-16x16.png",
+ "name": "SEO Expert Page",
+ "triggers": [
+ "seoexpertpage"
+ ],
+ "regions": {
+ "default": "https://www.seoexpertpage.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sephora.com/favicon.ico",
+ "name": "Sephora",
+ "triggers": [
+ "sephora"
+ ],
+ "regions": {
+ "default": "http://www.sephora.com/search/search.jsp?keyword={{{term}}}&mode=all"
+ }
+ },
+ {
+ "favicon": "http://www.serebii.net/favicon.ico",
+ "name": "Serebii",
+ "triggers": [
+ "serebii"
+ ],
+ "regions": {
+ "default": "http://www.serebii.net/search.shtml?cx=018410473690156091934%3A6gahkiyodbi&cof=FORID%3A11&q={{{term}}}&sa=Search&siteurl=www.serebii.net%2Findex2.shtml"
+ }
+ },
+ {
+ "favicon": "http://www.seriales.us/favicon.ico",
+ "name": "Seriales.us",
+ "triggers": [
+ "seriales"
+ ],
+ "regions": {
+ "default": "http://www.seriales.us/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.seriebox.com/images/favicons/favicon.png",
+ "name": "Seriebox",
+ "triggers": [
+ "seriebox"
+ ],
+ "regions": {
+ "default": "http://www.seriebox.com/search.php?txt={{{term}}} &submit=OK"
+ }
+ },
+ {
+ "favicon": "http://serienjunkies.org/media/img/favicon.ico",
+ "name": "Serienjunkies",
+ "triggers": [
+ "srj"
+ ],
+ "regions": {
+ "default": "http://serienjunkies.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://serienjunkies.org/media/img/favicon.ico",
+ "name": "SerienJunkies",
+ "triggers": [
+ "sjk"
+ ],
+ "regions": {
+ "default": "http://serienjunkies.org/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//g-cdn.serienjunkies.de/icon/favicon.ico",
+ "name": "serienjunkies.de",
+ "triggers": [
+ "sj"
+ ],
+ "regions": {
+ "default": "https://www.serienjunkies.de/tags/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.seriespepito.com/favicon.ico",
+ "name": "Series Pepito",
+ "triggers": [
+ "spep"
+ ],
+ "regions": {
+ "default": "http://www.seriespepito.com/buscador/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://series.ly/favicon.ico",
+ "name": "Series.ly",
+ "triggers": [
+ "sly"
+ ],
+ "regions": {
+ "default": "http://series.ly/scripts/search/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.seriouseats.com/1/braestar/live/ico/favicon-16x16.png",
+ "name": "Serious Eats",
+ "triggers": [
+ "seriouseats"
+ ],
+ "regions": {
+ "default": "https://www.seriouseats.com/search?term={{{term}}}&site=all"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/serverfault/img/favicon.ico?v=b7dd95e61b8b",
+ "name": "ServerFault",
+ "triggers": [
+ "serverfault",
+ "sf"
+ ],
+ "regions": {
+ "default": "https://serverfault.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.service-public.fr/resources/v-f3de1063b1/web/img/favicon/favicon.ico",
+ "name": "service-public.fr",
+ "triggers": [
+ "servicepublic"
+ ],
+ "regions": {
+ "default": "http://www.service-public.fr/recherche/afsrecherche.php?afs%3Aquery={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://developer.servicenow.com/favicon.ico",
+ "name": "ServiceNow",
+ "triggers": [
+ "snc"
+ ],
+ "regions": {
+ "default": "https://developer.servicenow.com/app.do#!/search?category=API&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://share.servicenow.com/favicon.ico?v=4",
+ "name": "ServiceNow",
+ "triggers": [
+ "sharesnc"
+ ],
+ "regions": {
+ "default": "https://share.servicenow.com/app.do#/search-result?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.servicenow.com/favicon.ico",
+ "name": "ServiceNow Wiki",
+ "triggers": [
+ "snw"
+ ],
+ "regions": {
+ "default": "https://wiki.servicenow.com/search-results.php?cx=005409823165138974380%3Abltnnmgfoek&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa=Search&siteurl=wiki.servicenow.com%2Fsearch-results.php&ref=&ss="
+ }
+ },
+ {
+ "favicon": "http://www.seslisozluk.net/favicon.ico",
+ "name": "Sesli Sözlük",
+ "triggers": [
+ "sesli"
+ ],
+ "regions": {
+ "default": "http://www.seslisozluk.net/?ssQBy=0&word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.seslisozluk.com/favicon.ico",
+ "name": "sesli sözlük",
+ "triggers": [
+ "seslisozluk"
+ ],
+ "regions": {
+ "default": "http://www.seslisozluk.com/?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.setlist.fm/img/icon-large.ico",
+ "name": "Setlist.fm",
+ "triggers": [
+ "setlist",
+ "sl"
+ ],
+ "regions": {
+ "default": "http://www.setlist.fm/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.seur.com/favicon.ico",
+ "name": "Seur",
+ "triggers": [
+ "seur"
+ ],
+ "regions": {
+ "default": "http://www.seur.com/seguimiento-online.do?segOnlineIdentificador={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.seznam.cz/r/img/favicon.ico",
+ "name": "Seznam",
+ "triggers": [
+ "seznam",
+ "szn"
+ ],
+ "regions": {
+ "default": "http://search.seznam.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.obrazky.cz/img/icons/favicon.ico",
+ "name": "Seznam Obrázky",
+ "triggers": [
+ "obrazky"
+ ],
+ "regions": {
+ "default": "https://www.obrazky.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://videa.seznam.cz/img/favicon/favicon.ico",
+ "name": "Seznam Videa",
+ "triggers": [
+ "videa"
+ ],
+ "regions": {
+ "default": "https://videa.seznam.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.seznam.cz/media/img/seznam-icons/favicon.ico",
+ "name": "Seznam Zprávy",
+ "triggers": [
+ "szpravy"
+ ],
+ "regions": {
+ "default": "https://www.seznam.cz/zpravy/hledani?q={{{term}}}&search--active=1"
+ }
+ },
+ {
+ "favicon": "https://clanky.seznam.cz/r/img/favicon.ico",
+ "name": "Seznam Články",
+ "triggers": [
+ "clanky"
+ ],
+ "regions": {
+ "default": "https://clanky.seznam.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://evidencia-dopravcov-git.bmhd.cz/www/static/favicons/favicon-busy-2.ico",
+ "name": "seznam-autobusu.cz",
+ "triggers": [
+ "autobus"
+ ],
+ "regions": {
+ "default": "http://seznam-autobusu.cz/seznam?numberPlateOrNumber={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slovnik.seznam.cz/img/favicon.ico",
+ "name": "Seznam.cz Slovník En-Cz",
+ "triggers": [
+ "sezs"
+ ],
+ "regions": {
+ "default": "http://slovnik.seznam.cz/en-cz/word/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sfgate.com/favicon.ico",
+ "name": "SFGate",
+ "triggers": [
+ "sfgate"
+ ],
+ "regions": {
+ "default": "http://www.sfgate.com/search/?action=search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sfmoma.org/sfmomamedia/static/sfmoma/images/icons/favicon.ico",
+ "name": "SFMOMA",
+ "triggers": [
+ "sfmoma"
+ ],
+ "regions": {
+ "default": "https://www.sfmoma.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thejadednetwork.com/favicon.png",
+ "name": "SFX Translations @ The JADED Network",
+ "triggers": [
+ "sfx"
+ ],
+ "regions": {
+ "default": "http://thejadednetwork.com/sfx/search/?keyword={{{term}}}&submitSearch="
+ }
+ },
+ {
+ "favicon": "https://www.shabdkosh.com/favicon.ico",
+ "name": "Shabdkosh",
+ "triggers": [
+ "shbd"
+ ],
+ "regions": {
+ "default": "https://www.shabdkosh.com/translate/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://shabdkosh.com/favicon.ico",
+ "name": "Shabdkosh Kannada",
+ "triggers": [
+ "skk"
+ ],
+ "regions": {
+ "default": "https://shabdkosh.com/kn/translate/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.shadertoy.com/img/favicon.ico",
+ "name": "shadertoy.com",
+ "triggers": [
+ "shadertoy"
+ ],
+ "regions": {
+ "default": "https://www.shadertoy.com/results?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://shaktianandayoga.com/wp-content/uploads/2014/04/aum-om-shaktianandayoga-yoga-shakti-meditation-16x161.png",
+ "name": "Shakti Ananda Yoga",
+ "triggers": [
+ "shaktianandayoga"
+ ],
+ "regions": {
+ "default": "http://shaktianandayoga.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://share.dmhy.org/favicon.ico",
+ "name": "Share DMHY",
+ "triggers": [
+ "dmhy"
+ ],
+ "regions": {
+ "default": "https://share.dmhy.org/topics/list?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.sharingtricks.com/wp-content/images/sharing-tricks-icon-100px.png",
+ "name": "Sharing tricks",
+ "triggers": [
+ "trick"
+ ],
+ "regions": {
+ "default": "http://www.sharingtricks.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shaw.ca/favicon.ico",
+ "name": "Shaw",
+ "triggers": [
+ "shaw"
+ ],
+ "regions": {
+ "default": "https://www.shaw.ca/store/search/search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shazam.com/resources/0e9779483cccdda859427bdb559d3dd23441fa4b/favicon.ico",
+ "name": "Shazam",
+ "triggers": [
+ "shz"
+ ],
+ "regions": {
+ "default": "https://www.shazam.com/de/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shbf.se/templates/protostar/favicon.ico",
+ "name": "SHBF:s bryggarforum",
+ "triggers": [
+ "shbf"
+ ],
+ "regions": {
+ "default": "http://shbf.se/bryggaren/search.php?keywords={{{term}}}&sid=7fb2bed909445b5497565d97ea00eb62"
+ }
+ },
+ {
+ "favicon": "https://www.sheetmusicplus.com/favicon.ico",
+ "name": "Sheet Music Plus",
+ "triggers": [
+ "sheetmusicplus"
+ ],
+ "regions": {
+ "default": "http://www.sheetmusicplus.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.sheetmusicdirect.com/favicon-16x16.png?refresh=7",
+ "name": "sheetmusicdirect.com",
+ "triggers": [
+ "sheetmusicdirect",
+ "smd"
+ ],
+ "regions": {
+ "default": "http://www.sheetmusicdirect.com/Search.aspx?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sheldonbrown.com/favicon.ico",
+ "name": "Sheldon Brown's Bicycle Technical Info",
+ "triggers": [
+ "bike"
+ ],
+ "regions": {
+ "default": "http://sheldonbrown.com/searchResults.html?cx=partner-pub-1229949690989515%3A1174459614&cof=FORID%3A10&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shelfari.com/favicon.ico",
+ "name": "Shelfari",
+ "triggers": [
+ "shelfari"
+ ],
+ "regions": {
+ "default": "http://www.shelfari.com/search/books?Keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www2.cdn.sherdog.com/2620/favicon.ico",
+ "name": "Sherdog",
+ "triggers": [
+ "sherdog"
+ ],
+ "regions": {
+ "default": "http://www.sherdog.com/stats/fightfinder?SearchTxt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sherwin-williams.com/wcsstore/SherwinWilliamsAssetStore/dist/images/favicon.ico",
+ "name": "Sherwin-Williams",
+ "triggers": [
+ "sherwin"
+ ],
+ "regions": {
+ "default": "http://www.sherwin-williams.com/search/?siteSection=&Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shiatsu-stijlen.nl/favicon.ico",
+ "name": "Shiatsu Stijlen",
+ "triggers": [
+ "shiatsu"
+ ],
+ "regions": {
+ "default": "http://www.shiatsu-stijlen.nl/zoeken.php?cx=partner-pub-1276597034470244%3Aslojxr-8otw&cof=FORID%3A11&ie=ISO-8859-1&q={{{term}}}&sa=Zoeken"
+ }
+ },
+ {
+ "favicon": "https://shikimori.org/favicons/opera-icon-228x228.png",
+ "name": "Shikimori",
+ "triggers": [
+ "shm",
+ "shiki"
+ ],
+ "regions": {
+ "default": "https://shikimori.org/animes?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shinden.pl/favicon.ico",
+ "name": "Shinden",
+ "triggers": [
+ "shinden"
+ ],
+ "regions": {
+ "default": "http://shinden.pl/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shironet.mako.co.il/favicon.ico",
+ "name": "Shironet",
+ "triggers": [
+ "shironet"
+ ],
+ "regions": {
+ "default": "http://shironet.mako.co.il/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shirts-designer.com/favicon.ico",
+ "name": "Shirts-Designer.com",
+ "triggers": [
+ "shirts"
+ ],
+ "regions": {
+ "default": "http://shirts-designer.com/t-shirts/{{{term}}}.php"
+ }
+ },
+ {
+ "favicon": "http://shitcore.org/favicon.ico",
+ "name": "shitcore.org",
+ "triggers": [
+ "shitcore"
+ ],
+ "regions": {
+ "default": "http://shitcore.org/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shiza-project.com/favicon.ico",
+ "name": "Shiza Project",
+ "triggers": [
+ "shiza"
+ ],
+ "regions": {
+ "default": "http://shiza-project.com/releases/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shmoop.com/assets/https/images/favicon.ico",
+ "name": "Shmoop",
+ "triggers": [
+ "shmoop"
+ ],
+ "regions": {
+ "default": "http://www.shmoop.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.shodan.io/shodan/img/favicon.png",
+ "name": "shodan",
+ "triggers": [
+ "shodan"
+ ],
+ "regions": {
+ "default": "https://www.shodan.io/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.shodan.io/shodan/img/favicon.png",
+ "name": "SHODAN",
+ "triggers": [
+ "shodanhq"
+ ],
+ "regions": {
+ "default": "http://www.shodanhq.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shooter.cn/favicon.ico",
+ "name": "Shooter",
+ "triggers": [
+ "shooter"
+ ],
+ "regions": {
+ "default": "http://shooter.cn/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s5.sywcdn.net/static/img/favicon.ico?v=4",
+ "name": "Shop Your Way",
+ "triggers": [
+ "shopyourway",
+ "syw"
+ ],
+ "regions": {
+ "default": "http://www.shopyourway.com/search/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shop.ca/vassets/img/favicon.ico",
+ "name": "shop.ca",
+ "triggers": [
+ "shopca"
+ ],
+ "regions": {
+ "default": "https://www.shop.ca/webapp/wcs/stores/servlet/SearchDisplay?storeId=10201&catalogId=10301&langId=-1&pageSize=48&beginIndex=0&searchSource=Q&sType=SimpleSearch&resultCatEntryType=2&showResultsPage=true&pageView=imageOnly&searchTermScope=-1&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.static-shopcade.com/r2b0cd0f80e5a91d3128176b709287ce700796b1d/assets/images/favicon.png",
+ "name": "Shopcade",
+ "triggers": [
+ "shopcade"
+ ],
+ "regions": {
+ "default": "https://www.shopcade.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shopclues.com/favicon.ico",
+ "name": "SHOPCLUES",
+ "triggers": [
+ "shopclues"
+ ],
+ "regions": {
+ "default": "http://shopclues.com/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/shopify-marketing_assets/static/shopify-favicon.png",
+ "name": "Shopify",
+ "triggers": [
+ "shopify"
+ ],
+ "regions": {
+ "default": "https://docs.shopify.com/manual/search?stq= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shopomo.com/favicon.ico",
+ "name": "Shopomo",
+ "triggers": [
+ "shopomo"
+ ],
+ "regions": {
+ "default": "http://www.shopomo.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www1.shoppersdrugmart.ca/static/core/images/favicon.ico",
+ "name": "Shoppers Drug Mart",
+ "triggers": [
+ "shoppers"
+ ],
+ "regions": {
+ "default": "https://www1.shoppersdrugmart.ca/en/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shopping-bargains.com/favicon.ico",
+ "name": "Shopping-Bargains",
+ "triggers": [
+ "bargain",
+ "coupon"
+ ],
+ "regions": {
+ "default": "http://www.shopping-bargains.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shopsavvy.com/medias/favicon/favicon.ico",
+ "name": "ShopSavvy",
+ "triggers": [
+ "shopsavvy"
+ ],
+ "regions": {
+ "default": "http://shopsavvy.com/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.shoptimate.net/favicon.ico",
+ "name": "Shoptimate",
+ "triggers": [
+ "shtm"
+ ],
+ "regions": {
+ "default": "http://www.shoptimate.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shopto.net/favicon.ico",
+ "name": "ShopTo.net",
+ "triggers": [
+ "shopto"
+ ],
+ "regions": {
+ "default": "https://www.shopto.net/search/newSearchPage?Filter_department=&newsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://s2.cnnx.io/s2static/us/sz/7eddb83d/sz2/common/images/shopzilla.ico",
+ "name": "Shopzilla",
+ "triggers": [
+ "shopzilla"
+ ],
+ "regions": {
+ "default": "https://www.shopzilla.com/{{{term}}}/search"
+ }
+ },
+ {
+ "favicon": "https://shoryuken.com/favicon.ico",
+ "name": "Shoryuken",
+ "triggers": [
+ "srk"
+ ],
+ "regions": {
+ "default": "https://shoryuken.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shouldiremoveit.com/favicon.ico",
+ "name": "Should I remove It?",
+ "triggers": [
+ "siri"
+ ],
+ "regions": {
+ "default": "http://www.shouldiremoveit.com/programs.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.shoutcast.com/favicon.ico",
+ "name": "Shoutcast Streaming Internet Radio",
+ "triggers": [
+ "shoutcast"
+ ],
+ "regions": {
+ "default": "http://www.shoutcast.com/Internet-Radio/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.shroomery.org/favicon.www.shroomery.org.ico",
+ "name": "Shroomery",
+ "triggers": [
+ "shroomery"
+ ],
+ "regions": {
+ "default": "https://www.shroomery.org/search.php?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www2.shutterstock.com/base/public/images/favicons/favicon_rev3-181c9e328e.ico",
+ "name": "Shutterstock",
+ "triggers": [
+ "ststock"
+ ],
+ "regions": {
+ "default": "https://www.shutterstock.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www2.shutterstock.com/base/public/images/favicons/favicon_rev3-181c9e328e.ico",
+ "name": "Shutterstock",
+ "triggers": [
+ "shutterstock"
+ ],
+ "regions": {
+ "default": "http://www.shutterstock.com/cat.mhtml?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sierratradingpost.com/favicon.ico",
+ "name": "Sierra Trading Post",
+ "triggers": [
+ "stp"
+ ],
+ "regions": {
+ "default": "http://www.sierratradingpost.com/s~{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://partners.sigfox.com/app-assets/image/favicon/favicon-160x160.png",
+ "name": "Sigfox Partner Network",
+ "triggers": [
+ "sigfox"
+ ],
+ "regions": {
+ "default": "https://partners.sigfox.com/search/products?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sigmaaldrich.com/favicon.ico",
+ "name": "Sigma Aldritch Catalog",
+ "triggers": [
+ "sigma"
+ ],
+ "regions": {
+ "default": "https://www.sigmaaldrich.com/catalog/search?interface=All&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.signbsl.com/favicon-16x16.png",
+ "name": "SignBSL",
+ "triggers": [
+ "bsl"
+ ],
+ "regions": {
+ "default": "http://www.signbsl.com/sign/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.signingsavvy.com/favicon.ico",
+ "name": "Signing Savvy",
+ "triggers": [
+ "signingsavvy"
+ ],
+ "regions": {
+ "default": "https://www.signingsavvy.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://doc.sikuli.org/favicon.ico",
+ "name": "Sikuli",
+ "triggers": [
+ "sikuli"
+ ],
+ "regions": {
+ "default": "http://doc.sikuli.org/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.svb.com/favicon.ico",
+ "name": "Silicon Valley Bank",
+ "triggers": [
+ "svb"
+ ],
+ "regions": {
+ "default": "https://www.svb.com/searchresults.aspx?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.silverstripe.org/favicon-16x16.png",
+ "name": "Silverstripe",
+ "triggers": [
+ "ssp"
+ ],
+ "regions": {
+ "default": "https://www.silverstripe.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://simania.co.il/images/favicon.ico",
+ "name": "Simania",
+ "triggers": [
+ "simania"
+ ],
+ "regions": {
+ "default": "http://simania.co.il/searchBooks.php?searchType=tabAll&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://simbad.u-strasbg.fr/favicon.ico",
+ "name": "SIMBAD Astronomical Database",
+ "triggers": [
+ "simbad"
+ ],
+ "regions": {
+ "default": "http://simbad.u-strasbg.fr/simbad/sim-basic?Ident={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.similarsites.com/favicon.ico",
+ "name": "SimilarSites",
+ "triggers": [
+ "similar"
+ ],
+ "regions": {
+ "default": "http://www.similarsites.com/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.similarsitesearch.com/favicon.ico",
+ "name": "similarsitesearch",
+ "triggers": [
+ "similarsitesearch"
+ ],
+ "regions": {
+ "default": "http://www.similarsitesearch.com/q.php?URL={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.similarsitesearch.com/favicon.ico",
+ "name": "SimilarSiteSearch",
+ "triggers": [
+ "ssses"
+ ],
+ "regions": {
+ "default": "http://www.similarsitesearch.com/es/sitio/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.similarsitesearch.com/favicon.ico",
+ "name": "SimilarSiteSearch",
+ "triggers": [
+ "sss"
+ ],
+ "regions": {
+ "default": "http://www.similarsitesearch.com/q.php?URL={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.similarweb.com/favicon.ico",
+ "name": "SimilarWeb",
+ "triggers": [
+ "similarweb"
+ ],
+ "regions": {
+ "default": "https://www.similarweb.com/website/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.lib.sfu.ca/images/favicon.ico",
+ "name": "Simon Fraser University Library",
+ "triggers": [
+ "sfulib"
+ ],
+ "regions": {
+ "default": "http://search.lib.sfu.ca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://simple.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Simple English Wikipedia",
+ "triggers": [
+ "sw"
+ ],
+ "regions": {
+ "default": "https://simple.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://simple.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Simple English Wikipedia",
+ "triggers": [
+ "se.wikipedia",
+ "se.w"
+ ],
+ "regions": {
+ "default": "https://simple.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.simplicite.io/pict/favicon.ico",
+ "name": "Simplicité.io",
+ "triggers": [
+ "simplicite"
+ ],
+ "regions": {
+ "default": "https://www.simplicite.io/resources/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.simplyhired.com/favicon.ico",
+ "name": "SimplyHired",
+ "triggers": [
+ "simplyhired"
+ ],
+ "regions": {
+ "default": "https://www.simplyhired.com/a/jobs/list/q-{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.simurgsaglik.com.tr/favicon.ico",
+ "name": "SIMURG Medical Assistance",
+ "triggers": [
+ "simurgsaglik"
+ ],
+ "regions": {
+ "default": "http://www.simurgsaglik.com.tr/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://s.weibo.com/favicon.ico",
+ "name": "Sina Weibo",
+ "triggers": [
+ "weibo"
+ ],
+ "regions": {
+ "default": "https://s.weibo.com/weibo/{{{term}}}?frm=opensearch"
+ }
+ },
+ {
+ "favicon": "https://asset.sindonews.net/v3/search/2015/images/icon/favicon-32x32.png",
+ "name": "SINDOnews",
+ "triggers": [
+ "sindonews"
+ ],
+ "regions": {
+ "default": "https://search.sindonews.com/search?type=artikel&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sinemalar.com/favicon.ico",
+ "name": "Sinemalar",
+ "triggers": [
+ "sinemalar"
+ ],
+ "regions": {
+ "default": "http://www.sinemalar.com/ara/?type=all&page=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sing365.com/images/favicon-16x16.png",
+ "name": "Sing365",
+ "triggers": [
+ "sing365"
+ ],
+ "regions": {
+ "default": "http://www.sing365.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sing365.com/images/favicon-16x16.png",
+ "name": "Sing365",
+ "triggers": [
+ "sing"
+ ],
+ "regions": {
+ "default": "http://www.sing365.com/search.html?kw=on&q={{{term}}}&submit=go"
+ }
+ },
+ {
+ "favicon": "https://singletrackworld.com/wp-content/blogs.dir/1/files/2018/03/cropped-wsi-imageoptim-Cog_30pc_black-192x192.jpg",
+ "name": "Single Track World",
+ "triggers": [
+ "stw"
+ ],
+ "regions": {
+ "default": "https://singletrackworld.com/forum/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sinonimi-contrari.it/includes/images/favicon.ico",
+ "name": "Sinonimi - Contrari",
+ "triggers": [
+ "snit"
+ ],
+ "regions": {
+ "default": "http://www.sinonimi-contrari.it/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://luirig.altervista.org/favicon.ico",
+ "name": "Sinonimi Master",
+ "triggers": [
+ "sinonimi"
+ ],
+ "regions": {
+ "default": "http://luirig.altervista.org/sinonimi/hypertext/ricerca.php?title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sinonimi.it/favicon.ico",
+ "name": "Sinonimi.it",
+ "triggers": [
+ "sinonimit"
+ ],
+ "regions": {
+ "default": "http://sinonimi.it/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sinopak.net/img/favicon.ico?1425985576",
+ "name": "sinopak",
+ "triggers": [
+ "sinopak"
+ ],
+ "regions": {
+ "default": "http://sinopak.net/search?controller=search&orderby=position&orderway=desc&search_query={{{term}}}&submit_search=Search"
+ }
+ },
+ {
+ "favicon": "http://www.sitag.ch/suchen/typo3conf/ext/sr_skin_sitag/templates/favicon.ico",
+ "name": "SITAG - swiss style at work",
+ "triggers": [
+ "sitag"
+ ],
+ "regions": {
+ "default": "http://www.sitag.ch/suchen/?tx_indexedsearch%5Bsword%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.siteduzero.com/favicon.ico?eae3b07",
+ "name": "Site du Zéro",
+ "triggers": [
+ "siteduzero"
+ ],
+ "regions": {
+ "default": "http://www.siteduzero.com/recherche.html?c=3&src={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sitealytics.com/favicon.ico",
+ "name": "sitealytics.com",
+ "triggers": [
+ "sitealytics"
+ ],
+ "regions": {
+ "default": "http://www.sitealytics.com/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://dab1nmslvvntp.cloudfront.net/favicon.ico",
+ "name": "Sitepoint",
+ "triggers": [
+ "sitepoint"
+ ],
+ "regions": {
+ "default": "https://www.sitepoint.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dab1nmslvvntp.cloudfront.net/favicon.ico",
+ "name": "SitePoint Reference",
+ "triggers": [
+ "spr"
+ ],
+ "regions": {
+ "default": "http://search.sitepoint.com/?q={{{term}}}&refinements%5Breference%5D=1"
+ }
+ },
+ {
+ "favicon": "https://www.siteslike.com/images/favicon.ico?v=0f0334db42bdfbe01fd0c587b5b10cce",
+ "name": "siteslike",
+ "triggers": [
+ "siteslike"
+ ],
+ "regions": {
+ "default": "http://www.siteslike.com/similar/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://assetsnffrgf-a.akamaihd.net/themes/content-theme/images/icon_favicon.gif",
+ "name": "Sitio oficial de los testigos de Jehová: jw.org",
+ "triggers": [
+ "jwes"
+ ],
+ "regions": {
+ "default": "https://www.jw.org/es/búsquedas/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://situsali.com/wp-content/uploads/2017/09/cropped-sa-logo-2-1-192x192.png",
+ "name": "Situs Ali",
+ "triggers": [
+ "situsali"
+ ],
+ "regions": {
+ "default": "https://situsali.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://wiki.sk89q.com/favicon.ico",
+ "name": "sk98q",
+ "triggers": [
+ "sk98q"
+ ],
+ "regions": {
+ "default": "http://wiki.sk89q.com/w/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.skal-man.se/favicon.ico",
+ "name": "Skalman",
+ "triggers": [
+ "skalman"
+ ],
+ "regions": {
+ "default": "https://www.skal-man.se/sok/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.skelbimai.lt/favicon.ico",
+ "name": "Skelbimai",
+ "triggers": [
+ "skelbimai"
+ ],
+ "regions": {
+ "default": "https://www.skelbimai.lt/paieska?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://skelbiu-static.dgn.lt/static/images/logo/touch-icon144x144.png",
+ "name": "Skelbiu",
+ "triggers": [
+ "skelbiu"
+ ],
+ "regions": {
+ "default": "http://skelbiu.lt/skelbimai/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sketchappsources.com/images/favicon-16x16.png",
+ "name": "sketchappsources",
+ "triggers": [
+ "sktr"
+ ],
+ "regions": {
+ "default": "https://www.sketchappsources.com/search_{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://static.sketchfab.com/static/builds/web/dist/favicon-6c5d670c19e082c41e48b3e8619c41ed.png",
+ "name": "Sketchfab",
+ "triggers": [
+ "sketchfab"
+ ],
+ "regions": {
+ "default": "https://sketchfab.com/models?q={{{term}}}&sort_by=-likeCount"
+ }
+ },
+ {
+ "favicon": "https://www.sketchport.com/favicon.ico",
+ "name": "SketchPort",
+ "triggers": [
+ "sketchport"
+ ],
+ "regions": {
+ "default": "https://www.sketchport.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://3dwarehouse.sketchup.com/static/img/favicon.ico",
+ "name": "Sketchup 3D Warehouse",
+ "triggers": [
+ "3dware"
+ ],
+ "regions": {
+ "default": "https://3dwarehouse.sketchup.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.ewg.org/sites/all/themes/EWG/images/favicon-16x16.png",
+ "name": "Skin Deep Cosmetics Database",
+ "triggers": [
+ "skindeep"
+ ],
+ "regions": {
+ "default": "http://www.ewg.org/skindeep/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://skinflint.co.uk/favicon.ico",
+ "name": "Skinflint",
+ "triggers": [
+ "skinflint"
+ ],
+ "regions": {
+ "default": "https://skinflint.co.uk/?fs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.skipthedrive.com/wp-content/uploads/2015/02/favicon.ico",
+ "name": "SkipTheDrive",
+ "triggers": [
+ "skipthedrive"
+ ],
+ "regions": {
+ "default": "http://www.skipthedrive.com/jobs/?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.skroutz.gr/touch-icon-32x32.png",
+ "name": "skroutz",
+ "triggers": [
+ "skroutz"
+ ],
+ "regions": {
+ "default": "https://www.skroutz.gr/search?keyphrase={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.skydaz.com/favicon.ico",
+ "name": "Skydaz Minecraft Mods",
+ "triggers": [
+ "skydaz"
+ ],
+ "regions": {
+ "default": "http://www.skydaz.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://community.skype.com/favicon.ico",
+ "name": "Skype Community",
+ "triggers": [
+ "skypecommunity"
+ ],
+ "regions": {
+ "default": "http://community.skype.com/t5/forums/searchpage/tab/message?filter=labels%2Clocation&location=category%3AEnglish&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.nexusmods.com/contents/images/favicons/favicon_ReskinOrange/favicon.ico",
+ "name": "Skyrim NexusMods",
+ "triggers": [
+ "snm"
+ ],
+ "regions": {
+ "default": "https://skyrim.nexusmods.com/mods/searchresults/?quicksrc_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.skyrock.net/img/favicon_v5b.ico",
+ "name": "SkyRock",
+ "triggers": [
+ "skyrock"
+ ],
+ "regions": {
+ "default": "http://www.skyrock.com/search/people/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Skyscraperlife",
+ "triggers": [
+ "sslife"
+ ],
+ "regions": {
+ "default": "http://www.skyscraperlife.com/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.skysports.com/assets/favicon.ico",
+ "name": "Skysports",
+ "triggers": [
+ "sky"
+ ],
+ "regions": {
+ "default": "http://www.skysports.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://skyvector.com/favicon.ico",
+ "name": "SkyVector",
+ "triggers": [
+ "skyvector"
+ ],
+ "regions": {
+ "default": "https://skyvector.com/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slackbuilds.org/favicon.ico",
+ "name": "Slackbuilds",
+ "triggers": [
+ "slackbuild",
+ "slackbuilds",
+ "sbo"
+ ],
+ "regions": {
+ "default": "http://slackbuilds.org/result/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slackbuilds.org/favicon.ico",
+ "name": "SlackBuilds.org",
+ "triggers": [
+ "sbopkg"
+ ],
+ "regions": {
+ "default": "https://slackbuilds.org/result/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slackfind.net/favicon.ico",
+ "name": "Slackfind",
+ "triggers": [
+ "slackfind"
+ ],
+ "regions": {
+ "default": "http://slackfind.net/en/packages/search/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.slackware.com/lib/tpl/monobook-20140209-slackdocs/user/favicon.ico",
+ "name": "Slackware Documentation Project",
+ "triggers": [
+ "slackdoc"
+ ],
+ "regions": {
+ "default": "http://docs.slackware.com/start?do=search&id={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://packages.slackware.com/favicon.ico",
+ "name": "Slackware Package Browser",
+ "triggers": [
+ "slackpkg"
+ ],
+ "regions": {
+ "default": "http://packages.slackware.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d37b4ew8393wk3.cloudfront.net/images/interface/favicon.ico",
+ "name": "Slader",
+ "triggers": [
+ "slader"
+ ],
+ "regions": {
+ "default": "http://www.slader.com/search/?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.slang.gr/favicon2.ico",
+ "name": "SLANG.gr",
+ "triggers": [
+ "slanggr"
+ ],
+ "regions": {
+ "default": "http://www.slang.gr/lemmas?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.slant.co/images/favicon.png",
+ "name": "Slant.co",
+ "triggers": [
+ "slant"
+ ],
+ "regions": {
+ "default": "https://www.slant.co/topics/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.slant.co/images/favicon.png",
+ "name": "Slant.co",
+ "triggers": [
+ "sco"
+ ],
+ "regions": {
+ "default": "https://www.slant.co/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slashdot.org/favicon.ico",
+ "name": "Slashdot",
+ "triggers": [
+ "/.",
+ "slashdot",
+ "./"
+ ],
+ "regions": {
+ "default": "https://slashdot.org/index2.pl?fhfilter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.srad.jp/favicon.ico",
+ "name": "Slashdot Japan",
+ "triggers": [
+ "/.j"
+ ],
+ "regions": {
+ "default": "http://slashdot.jp/index2.pl?fhfilter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slate.com/favicon.ico",
+ "name": "Slate",
+ "triggers": [
+ "slate"
+ ],
+ "regions": {
+ "default": "http://www.slate.com/search.html#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.slate.fr/favicon.ico",
+ "name": "Slate.fr",
+ "triggers": [
+ "slatefr"
+ ],
+ "regions": {
+ "default": "https://www.slate.fr/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.slaw.ca/favicon.ico",
+ "name": "Slaw",
+ "triggers": [
+ "slaw"
+ ],
+ "regions": {
+ "default": "http://www.slaw.ca/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slice42.com/wp-content/uploads/2016/01/favicon.png",
+ "name": "Slice42",
+ "triggers": [
+ "s42"
+ ],
+ "regions": {
+ "default": "https://slice42.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slickdeals.net/favicon.ico",
+ "name": "SlickDeals",
+ "triggers": [
+ "sd"
+ ],
+ "regions": {
+ "default": "https://slickdeals.net/newsearch.php?q={{{term}}}&searcharea=deals&searchin=first"
+ }
+ },
+ {
+ "favicon": "https://slickdeals.net/favicon.ico",
+ "name": "SlickDeals",
+ "triggers": [
+ "slickdeals"
+ ],
+ "regions": {
+ "default": "https://slickdeals.net/sdsearch.php?forumchoice%5B%5D=9&search={{{term}}}&mode=forum&showposts=0&sdsearch_archive=0&firstpost=1"
+ }
+ },
+ {
+ "favicon": "http://www.slickguns.com/favicon.ico",
+ "name": "SlickGuns",
+ "triggers": [
+ "slickguns"
+ ],
+ "regions": {
+ "default": "http://www.slickguns.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slider.kz/favicon.ico",
+ "name": "SliderKZ",
+ "triggers": [
+ "sliderkz"
+ ],
+ "regions": {
+ "default": "http://slider.kz/?act=source1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://public.slidesharecdn.com/favicon.ico?d8e2a4ed15",
+ "name": "SlideShare",
+ "triggers": [
+ "slideshare"
+ ],
+ "regions": {
+ "default": "http://www.slideshare.net/search/slideshow?q={{{term}}}&submit=post&commit=Search"
+ }
+ },
+ {
+ "favicon": "http://forum.slitaz.org/favicon.ico",
+ "name": "SliTaz Forums",
+ "triggers": [
+ "slitazforums"
+ ],
+ "regions": {
+ "default": "http://forum.slitaz.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.slo-tech.com/favicon.ico",
+ "name": "Slo-Tech",
+ "triggers": [
+ "slotech"
+ ],
+ "regions": {
+ "default": "https://slo-tech.com/forum/isci/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sloganmaker.com/favicon.ico",
+ "name": "SloganMaker",
+ "triggers": [
+ "sloganmaker"
+ ],
+ "regions": {
+ "default": "http://www.sloganmaker.com/sloganmaker.php?user={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sloganmaker.com/favicon.ico",
+ "name": "Sloganmaker /hate",
+ "triggers": [
+ "hatesloganmaker"
+ ],
+ "regions": {
+ "default": "http://www.sloganmaker.com/hate/sloganmaker.php?user={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.slounik.org/favicon.ico",
+ "name": "slounik.org: беларускія слоўнікі і энцыкляпэдыі",
+ "triggers": [
+ "sbrm"
+ ],
+ "regions": {
+ "default": "http://www.slounik.org/search?dict=&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.fran.si/favicon.ico",
+ "name": "Slovarji Inštituta za slovenski jezik Frana Ramovša ZRC SAZU",
+ "triggers": [
+ "fran"
+ ],
+ "regions": {
+ "default": "http://www.fran.si/iskanje?View=2&Query= {{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://sl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Slovenian Wikipedia",
+ "triggers": [
+ "wsi"
+ ],
+ "regions": {
+ "default": "https://sl.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slovniky.korpus.sk/favicon.ico",
+ "name": "Slovenské slovníky",
+ "triggers": [
+ "skd",
+ "slovak",
+ "slovniky",
+ "korpus"
+ ],
+ "regions": {
+ "default": "http://slovniky.korpus.sk/?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slovnik.seznam.cz/img/favicon.ico",
+ "name": "slovnik.seznam.cz",
+ "triggers": [
+ "szns"
+ ],
+ "regions": {
+ "default": "http://slovnik.seznam.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://slovnik.seznam.cz/img/favicon.ico",
+ "name": "slovnik.seznam.cz němčina",
+ "triggers": [
+ "sznsde"
+ ],
+ "regions": {
+ "default": "http://slovnik.seznam.cz/de/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ssjc.ujc.cas.cz/favicon.ico",
+ "name": "Slovník spisovného jazyka českého",
+ "triggers": [
+ "ssjc"
+ ],
+ "regions": {
+ "default": "http://ssjc.ujc.cas.cz/search.php?heslo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://katalogbeta.slub-dresden.de/typo3conf/ext/slub_katalog_beta/Resources/Public/Images/favicon/favicon.ico",
+ "name": "SLUB Katalog",
+ "triggers": [
+ "slub"
+ ],
+ "regions": {
+ "default": "http://katalogbeta.slub-dresden.de/?tx_find_find[q][default]={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.slugfiction.com/img/favicon.ico",
+ "name": "SlugFiction",
+ "triggers": [
+ "slug"
+ ],
+ "regions": {
+ "default": "http://www.slugfiction.com/fr/recherche-stickers?orderby=position&search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://smartos.org/favicon.ico",
+ "name": "SmartOS Man Pages",
+ "triggers": [
+ "smartos"
+ ],
+ "regions": {
+ "default": "https://smartos.org/man/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://smartsearch.altervista.org/favicon.ico",
+ "name": "SmartSearch",
+ "triggers": [
+ "smartsearch"
+ ],
+ "regions": {
+ "default": "http://smartsearch.altervista.org/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.smarty.net/favicon.ico",
+ "name": "Smarty",
+ "triggers": [
+ "smarty"
+ ],
+ "regions": {
+ "default": "http://www.smarty.net/search?q={{{term}}}&show=manual-en&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.smashcustommusic.com/favicon.ico",
+ "name": "Smash Custom Music",
+ "triggers": [
+ "scm"
+ ],
+ "regions": {
+ "default": "http://www.smashcustommusic.com/index.php?song={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smashingmagazine.com/images/favicon/favicon.png",
+ "name": "Smashing Magazine",
+ "triggers": [
+ "smashingmagazine",
+ "sm"
+ ],
+ "regions": {
+ "default": "http://www.smashingmagazine.com/search-results/?q={{{term}}}&cx=partner-pub-6779860845561969%3A5884617103&cof=FORID%3A10&ie=UTF-8"
+ }
+ },
+ {
+ "favicon": "https://www.ssbwiki.com/favicon.ico",
+ "name": "SmashWiki",
+ "triggers": [
+ "ssb"
+ ],
+ "regions": {
+ "default": "https://www.ssbwiki.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.smashwords.com/static/img/favicon.ico",
+ "name": "Smashwords",
+ "triggers": [
+ "smashwords"
+ ],
+ "regions": {
+ "default": "https://www.smashwords.com/books/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://smile.amazon.com/favicon.ico",
+ "name": "Smile.amazon.com",
+ "triggers": [
+ "sma"
+ ],
+ "regions": {
+ "default": "https://smile.amazon.com/s/&field-keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://smite.esportspedia.com/wikis/smite/config/favicon.ico",
+ "name": "SMITE Esportspedia",
+ "triggers": [
+ "espsmite"
+ ],
+ "regions": {
+ "default": "http://smite.esportspedia.com/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/smite_gamepedia/6/64/Favicon.ico?version=6192e07d33aac98f34896064222e2816",
+ "name": "Smite Wiki",
+ "triggers": [
+ "smite"
+ ],
+ "regions": {
+ "default": "http://smite.gamepedia.com/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon",
+ "triggers": [
+ "smogonsm"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/dex/sm/pokemon/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon Dex Sun and Moon",
+ "triggers": [
+ "smgsm"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/dex/sm/pokemon/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon Pokemon",
+ "triggers": [
+ "smogonbw"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/dex/bw/pokemon/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon R_S",
+ "triggers": [
+ "smogrs"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/dex/rs/pokemon/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon University",
+ "triggers": [
+ "smog",
+ "smogon"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smogon.com/favicon.ico",
+ "name": "Smogon X/Y strategydex",
+ "triggers": [
+ "smogonxy"
+ ],
+ "regions": {
+ "default": "http://www.smogon.com/dex/xy/pokemon/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smosh.com/favicon.ico",
+ "name": "Smosh",
+ "triggers": [
+ "smosh"
+ ],
+ "regions": {
+ "default": "http://www.smosh.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smulweb.nl/favicon.ico",
+ "name": "Smulweb",
+ "triggers": [
+ "smulweb"
+ ],
+ "regions": {
+ "default": "http://www.smulweb.nl/recepten/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ohg-ka.de/cms/templates/allrounder-3/favicon.ico",
+ "name": "SMV des OHG in KA",
+ "triggers": [
+ "smv"
+ ],
+ "regions": {
+ "default": "http://www.ohg-ka.de/smv/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i3.sdlcdn.com/img/icons/finalFavicon.ico",
+ "name": "SnapDeal",
+ "triggers": [
+ "snd"
+ ],
+ "regions": {
+ "default": "http://www.snapdeal.com/search?noOfResults=20&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i3.sdlcdn.com/img/icons/finalFavicon.ico",
+ "name": "Snapdeal",
+ "triggers": [
+ "snapdeal"
+ ],
+ "regions": {
+ "default": "http://www.snapdeal.com/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.snappywords/favicon.ico",
+ "name": "Snappy Words",
+ "triggers": [
+ "snappy",
+ "snappywords"
+ ],
+ "regions": {
+ "default": "http://www.snappywords.com/?lookup={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://snappygoat.com/favicon.ico",
+ "name": "SnappyGoat",
+ "triggers": [
+ "snappygoat"
+ ],
+ "regions": {
+ "default": "https://snappygoat.com/s/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://snapshot.debian.org/static/favicon.ico",
+ "name": "snapshot.debian.org",
+ "triggers": [
+ "dsbin"
+ ],
+ "regions": {
+ "default": "http://snapshot.debian.org/binary/?bin={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://snapshot.debian.org/static/favicon.ico",
+ "name": "snapshot.debian.org",
+ "triggers": [
+ "dssrc"
+ ],
+ "regions": {
+ "default": "http://snapshot.debian.org/package/?src={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://snapshot.debian.org/static/favicon.ico",
+ "name": "snapshot.debian.org",
+ "triggers": [
+ "debsnap"
+ ],
+ "regions": {
+ "default": "http://snapshot.debian.org/binary/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://snapzu.com/favicon.ico",
+ "name": "Snapzu.com",
+ "triggers": [
+ "snap"
+ ],
+ "regions": {
+ "default": "http://snapzu.com/find/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.snogard.de/favicon.ico",
+ "name": "Snogard.de",
+ "triggers": [
+ "snogard"
+ ],
+ "regions": {
+ "default": "https://www.snogard.de/suche.html?suchwort={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us-east-1.tchyn.io/snopes-production/uploads/2018/06/16-SNO-001_Twitter_Profile_400x400_C.jpg?fit=192,192",
+ "name": "Snopes",
+ "triggers": [
+ "snopes",
+ "snp"
+ ],
+ "regions": {
+ "default": "https://www.snopes.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://files.snpedia.com/data/SNPedia_favicon_48x48_2011.png",
+ "name": "SNPedia",
+ "triggers": [
+ "snpedia"
+ ],
+ "regions": {
+ "default": "https://www.snpedia.com/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.snuson.com/favicon.ico",
+ "name": "SnusOn",
+ "triggers": [
+ "snuson"
+ ],
+ "regions": {
+ "default": "http://www.snuson.com/forum/shop/search/?q={{{term}}}&submit.x=0&submit.y=0"
+ }
+ },
+ {
+ "favicon": "http://sobored.org/favicon.ico",
+ "name": "So Bored",
+ "triggers": [
+ "bored"
+ ],
+ "regions": {
+ "default": "http://sobored.org/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://2rt9loawzcmbvlze40mhj9n0-wpengine.netdna-ssl.com/wp-content/themes/sobeys-com/images/favicon.ico",
+ "name": "Sobeys",
+ "triggers": [
+ "sobeys"
+ ],
+ "regions": {
+ "default": "http://www.sobeys.com/en/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://soblex.de/inc1/img/favicon.png",
+ "name": "soblex",
+ "triggers": [
+ "hsb"
+ ],
+ "regions": {
+ "default": "http://soblex.de/?p_w={{{term}}}&cmd=search_soblex"
+ }
+ },
+ {
+ "favicon": "//smimgs.com/images/assets/wikifavicon.ico",
+ "name": "Soccer Wiki",
+ "triggers": [
+ "soccerwiki"
+ ],
+ "regions": {
+ "default": "http://soccerwiki.com/wiki.php?action=search&q={{{term}}}&searchType=players"
+ }
+ },
+ {
+ "favicon": "http://int.soccerway.com/favicon.ico",
+ "name": "Soccerway",
+ "triggers": [
+ "soccerway"
+ ],
+ "regions": {
+ "default": "http://int.soccerway.com/search/?q={{{term}}}&module=all"
+ }
+ },
+ {
+ "favicon": "http://socialmention.com/favicon.ico",
+ "name": "Social Mention",
+ "triggers": [
+ "smention"
+ ],
+ "regions": {
+ "default": "http://socialmention.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://socialblade.com/favicon.ico",
+ "name": "Socialblade YouTube",
+ "triggers": [
+ "sbyt"
+ ],
+ "regions": {
+ "default": "https://socialblade.com/youtube/user/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.societe.com/favicon.ico",
+ "name": "societe.com",
+ "triggers": [
+ "societe"
+ ],
+ "regions": {
+ "default": "http://www.societe.com/cgi-bin/search?champs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://society6.com/favicon.ico",
+ "name": "Society6",
+ "triggers": [
+ "s6",
+ "s6all"
+ ],
+ "regions": {
+ "default": "http://society6.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.socksandmore.dk/media/favicon/default/favicon_1.ico",
+ "name": "Socks & More",
+ "triggers": [
+ "sockandmore"
+ ],
+ "regions": {
+ "default": "http://www.socksandmore.dk/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.socwall.com/images/favicon.ico",
+ "name": "Socwall - Social Wallpapering",
+ "triggers": [
+ "socwall"
+ ],
+ "regions": {
+ "default": "http://www.socwall.com/wallpapers/search:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sofifa.com/launcher-icon-4x.png",
+ "name": "SOFIFA",
+ "triggers": [
+ "sofifa"
+ ],
+ "regions": {
+ "default": "https://sofifa.com/players?keyword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://drugnom0x8w61.cloudfront.net/organic/main/images/favicon.png",
+ "name": "Soft32",
+ "triggers": [
+ "soft32"
+ ],
+ "regions": {
+ "default": "http://www.soft32.com/search/?k={{{term}}}&submit="
+ }
+ },
+ {
+ "favicon": "https://soft98.ir/favicon.ico",
+ "name": "Soft98",
+ "triggers": [
+ "s98"
+ ],
+ "regions": {
+ "default": "http://soft98.ir/?story={{{term}}}&do=search&subaction=search"
+ }
+ },
+ {
+ "favicon": "https://cdnssl.softpedia.com/_img/favicon.ico",
+ "name": "Softpedia",
+ "triggers": [
+ "softpedia"
+ ],
+ "regions": {
+ "default": "http://www.softpedia.com/dyn-search.php?search_term={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://software.opensuse.org/favicon.ico",
+ "name": "Software OpenSuse",
+ "triggers": [
+ "sos"
+ ],
+ "regions": {
+ "default": "https://software.opensuse.org/search?q={{{term}}}&search_devel=false&search_unsupported=false"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/softwarerecs/img/favicon.ico?v=a2eaa7300fd1",
+ "name": "Software Recommendations",
+ "triggers": [
+ "srec"
+ ],
+ "regions": {
+ "default": "http://softwarerecs.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sofurry.com/favicon.ico",
+ "name": "SoFurry",
+ "triggers": [
+ "sofurry"
+ ],
+ "regions": {
+ "default": "https://www.sofurry.com/browse/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sokr.ru/favicon.ico",
+ "name": "Sokr.ru - словарь сокращений",
+ "triggers": [
+ "sokr"
+ ],
+ "regions": {
+ "default": "http://sokr.ru/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "SolarMovie",
+ "triggers": [
+ "solarm"
+ ],
+ "regions": {
+ "default": "http://www.solarmovie.is/movie/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.soldanything.com/css/images/favicon.ico",
+ "name": "Soldanything",
+ "triggers": [
+ "Soldanything"
+ ],
+ "regions": {
+ "default": "https://www.soldanything.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://solidaris.be/SiteCollectionImages/favicon.ico",
+ "name": "Solidaris",
+ "triggers": [
+ "solidaris"
+ ],
+ "regions": {
+ "default": "http://solidaris.be/MonsWP/Pages/recherche.aspx?k={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://solo.bodleian.ox.ac.uk/favicon.ico",
+ "name": "SOLO",
+ "triggers": [
+ "solo"
+ ],
+ "regions": {
+ "default": "http://solo.bodleian.ox.ac.uk/primo_library/libweb/action/search.do?dscnt=0&scp.scps=scope%3A%28NET%29%2Cscope%3A%28OX%29&frbg=&tab=local&dstmp=1361298726419&srt=rank&vl%28225595489UI1%29=all_items&ct=search&mode=Basic&dum=true&tb=t&indx=1&vl%281UIStartWith0%29=contains&vl%28freeText0%29={{{term}}}&fn=search&vl%28169119528UI0%29=any&vid=OXVU1"
+ }
+ },
+ {
+ "favicon": "http://solo.bodleian.ox.ac.uk/favicon.ico",
+ "name": "SOLO journals",
+ "triggers": [
+ "soloj"
+ ],
+ "regions": {
+ "default": "http://solo.bodleian.ox.ac.uk/primo_library/libweb/action/search.do?mode=Basic&vid=OXVU1&vl%28freeText0%29={{{term}}}&fn=search&tab=remote&"
+ }
+ },
+ {
+ "favicon": "http://www.solomid.net/favicon.ico",
+ "name": "Solomid",
+ "triggers": [
+ "solomid"
+ ],
+ "regions": {
+ "default": "http://www.solomid.net/searchresults.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.someecards.com/favicons/favicon-128.png",
+ "name": "someecards",
+ "triggers": [
+ "some"
+ ],
+ "regions": {
+ "default": "http://www.someecards.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://sompedia.com/favicon.ico",
+ "name": "Sompedia",
+ "triggers": [
+ "Sompedia"
+ ],
+ "regions": {
+ "default": "http://sompedia.com/musica/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sonofmarketing.it/wp-content/themes/Som/images/favicon.gif",
+ "name": "Son of Marketing",
+ "triggers": [
+ "sonofmarketing"
+ ],
+ "regions": {
+ "default": "http://www.sonofmarketing.it/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://son2teuf.org/favicon.ico",
+ "name": "Son2Teuf",
+ "triggers": [
+ "son2teuf"
+ ],
+ "regions": {
+ "default": "http://son2teuf.org/search/category_sort/Page-1?searchphrase=any&searchword={{{term}}}&view=search"
+ }
+ },
+ {
+ "favicon": "https://www.songlyrics.com/favicon.ico",
+ "name": "SONG LYRICS",
+ "triggers": [
+ "slyrics"
+ ],
+ "regions": {
+ "default": "https://www.songlyrics.com/index.php?section=search&searchW={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.songfacts.com/favicons/favicon.ico?v=bOvjvXqg8K",
+ "name": "Songfacts",
+ "triggers": [
+ "songfacts"
+ ],
+ "regions": {
+ "default": "http://www.songfacts.com/search-song-1.php?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//assets.sk-static.com/images/favicon.ico",
+ "name": "SongKick",
+ "triggers": [
+ "songkick",
+ "sk"
+ ],
+ "regions": {
+ "default": "https://www.songkick.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.songmeanings.net/favicon.ico",
+ "name": "Songmeaning",
+ "triggers": [
+ "songmeaning"
+ ],
+ "regions": {
+ "default": "http://www.songmeanings.net/query/?q={{{term}}}&type=artists&page=1&start=0&mm=1&pp=20&b=Go"
+ }
+ },
+ {
+ "favicon": "http://songmeanings.com/favicon.ico",
+ "name": "SongMeanings",
+ "triggers": [
+ "sms",
+ "songmeanings",
+ "smn"
+ ],
+ "regions": {
+ "default": "http://songmeanings.com/query/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.songsterr.com/favicon.ico",
+ "name": "Songsterr",
+ "triggers": [
+ "stabs",
+ "songsterr"
+ ],
+ "regions": {
+ "default": "https://www.songsterr.com/a/wa/search?pattern={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.songtexte.com/img/icon-large.ico",
+ "name": "Songtexte.com",
+ "triggers": [
+ "songtext"
+ ],
+ "regions": {
+ "default": "http://www.songtexte.com/search?q={{{term}}}&c=all"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/sonic/images/6/64/Favicon.ico/revision/latest?cb=20170912151808",
+ "name": "Sonic News Network",
+ "triggers": [
+ "snn"
+ ],
+ "regions": {
+ "default": "http://sonic.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://info.sonicretro.org/favicon.ico",
+ "name": "Sonic Retro / Sega Retro",
+ "triggers": [
+ "sonicretro"
+ ],
+ "regions": {
+ "default": "http://info.sonicretro.org/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.sonnentor.com/favicon.ico",
+ "name": "Sonnentor",
+ "triggers": [
+ "sonnentor"
+ ],
+ "regions": {
+ "default": "https://www.sonnentor.com/de-at/find?q={{{term}}}&c=Alle"
+ }
+ },
+ {
+ "favicon": "https://store.sonyentertainmentnetwork.com/img/favicons/favicon-797c65013063519546525db9296a4cf3.png",
+ "name": "Sony Entertainment Network",
+ "triggers": [
+ "sen"
+ ],
+ "regions": {
+ "default": "https://store.sonyentertainmentnetwork.com/#!/en-us/search/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://soov-ee.postimees.ee/templates/soov/assets/ico/32x32.png",
+ "name": "Soov",
+ "triggers": [
+ "soov"
+ ],
+ "regions": {
+ "default": "http://soov-ee.postimees.ee/keyword-{{{term}}}/listings.html"
+ }
+ },
+ {
+ "favicon": "http://www.soso.com/soso/images/favicon_new.ico",
+ "name": "Soso",
+ "triggers": [
+ "soso"
+ ],
+ "regions": {
+ "default": "http://www.soso.com/q?pid=s.idx&w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.ecs.soton.ac.uk/favicon.ico",
+ "name": "Soton Electronics and Computer Science",
+ "triggers": [
+ "ecs"
+ ],
+ "regions": {
+ "default": "https://secure.ecs.soton.ac.uk/kb/search/?q={{{term}}}&s=1"
+ }
+ },
+ {
+ "favicon": "https://www.sogou.com/images/logo/new/favicon.ico?v=4",
+ "name": "sougou",
+ "triggers": [
+ "sougou"
+ ],
+ "regions": {
+ "default": "https://www.sogou.com/web?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.soul-flower.com/favicon.ico",
+ "name": "Soul Flower",
+ "triggers": [
+ "soulflower"
+ ],
+ "regions": {
+ "default": "http://www.soul-flower.com/mm5/merchant.mvc?Screen=search&onlyone=1&sort=id.desc&x=0&y=0&Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://soundeffectssearch.com/wp-content/uploads/2016/10/cropped-SES-192x192.jpg",
+ "name": "Sound Effects Search",
+ "triggers": [
+ "sfxsearch"
+ ],
+ "regions": {
+ "default": "http://soundeffectssearch.com/find-a-sound-library/?library={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://a-v2.sndcdn.com/assets/images/sc-icons/favicon-2cadd14b.ico",
+ "name": "SoundCloud",
+ "triggers": [
+ "sc",
+ "soundcloud",
+ "scloud",
+ "sndcld"
+ ],
+ "regions": {
+ "default": "https://soundcloud.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.soundonsound.com/sites/default/files/favicon_0.ico",
+ "name": "soundonsound.com",
+ "triggers": [
+ "soundonsound"
+ ],
+ "regions": {
+ "default": "https://www.soundonsound.com/search/all/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.soundsnap.com/misc/favicon.ico",
+ "name": "Soundsnap",
+ "triggers": [
+ "ssnap"
+ ],
+ "regions": {
+ "default": "http://www.soundsnap.com/search/audio/{{{term}}}/score"
+ }
+ },
+ {
+ "favicon": "http://www.soundtrackinfo.com/favicon.ico",
+ "name": "Soundtrack info project",
+ "triggers": [
+ "soundtrackinfo"
+ ],
+ "regions": {
+ "default": "http://www.soundtrackinfo.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.soundy.top/assets/icons/favicon-16x16.png",
+ "name": "Soundy",
+ "triggers": [
+ "soundy"
+ ],
+ "regions": {
+ "default": "https://www.soundy.top/sounds?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cf1.s3.souqcdn.com/static/ltr/en/images/souq-new.ico",
+ "name": "Souq",
+ "triggers": [
+ "souq"
+ ],
+ "regions": {
+ "default": "http://souq.com/ae-en/{{{term}}}/s"
+ }
+ },
+ {
+ "favicon": "//a.fsdn.com/con/img/sandiego/svg/originals/sf-icon-orange-no_sf.svg",
+ "name": "SourceForge",
+ "triggers": [
+ "srcforge"
+ ],
+ "regions": {
+ "default": "https://sourceforge.net/directory/os:windows/freshness:recently-updated/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//a.fsdn.com/con/img/sandiego/svg/originals/sf-icon-orange-no_sf.svg",
+ "name": "SourceForge",
+ "triggers": [
+ "sourceforge"
+ ],
+ "regions": {
+ "default": "https://sourceforge.net/directory/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nabber.org/favicon.ico",
+ "name": "SourceForge MetaLink",
+ "triggers": [
+ "sfmeta"
+ ],
+ "regions": {
+ "default": "http://www.nabber.org/projects/metalink/sf/?file={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://about.sourcegraph.com/favicon.png",
+ "name": "Sourcegraph",
+ "triggers": [
+ "sg"
+ ],
+ "regions": {
+ "default": "https://sourcegraph.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sourcewatch.org/resources/assets/favicon.ico",
+ "name": "SourceWatch",
+ "triggers": [
+ "sourcewatch"
+ ],
+ "regions": {
+ "default": "http://www.sourcewatch.org/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://www.sous-titres.eu/favicon.png",
+ "name": "Sous-titres.eu",
+ "triggers": [
+ "steu"
+ ],
+ "regions": {
+ "default": "http://www.sous-titres.eu/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sous-titres.eu/favicon.png",
+ "name": "Soustitres.eu",
+ "triggers": [
+ "sstitres",
+ "stfr"
+ ],
+ "regions": {
+ "default": "https://www.sous-titres.eu/search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.southparkstudios.com/favicon.ico",
+ "name": "South Park Studios",
+ "triggers": [
+ "southpark"
+ ],
+ "regions": {
+ "default": "http://www.southparkstudios.com/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.selu.edu/_resources/themes/common_images/selu_icon.ico",
+ "name": "Southeastern Louisiana University",
+ "triggers": [
+ "selu"
+ ],
+ "regions": {
+ "default": "http://search.selu.edu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/soyluna/images/6/64/Favicon.ico/revision/latest?cb=20161018022627",
+ "name": "Soy Luna Wiki",
+ "triggers": [
+ "soyluna"
+ ],
+ "regions": {
+ "default": "http://soyluna.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "//soylentnews.org/favicon-soylentnews-16x16.png",
+ "name": "SoylentNews",
+ "triggers": [
+ "sn"
+ ],
+ "regions": {
+ "default": "https://soylentnews.org/search.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://spacedock.info/static/57x57.ico?v=5",
+ "name": "SpaceDock",
+ "triggers": [
+ "spacedock"
+ ],
+ "regions": {
+ "default": "http://spacedock.info/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//n1.freetls.fastly.net/img/common/apple-touch-icons/apple-touch-icon.png",
+ "name": "SpanishDict",
+ "triggers": [
+ "spanishd",
+ "sdict"
+ ],
+ "regions": {
+ "default": "http://www.spanishdict.com/translate/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//n1.freetls.fastly.net/img/common/apple-touch-icons/apple-touch-icon.png",
+ "name": "SpanishDict",
+ "triggers": [
+ "spanish",
+ "spanishdict"
+ ],
+ "regions": {
+ "default": "https://www.spanishdict.com/translate/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//n1.freetls.fastly.net/img/common/apple-touch-icons/apple-touch-icon.png",
+ "name": "SpanishDict - Conjugate",
+ "triggers": [
+ "conjes",
+ "sconj"
+ ],
+ "regions": {
+ "default": "http://www.spanishdict.com/conjugate/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sparkfun.com/favicon.ico",
+ "name": "SparkFun",
+ "triggers": [
+ "sparkfun"
+ ],
+ "regions": {
+ "default": "https://www.sparkfun.com/search/results?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sparkfun.com/favicon.ico",
+ "name": "Sparkfun Electronics",
+ "triggers": [
+ "sfe"
+ ],
+ "regions": {
+ "default": "https://www.sparkfun.com/search/results?term={{{term}}}&what=products"
+ }
+ },
+ {
+ "favicon": "http://img.sparknotes.com/images/new_global/new_favicon.ico",
+ "name": "SparkNotes",
+ "triggers": [
+ "sparknotes"
+ ],
+ "regions": {
+ "default": "http://www.sparknotes.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://spatialreference.org/favicon.ico",
+ "name": "Spatial Reference",
+ "triggers": [
+ "epsg"
+ ],
+ "regions": {
+ "default": "http://spatialreference.org/ref/?search=epsg:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.speakinglatino.com/wp-content/uploads/2016/08/cropped-New-Speaking-Latino-Bubble-White-192x192.png",
+ "name": "Speaking Latino",
+ "triggers": [
+ "sslang",
+ "spanslang",
+ "argot"
+ ],
+ "regions": {
+ "default": "http://www.speakinglatino.com/?s={{{term}}}&advanced=0&search_type=&posts_country=&posts_category=&words_country=&words_category=&words_letter=CHOOSE+A+STARTING+LETTER&all_country=&all_letter=CHOOSE+A+STARTING+LETTER"
+ }
+ },
+ {
+ "favicon": "http://speed.cd/favicon.ico",
+ "name": "Speed.cd",
+ "triggers": [
+ "speed"
+ ],
+ "regions": {
+ "default": "http://speed.cd/browse.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://packages.speedeedelivery.com/favicon.ico",
+ "name": "SpeeDee Delivery",
+ "triggers": [
+ "spd"
+ ],
+ "regions": {
+ "default": "http://packages.speedeedelivery.com/packageDetail.php?barcode={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.speedguide.net/favicon.ico",
+ "name": "Speedguide.net Port Lookup",
+ "triggers": [
+ "ports"
+ ],
+ "regions": {
+ "default": "http://www.speedguide.net/port.php?port={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://speedrun.com/themes/Default/1st.png",
+ "name": "Speedrun.com",
+ "triggers": [
+ "speedrun"
+ ],
+ "regions": {
+ "default": "https://speedrun.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.speedsolving.com/forum/favicon.ico",
+ "name": "SpeedSolving Forum",
+ "triggers": [
+ "speedsolving"
+ ],
+ "regions": {
+ "default": "https://www.speedsolving.com/forum/searchresults.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.speedsolving.com/wiki/favicon.ico",
+ "name": "Speedsolving wiki",
+ "triggers": [
+ "speedsolvingwiki"
+ ],
+ "regions": {
+ "default": "https://www.speedsolving.com/wiki/index.php?title=Special%3ASearch&search={{{term}}} &go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.speedsolving.com/wiki/favicon.ico",
+ "name": "Speedsolving.com Wiki",
+ "triggers": [
+ "sswiki"
+ ],
+ "regions": {
+ "default": "https://www.speedsolving.com/wiki/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://spele.nl/images/favicon.ico",
+ "name": "spele.nl",
+ "triggers": [
+ "spele"
+ ],
+ "regions": {
+ "default": "http://spele.nl/zoeken/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static-speurders.nl/static/favicon.ico?v=2900164099",
+ "name": "Speurders",
+ "triggers": [
+ "speur"
+ ],
+ "regions": {
+ "default": "http://www.speurders.nl/overzicht/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spezify.com/favicon.ico",
+ "name": "Spezify",
+ "triggers": [
+ "spezify"
+ ],
+ "regions": {
+ "default": "http://www.spezify.com/#/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/sphereon.com/wp-content/uploads/2016/11/cropped-favicon-sphereon-2.png?fit=192,192&ssl=1",
+ "name": "Sphereon",
+ "triggers": [
+ "sphereon"
+ ],
+ "regions": {
+ "default": "https://sphereon.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.spi0n.com/wp-content/themes/spi0n/images/favicons/favicon-16x16.png",
+ "name": "Spi0n",
+ "triggers": [
+ "spion"
+ ],
+ "regions": {
+ "default": "http://www.spi0n.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://community.spiceworks.com/favicon.ico",
+ "name": "Spiceworks Community",
+ "triggers": [
+ "spice"
+ ],
+ "regions": {
+ "default": "https://community.spiceworks.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spiegel.de/favicon.ico",
+ "name": "Spiegel Online",
+ "triggers": [
+ "spon"
+ ],
+ "regions": {
+ "default": "http://www.spiegel.de/suche/index.html?suchbegriff={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spieletipps.de/favicon.ico",
+ "name": "Spieletipss",
+ "triggers": [
+ "spieletipps"
+ ],
+ "regions": {
+ "default": "http://www.spieletipps.de/suche/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.spigotmc.org/favicon.ico",
+ "name": "SpigotMC",
+ "triggers": [
+ "spigot"
+ ],
+ "regions": {
+ "default": "https://www.spigotmc.org/search/14203285/?q={{{term}}}&o=relevance"
+ }
+ },
+ {
+ "favicon": "https://www.spigotmc.org/favicon.ico",
+ "name": "SpigotMC",
+ "triggers": [
+ "spigotmc"
+ ],
+ "regions": {
+ "default": "https://www.spigotmc.org/search/14487199/?q={{{term}}}&o=relevance"
+ }
+ },
+ {
+ "favicon": "https://www.spin.de/favicon.ico",
+ "name": "Spin.de",
+ "triggers": [
+ "spin"
+ ],
+ "regions": {
+ "default": "https://www.spin.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spinoza.it/favicon.ico",
+ "name": "Spinoza",
+ "triggers": [
+ "spinoza"
+ ],
+ "regions": {
+ "default": "http://www.spinoza.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s3.amazonaws.com/s3.spinrilla.com/assets/favicon.ico",
+ "name": "Spinrilla",
+ "triggers": [
+ "spinrilla"
+ ],
+ "regions": {
+ "default": "https://spinrilla.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.spirit-of-metal.com/mes%20images/spirit-of-metal.png",
+ "name": "Spirit of Metal",
+ "triggers": [
+ "som"
+ ],
+ "regions": {
+ "default": "http://www.spirit-of-metal.com/find.php?nom={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.splunk.com/content/dam/splunk2/images/icons/favicons/favicon.ico",
+ "name": "Splunk",
+ "triggers": [
+ "splunk"
+ ],
+ "regions": {
+ "default": "http://www.splunk.com/search/docs?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.apps.splunk.com/static/favicon.ico",
+ "name": "Splunkbase",
+ "triggers": [
+ "splunkbase"
+ ],
+ "regions": {
+ "default": "https://apps.splunk.com/apps/#/search/{{{term}}}/page/1"
+ }
+ },
+ {
+ "favicon": "http://spokensanskrit.org/images/sams.png",
+ "name": "Spoken Sanskrit Dictionary",
+ "triggers": [
+ "sanskrit"
+ ],
+ "regions": {
+ "default": "http://spokensanskrit.de/index.php?tinput={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/spongebob/images/6/64/Favicon.ico/revision/latest?cb=20140618205810",
+ "name": "SpongeBob SquarePants Wiki",
+ "triggers": [
+ "sbwiki"
+ ],
+ "regions": {
+ "default": "http://spongebob.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/spongebob/images/6/64/Favicon.ico/revision/latest?cb=20140618205810",
+ "name": "SpongeBob Wikia",
+ "triggers": [
+ "spongebob"
+ ],
+ "regions": {
+ "default": "http://spongebob.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.sbmania.net/favicon.ico",
+ "name": "SpongeBuddy Mania",
+ "triggers": [
+ "sbmania"
+ ],
+ "regions": {
+ "default": "http://www.sbmania.net/advsearch.php?l=80&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sporcle.com/favicon.ico",
+ "name": "Sporcle",
+ "triggers": [
+ "sporcle"
+ ],
+ "regions": {
+ "default": "http://www.sporcle.com/games/tags/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sport1.de/favicon.ico",
+ "name": "Sport1",
+ "triggers": [
+ "sport1"
+ ],
+ "regions": {
+ "default": "http://www.sport1.de/suche#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sportkopf24.de/tpl/favicon_0.ico",
+ "name": "sportkopf24",
+ "triggers": [
+ "sk24"
+ ],
+ "regions": {
+ "default": "https://www.sportkopf24.de/?ActionCall=WebActionArticleSearch&Params%5BSearchParam%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://open.scdn.co/static/images/favicon.png%20",
+ "name": "Spotify",
+ "triggers": [
+ "spt"
+ ],
+ "regions": {
+ "default": "https://play.spotify.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://open.scdn.co/static/images/favicon.png%20",
+ "name": "Spotify",
+ "triggers": [
+ "spotifysearch"
+ ],
+ "regions": {
+ "default": "https://open.spotify.com/search/results/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://open.scdn.co/static/images/favicon.png%20",
+ "name": "Spotify",
+ "triggers": [
+ "spotify"
+ ],
+ "regions": {
+ "default": "https://play.spotify.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://spottedbybarbie.com/favicon.ico",
+ "name": "SpottedbyBarbie",
+ "triggers": [
+ "spottedbybarbie"
+ ],
+ "regions": {
+ "default": "http://spottedbybarbie.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://spreadshirt.com/favicon.ico",
+ "name": "Spreadshirt",
+ "triggers": [
+ "spreadshirt"
+ ],
+ "regions": {
+ "default": "https://spreadshirt.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://link.springer.com/static/201802052054-47/sites/link/images/favicon-32x32.png",
+ "name": "Springer Link",
+ "triggers": [
+ "springer",
+ "slink",
+ "springerlink"
+ ],
+ "regions": {
+ "default": "https://link.springer.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ebr.springsource.com/img/favicon-ca31b78daf0dd9a106bbf3c6d87d4ec7.png",
+ "name": "SpringSource Enterprise Bundle Repository",
+ "triggers": [
+ "ebr"
+ ],
+ "regions": {
+ "default": "http://ebr.springsource.com/repository/app/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sprunge.us/favicon.ico",
+ "name": "Sprunge",
+ "triggers": [
+ "spruge"
+ ],
+ "regions": {
+ "default": "http://sprunge.us/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spud.ca/pictures/SPUD-favicon.ico",
+ "name": "SPUD.ca",
+ "triggers": [
+ "spud"
+ ],
+ "regions": {
+ "default": "http://www.spud.ca/catalogue/catalogue.cfm?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.sputnik.ru/2.2.64.3/core-htdocs/web-1.0/img/favicon/favicon.ico",
+ "name": "Sputnik",
+ "triggers": [
+ "sputnik"
+ ],
+ "regions": {
+ "default": "http://www.sputnik.ru/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sputnikmusic.com/favicon.gif",
+ "name": "Sputnik Music",
+ "triggers": [
+ "sputnikmusic"
+ ],
+ "regions": {
+ "default": "https://www.sputnikmusic.com/search_results.php?search_in=Bands&search_text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sqlalchemy.org/favicon.ico",
+ "name": "SQL Alchemy Docs",
+ "triggers": [
+ "sqlalchemy"
+ ],
+ "regions": {
+ "default": "http://www.sqlalchemy.org/docs/search.html?q={{{term}}}&check_keywords=yes&area=default"
+ }
+ },
+ {
+ "favicon": "http://sql.sh/favicon.ico",
+ "name": "SQL.sh",
+ "triggers": [
+ "sqlsh"
+ ],
+ "regions": {
+ "default": "http://sql.sh/?s={{{term}}}&submit=Rechercher"
+ }
+ },
+ {
+ "favicon": "https://www.sqlite.org/favicon.ico",
+ "name": "SQLite",
+ "triggers": [
+ "sqlite"
+ ],
+ "regions": {
+ "default": "https://www.sqlite.org/search?s=d&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.squidoo.com/favicon.ico",
+ "name": "Squidoo",
+ "triggers": [
+ "squidoo"
+ ],
+ "regions": {
+ "default": "http://www.squidoo.com/search/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ncbi.nlm.nih.gov/favicon.ico",
+ "name": "SRA",
+ "triggers": [
+ "sra"
+ ],
+ "regions": {
+ "default": "https://www.ncbi.nlm.nih.gov/sra/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.srrdb.com/favicon.ico",
+ "name": "srrDB",
+ "triggers": [
+ "srrdb"
+ ],
+ "regions": {
+ "default": "https://www.srrdb.com/browse?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ssllabs.com/favicon.ico",
+ "name": "SSL Checker",
+ "triggers": [
+ "ssl"
+ ],
+ "regions": {
+ "default": "https://www.ssllabs.com/ssltest/analyze.html?d={{{term}}}&latest=true"
+ }
+ },
+ {
+ "favicon": "https://www.ssllabs.com/favicon.ico",
+ "name": "ssllabs",
+ "triggers": [
+ "ssllabs"
+ ],
+ "regions": {
+ "default": "https://www.ssllabs.com/ssltest/analyze.html?d={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ssoar.info/favicon.ico",
+ "name": "SSOAR",
+ "triggers": [
+ "ssoar"
+ ],
+ "regions": {
+ "default": "http://www.ssoar.info/ssoar/discover?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ssptv.com/wp-content/uploads/2017/05/cropped-app_icon-01-200x200.png",
+ "name": "SSPTV",
+ "triggers": [
+ "ssptv"
+ ],
+ "regions": {
+ "default": "http://www.ssptv.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://st-takla.org/favicon.ico",
+ "name": "st-takla.org",
+ "triggers": [
+ "st-takla",
+ "sts",
+ "takla",
+ "st-takla.org"
+ ],
+ "regions": {
+ "default": "http://st-takla.org/Coptic-Search-St-Takla.org/site_search.php?q={{{term}}}&op=and"
+ }
+ },
+ {
+ "favicon": "http://stjos.sjcpl.lib.in.us/favicon.ico",
+ "name": "St. Joeseph Co. Public Library",
+ "triggers": [
+ "sjcpl"
+ ],
+ "regions": {
+ "default": "http://stjos.sjcpl.lib.in.us/search/?searchtype=X&SORT=D&searcharg={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://suche.suub.uni-bremen.de/favicon.ico",
+ "name": "Staats- und Universitätsbibliothek Bremen",
+ "triggers": [
+ "suub"
+ ],
+ "regions": {
+ "default": "https://suche.suub.uni-bremen.de/cgi-bin/CiXbase/brewis/CiXbase_search?act=search&INDEXINFO=awCN&LAN=DE&ORDER=&IHITS=15&FHITS=15&PRECISION=220&RELEVANCE=40&NO_RBITS=&n_dtyp=1LZ&n_rtyp=ceEdX&index=L&XML_STYLE=%2Fstyles%2Fcns-DE.xml%3F20130610&dtyp=&mtyp=&section=&term={{{term}}}&CID=&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackexchange/img/favicon.ico",
+ "name": "Stack Exchange",
+ "triggers": [
+ "se",
+ "stex",
+ "sx",
+ "stackexchange"
+ ],
+ "regions": {
+ "default": "https://stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow",
+ "triggers": [
+ "soscrapy"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q={{{term}}}[scrapy]"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow",
+ "triggers": [
+ "stack",
+ "so",
+ "ov",
+ "sof",
+ "stackoverflow"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow Bash Search",
+ "triggers": [
+ "sobash"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q=[bash]+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow Careers",
+ "triggers": [
+ "soc"
+ ],
+ "regions": {
+ "default": "https://careers.stackoverflow.com/jobs?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow Careers (Company Pages)",
+ "triggers": [
+ "socp"
+ ],
+ "regions": {
+ "default": "https://careers.stackoverflow.com/companies?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow MS Excel Search",
+ "triggers": [
+ "soxl"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q=[excel]+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d",
+ "name": "Stack Overflow Python",
+ "triggers": [
+ "sopy"
+ ],
+ "regions": {
+ "default": "https://stackoverflow.com/search?q=[python]+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/dsp/img/favicon.ico?v=c671ebf56db6",
+ "name": "StackExchange Signal Processing",
+ "triggers": [
+ "dspse"
+ ],
+ "regions": {
+ "default": "http://dsp.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stackshare.io/favicon.ico",
+ "name": "StackShare",
+ "triggers": [
+ "stackshare"
+ ],
+ "regions": {
+ "default": "http://stackshare.io/search/q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stacksmash.kontek.net/favicon.ico",
+ "name": "StackSmash",
+ "triggers": [
+ "stacksmash"
+ ],
+ "regions": {
+ "default": "http://stacksmash.kontek.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.stadium.se/INTERSHOP/static/WFS/Stadium-SwedenB2C-Site/-/-/sv_SE/img/favicon/favicon-96x96.png",
+ "name": "Stadium",
+ "triggers": [
+ "stadium"
+ ],
+ "regions": {
+ "default": "https://www.stadium.se/search?SearchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bibliothek.hannover-stadt.de/favicon.ico",
+ "name": "Stadtbibliothek Hannover OPAC",
+ "triggers": [
+ "stabihannover"
+ ],
+ "regions": {
+ "default": "https://bibliothek.hannover-stadt.de/alswww3.dll/APS_ZONES?fn=SEARCH?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stadtplan-ilmenau.de/favicon.ico",
+ "name": "Stadtplan Ilmenau",
+ "triggers": [
+ "stdtplnlmn"
+ ],
+ "regions": {
+ "default": "http://stadtplan-ilmenau.de/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stagevu.com/wp-content/themes/custom-stagevu/images/favicon.ico",
+ "name": "StageVu",
+ "triggers": [
+ "stagevu"
+ ],
+ "regions": {
+ "default": "http://stagevu.com/search?x=0&y=0&for={{{term}}}&in=Videos"
+ }
+ },
+ {
+ "favicon": "http://plato.stanford.edu/favicon.ico",
+ "name": "Stanford Encyclopedia of Philosophy",
+ "triggers": [
+ "plato",
+ "sep"
+ ],
+ "regions": {
+ "default": "http://plato.stanford.edu/search/searcher.py?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stanfordwho.stanford.edu/favicon.ico",
+ "name": "Stanford People Search (StanfordWho)",
+ "triggers": [
+ "suwho"
+ ],
+ "regions": {
+ "default": "https://stanfordwho.stanford.edu/SWApp/lookup?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://searchworks.stanford.edu/assets/favicon-8a4c41227945e5f20503f62517defcfb2ef88f578e222838318c704472d483b0.ico",
+ "name": "Stanford SearchWorks",
+ "triggers": [
+ "sworks"
+ ],
+ "regions": {
+ "default": "https://searchworks.stanford.edu/?utf8=✓&search_field=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.staples.com/sbdpas/img/ico/favicon.ico",
+ "name": "Staples.com",
+ "triggers": [
+ "staples"
+ ],
+ "regions": {
+ "default": "https://www.staples.com/office/supplies/StaplesSearch?searchkey={{{term}}}&storeId=10001&catalogId=10051&langId=-1&fromUrl=home"
+ }
+ },
+ {
+ "favicon": "https://www.startribune.com/favicon.ico",
+ "name": "Star Tribune",
+ "triggers": [
+ "strib"
+ ],
+ "regions": {
+ "default": "http://www.startribune.com/search/?stq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/starwars/images/6/64/Favicon.ico/revision/latest?cb=20150514050108",
+ "name": "Star Wars Wiki",
+ "triggers": [
+ "wookieepedia"
+ ],
+ "regions": {
+ "default": "http://starwars.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://media-mercury.cursecdn.com/avatars/0/676/635077524106421849.png",
+ "name": "Starbound Wiki",
+ "triggers": [
+ "starbound"
+ ],
+ "regions": {
+ "default": "http://starbound.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://starbounder.org/mediawiki/favicon.ico",
+ "name": "Starbound Wiki",
+ "triggers": [
+ "starbounder"
+ ],
+ "regions": {
+ "default": "http://starbounder.org/mediawiki/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sales.starcitygames.com/favicon.ico",
+ "name": "StarCityGames",
+ "triggers": [
+ "scg"
+ ],
+ "regions": {
+ "default": "http://sales.starcitygames.com/search.php?substring={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://starmadedock.net/favicon.ico",
+ "name": "StarMade Dock",
+ "triggers": [
+ "starmadedock"
+ ],
+ "regions": {
+ "default": "https://starmadedock.net/search/1/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.starticket.ch/img/favicon/favicon-16x16.png",
+ "name": "Starticket",
+ "triggers": [
+ "starticket"
+ ],
+ "regions": {
+ "default": "https://www.starticket.ch/de/suche?_csquery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "StartPage",
+ "triggers": [
+ "sp"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/metasearch.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage",
+ "triggers": [
+ "syear"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/metasearch.pl?query={{{term}}}&with_date=y"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage (deutsch)",
+ "triggers": [
+ "sde"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?cmd=process_search&query={{{term}}}&language=deutsch"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "StartPage (EN)",
+ "triggers": [
+ "spen"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/dsearch?query={{{term}}}&cat=web&pl=opensearch&language=english"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "StartPage (ES)",
+ "triggers": [
+ "spes",
+ "spe"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/dsearch?query={{{term}}}&cat=web&pl=opensearch&language=espanol"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage (images)",
+ "triggers": [
+ "startpageimages",
+ "spi"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?cat=pics&cmd=process_search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage (IT)",
+ "triggers": [
+ "spit"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?cat=web&cmd=process_search&language=italiano&engine0=v1all&query={{{term}}}&abp=-1&prf=ab8a0a99ccae7d38fd1f9b31e845ce7e&SuggestOn=1"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage (Switzerland)",
+ "triggers": [
+ "sch"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?cmd=process_search&query={{{term}}}&language=deutsch&with_region=countryCH"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "StartPage (videos)",
+ "triggers": [
+ "startpagevideos"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?cat=video&cmd=process_search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage Mobile",
+ "triggers": [
+ "spm"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/m/mobilesearch?&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage NL",
+ "triggers": [
+ "spnl"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?l=nederlands&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage Picture Search",
+ "triggers": [
+ "simages"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/metasearch.pl?cat=pics&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "StartPage safeoff eng",
+ "triggers": [
+ "spp"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?prf=2cc506ab255c98e10570b7d50ef6b1c8&cat=web&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage safeoff ita",
+ "triggers": [
+ "sppit"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?prf=77fe802d54508e9ee48b88624be6da56&cat=web&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Startpage Videos",
+ "triggers": [
+ "spv"
+ ],
+ "regions": {
+ "default": "https://www.startpage.com/do/search?cat=video&cmd=process_search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "startpage.com",
+ "triggers": [
+ "start"
+ ],
+ "regions": {
+ "default": "https://www.startpage.com/do/dsearch?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "startpage.com",
+ "triggers": [
+ "startpage"
+ ],
+ "regions": {
+ "default": "https://www.startpage.com/do/metasearch.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "startpage.com",
+ "triggers": [
+ "s"
+ ],
+ "regions": {
+ "default": "http://startpage.com/do/metasearch.pl?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stata.com/favicon-no-number.ico",
+ "name": "Stata 14 help",
+ "triggers": [
+ "stdoc"
+ ],
+ "regions": {
+ "default": "http://www.stata.com/help.cgi?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://staticice.com.au/favicon.ico",
+ "name": "Static Ice",
+ "triggers": [
+ "staticice"
+ ],
+ "regions": {
+ "default": "http://staticice.com.au/cgi-bin/search.cgi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.staticice.com.au/favicon.ico",
+ "name": "staticICE",
+ "triggers": [
+ "sice"
+ ],
+ "regions": {
+ "default": "http://www.staticice.com.au/cgi-bin/search.cgi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2aj393r952jgv.cloudfront.net/assets/img/favicons/favicon-32.png",
+ "name": "Statigram",
+ "triggers": [
+ "statigram"
+ ],
+ "regions": {
+ "default": "http://statigr.am/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.stationsweb.nl/favicon.ico",
+ "name": "Stationsweb",
+ "triggers": [
+ "stationsweb"
+ ],
+ "regions": {
+ "default": "http://www.stationsweb.nl/stationlijst.asp?station={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.statcdn.com/static/favicon.ico",
+ "name": "Statista",
+ "triggers": [
+ "statista"
+ ],
+ "regions": {
+ "default": "https://www.statista.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sverigeisiffror.scb.se/favicon-16x16.png",
+ "name": "Statistics Sweden",
+ "triggers": [
+ "scben",
+ "scb"
+ ],
+ "regions": {
+ "default": "http://www.sverigeisiffror.scb.se/hitta-statistik/sok/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.statsbiblioteket.dk/favicon.ico",
+ "name": "Statsbiblioteket Aarhus",
+ "triggers": [
+ "statsbiblioteket"
+ ],
+ "regions": {
+ "default": "https://www.statsbiblioteket.dk/au/?locale=en#/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.staxtradecentres.co.uk/assets/favicon/favicon.ico?v=3.3.7.13",
+ "name": "Stax Trade Centers",
+ "triggers": [
+ "stax"
+ ],
+ "regions": {
+ "default": "http://www.staxtradecentres.co.uk/search/?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://store.steampowered.com/favicon.ico",
+ "name": "Steam",
+ "triggers": [
+ "ste",
+ "steam",
+ "steamsc"
+ ],
+ "regions": {
+ "default": "http://store.steampowered.com/search/?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://steamcharts.com/assets/favicon.ico",
+ "name": "Steam Charts",
+ "triggers": [
+ "steamcharts"
+ ],
+ "regions": {
+ "default": "http://steamcharts.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamcommunity.com/favicon.ico",
+ "name": "Steam Community",
+ "triggers": [
+ "steamcommunity"
+ ],
+ "regions": {
+ "default": "https://steamcommunity.com/actions/Search?K={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamcommunity.com/favicon.ico",
+ "name": "Steam Community Market",
+ "triggers": [
+ "steammarket"
+ ],
+ "regions": {
+ "default": "https://steamcommunity.com/market/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://steamdb.info/favicon.ico",
+ "name": "Steam Database",
+ "triggers": [
+ "steamdb"
+ ],
+ "regions": {
+ "default": "http://steamdb.info/search/?a=app&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamcommunity.com/favicon.ico",
+ "name": "Steam Greenlight",
+ "triggers": [
+ "steamgl"
+ ],
+ "regions": {
+ "default": "https://steamcommunity.com/workshop/browse/?appid=765&searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://store.steampowered.com/favicon.ico",
+ "name": "Steam Key Redemption",
+ "triggers": [
+ "steamkey"
+ ],
+ "regions": {
+ "default": "https://store.steampowered.com/account/registerkey?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.steamprices.com/favicon.ico?v=a",
+ "name": "Steam Prices",
+ "triggers": [
+ "steamprices"
+ ],
+ "regions": {
+ "default": "http://www.steamprices.com/us/search?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.steamtrades.com/img/favicon.ico",
+ "name": "Steam Trades",
+ "triggers": [
+ "steamtrades"
+ ],
+ "regions": {
+ "default": "http://www.steamtrades.com/forum/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.steamgifts.com/img/favicon.ico",
+ "name": "Steamgift",
+ "triggers": [
+ "steamgift"
+ ],
+ "regions": {
+ "default": "https://www.steamgifts.com/giveaways/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamid.io/favicon-16x16.png",
+ "name": "steamid.io",
+ "triggers": [
+ "steamio"
+ ],
+ "regions": {
+ "default": "https://steamid.io/lookup/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamrep.com/favicon.ico",
+ "name": "SteamRep",
+ "triggers": [
+ "steamrep"
+ ],
+ "regions": {
+ "default": "https://steamrep.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamrep.com/favicon.ico",
+ "name": "SteamRep (by ID)",
+ "triggers": [
+ "sri"
+ ],
+ "regions": {
+ "default": "https://steamrep.com/id/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steamspy.com/pages/ico/favicon.ico",
+ "name": "SteamSpy",
+ "triggers": [
+ "steamspy"
+ ],
+ "regions": {
+ "default": "https://steamspy.com/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.steelcase.com/content/plugins/tribe-branding/assets/branding_icon_favicon.ico",
+ "name": "Steelcase",
+ "triggers": [
+ "steelcase"
+ ],
+ "regions": {
+ "default": "https://www.steelcase.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.imgur.com/Q5I5OP7.png",
+ "name": "Steem",
+ "triggers": [
+ "steem"
+ ],
+ "regions": {
+ "default": "https://www.asksteem.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steemit.com/images/favicons/favicon-128.png",
+ "name": "Steemit",
+ "triggers": [
+ "steemit"
+ ],
+ "regions": {
+ "default": "https://steemit.com/static/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://steep.it/favicon.ico",
+ "name": "steep.it",
+ "triggers": [
+ "steepit"
+ ],
+ "regions": {
+ "default": "http://steep.it/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://steim.amazingcdn.space/favicon/default/favi.png",
+ "name": "Steimatzky",
+ "triggers": [
+ "steimatzky"
+ ],
+ "regions": {
+ "default": "http://www.steimatzky.co.il/Steimatzky/Pages/SearchResult.aspx?SearchType=Simple&SearchSimpleText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stereomood.com/favicon.ico",
+ "name": "Stereomood",
+ "triggers": [
+ "stereomood"
+ ],
+ "regions": {
+ "default": "http://www.stereomood.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://bgunikat.eu/image/catalog/favicon.gif",
+ "name": "Sterling silver jewelry",
+ "triggers": [
+ "bgunikat"
+ ],
+ "regions": {
+ "default": "https://bgunikat.eu/index.php?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.stern.de/blob/6163604/5837d40f760b636cab62902d8acca6bd/android-icon-192x192-data.png",
+ "name": "Stern",
+ "triggers": [
+ "stern"
+ ],
+ "regions": {
+ "default": "https://www.stern.de/action/3000116/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stevecocrates.tk/favicon.ico",
+ "name": "Steve Co.",
+ "triggers": [
+ "steveco"
+ ],
+ "regions": {
+ "default": "http://stevecocrates.tk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dejure.org/favicon.ico",
+ "name": "StGB - dejure.org",
+ "triggers": [
+ "dstgb"
+ ],
+ "regions": {
+ "default": "http://dejure.org/gesetze/StGB/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.stib-mivb.be/irj/go/km/docs/WEBSITE_RES/Webresources/Frontend/build/images/favicon.ico",
+ "name": "STIB MIVB",
+ "triggers": [
+ "stib"
+ ],
+ "regions": {
+ "default": "http://www.stib-mivb.be/horaires-dienstregeling2.html?l=en&linecode={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stilltasty.com/favicon.ico",
+ "name": "StillTasty",
+ "triggers": [
+ "stilltasty"
+ ],
+ "regions": {
+ "default": "http://stilltasty.com/searchitems/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stixoi.info/skin/images/favicon.gif",
+ "name": "stixoi.info",
+ "triggers": [
+ "stixoi"
+ ],
+ "regions": {
+ "default": "http://www.stixoi.info/stixoi.php?info=SS&keywords={{{term}}}&act=ss"
+ }
+ },
+ {
+ "favicon": "http://stmblog.com/wp-content/uploads/2017/01/busquedas.jpg",
+ "name": "STM-Blog",
+ "triggers": [
+ "stm"
+ ],
+ "regions": {
+ "default": "http://stmblog.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.freeimages.com/static/images/favicon/32x32.png",
+ "name": "stock.xchng",
+ "triggers": [
+ "sxc"
+ ],
+ "regions": {
+ "default": "http://www.sxc.hu/browse.phtml?f=search&txt={{{term}}}&w=1"
+ }
+ },
+ {
+ "favicon": "http://stockcharts.com/favicon.ico",
+ "name": "StockCharts",
+ "triggers": [
+ "stockcharts"
+ ],
+ "regions": {
+ "default": "http://stockcharts.com/h-sc/ui?s={{{term}}}&p=D&yr=0&mn=6&dy=0"
+ }
+ },
+ {
+ "favicon": "https://public.stockflare.com/assets/favicon-32x32.png",
+ "name": "Stockflare",
+ "triggers": [
+ "$",
+ "ticker"
+ ],
+ "regions": {
+ "default": "https://stockflare.com/#stocks/${{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://biblioteket.stockholm.se/favicon.ico",
+ "name": "Stockholms stadsbibliotek",
+ "triggers": [
+ "sthlmbibbla"
+ ],
+ "regions": {
+ "default": "https://biblioteket.stockholm.se/sok?freetext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stocktwits.com/favicon-32x32.png",
+ "name": "stocktwits",
+ "triggers": [
+ "st"
+ ],
+ "regions": {
+ "default": "http://stocktwits.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stockx-assets.imgix.net/logo/favicon.ico?auto=compress",
+ "name": "StockX",
+ "triggers": [
+ "stockx"
+ ],
+ "regions": {
+ "default": "https://stockx.com/search?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.stopbadware.org/images/favicon.ico",
+ "name": "StopBadware",
+ "triggers": [
+ "sbw"
+ ],
+ "regions": {
+ "default": "https://www.stopbadware.org/clearinghouse/search/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stopforumspam.com/favicon.ico",
+ "name": "stopforumspam.com",
+ "triggers": [
+ "sfs"
+ ],
+ "regions": {
+ "default": "http://www.stopforumspam.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://snl.no/favicon.ico",
+ "name": "Store Norske Leksikon",
+ "triggers": [
+ "snl"
+ ],
+ "regions": {
+ "default": "http://snl.no/.search?e=snl&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.straightdope.com/wp-content/uploads/2017/11/sdico-1.png?w=150",
+ "name": "Straight Dope",
+ "triggers": [
+ "straightdope"
+ ],
+ "regions": {
+ "default": "http://www.straightdope.com/columns/search?query={{{term}}}&action=search"
+ }
+ },
+ {
+ "favicon": "https://strategischlui.nl/favicon.ico",
+ "name": "Strategisch Lui",
+ "triggers": [
+ "slnl",
+ "strategischlui"
+ ],
+ "regions": {
+ "default": "https://strategischlui.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.wikimg.net/en/strategywiki/favicon.ico",
+ "name": "StrategyWiki",
+ "triggers": [
+ "strategywiki"
+ ],
+ "regions": {
+ "default": "https://strategywiki.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://streamay.com/fav-12.png",
+ "name": "Streamay",
+ "triggers": [
+ "stmy"
+ ],
+ "regions": {
+ "default": "http://streamay.com/index.php?story={{{term}}}&do=search&subaction=search"
+ }
+ },
+ {
+ "favicon": "http://streeteasy.com/favicon.ico",
+ "name": "StreetEasy",
+ "triggers": [
+ "street"
+ ],
+ "regions": {
+ "default": "http://streeteasy.com/search?utf8=%E2%9C%93&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://streetmap.co.uk/postcode/favicon.ico",
+ "name": "Streetmap",
+ "triggers": [
+ "smap"
+ ],
+ "regions": {
+ "default": "http://streetmap.co.uk/postcode/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.strefasluchu.pl/wp-content/uploads/2016/05/strefa-sluchu-aparaty-sluchowe-ikona.png",
+ "name": "Strefa Słuchu",
+ "triggers": [
+ "strefasluchu"
+ ],
+ "regions": {
+ "default": "http://www.strefasluchu.pl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://getstrike.net/favicon.ico?v=2",
+ "name": "Strike Search",
+ "triggers": [
+ "stk",
+ "strike"
+ ],
+ "regions": {
+ "default": "https://getstrike.net/torrents/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://strimoid.pl/favicon.ico",
+ "name": "Strimoid",
+ "triggers": [
+ "strimoid"
+ ],
+ "regions": {
+ "default": "http://strimoid.pl/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/strongholdkingdoms_gamepedia_en/6/64/Favicon.ico?version=925147fb672c71ffa9f5abbbcb72c13f",
+ "name": "Stronghold Kingdoms Wiki",
+ "triggers": [
+ "shkwiki"
+ ],
+ "regions": {
+ "default": "http://help.strongholdkingdoms.com/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://muzik.si/favicon.ico",
+ "name": "strudl muzik",
+ "triggers": [
+ "muzik"
+ ],
+ "regions": {
+ "default": "http://muzik.si/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.stubhub.com/favicon.ico",
+ "name": "StubHub",
+ "triggers": [
+ "tickets",
+ "stubhub"
+ ],
+ "regions": {
+ "default": "https://www.stubhub.com/search/doSearch?searchStr={{{term}}}&pageNumber=1&resultsPerPage=50&searchMode=event&start=0&rows=50"
+ }
+ },
+ {
+ "favicon": "https://www.studentdoctor.net/wp-content/uploads/2017/04/cropped-sdn-logo-square-192x192.gif",
+ "name": "Student Doctor Network",
+ "triggers": [
+ "studentdoctor"
+ ],
+ "regions": {
+ "default": "https://www.studentdoctor.net/search-sdn/?cx={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sfcdn.studiofutbol1.netdna-cdn.com/wp-content/uploads/2015/09/Favicon.png",
+ "name": "StudioFutbol",
+ "triggers": [
+ "studiofutbol"
+ ],
+ "regions": {
+ "default": "http://studiofutbol.com.ec/?submit=&s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://studybible.info/favicon.ico",
+ "name": "Study bible",
+ "triggers": [
+ "studybible"
+ ],
+ "regions": {
+ "default": "http://studybible.info/YLT/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://study.com/favicon.ico?v=2",
+ "name": "Study.com",
+ "triggers": [
+ "study"
+ ],
+ "regions": {
+ "default": "https://study.com/search/text/academy.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.studydroid.com/favicon.ico",
+ "name": "StudyDroid",
+ "triggers": [
+ "studydroid"
+ ],
+ "regions": {
+ "default": "http://www.studydroid.com/index.php?page=search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stuff.co.nz/etc/designs/ffx/nz/stuff/clientlibs-all/images/favicon.png",
+ "name": "stuff.co.nz",
+ "triggers": [
+ "stuffnz"
+ ],
+ "regions": {
+ "default": "http://www.stuff.co.nz/searchresults?Search+Site=Search+Site&cof=FORID%3A9&cx=006730714154542492986%3Aoh6vl0ybuqy&ie=UTF-8&q={{{term}}}&siteurl=www.stuff.co.nz%2F&ref="
+ }
+ },
+ {
+ "favicon": "http://stukroodvlees.nl/wp-content/uploads/2017/05/cropped-favicon_srv-192x192.png",
+ "name": "Stuk Rood Vlees",
+ "triggers": [
+ "srv"
+ ],
+ "regions": {
+ "default": "http://stukroodvlees.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.stupidedia.org/favicon.ico",
+ "name": "Stupidedia",
+ "triggers": [
+ "stupi"
+ ],
+ "regions": {
+ "default": "http://www.stupidedia.org/stupi?title=Spezial%3ASuche&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.stuttgarter-zeitung.de/www/stuttgarter_zeitung/favicon.ico",
+ "name": "Stuttgarter Zeitung",
+ "triggers": [
+ "stz"
+ ],
+ "regions": {
+ "default": "http://www.stuttgarter-zeitung.de/suche?_charset_=UTF-8&searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://stylishoffer.com/favicons/favicon-16x16.png",
+ "name": "StylishOffer.com",
+ "triggers": [
+ "shopstyle"
+ ],
+ "regions": {
+ "default": "http://stylishoffer.com/?={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://subscenter.cinemast.com/favicon.ico",
+ "name": "Subcenter",
+ "triggers": [
+ "subcenter"
+ ],
+ "regions": {
+ "default": "http://subscenter.cinemast.com/he/subtitle/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://subdivx.com/favicon.ico",
+ "name": "Subdivx",
+ "triggers": [
+ "sub",
+ "sdx",
+ "subdivx"
+ ],
+ "regions": {
+ "default": "http://subdivx.com/index.php?buscar={{{term}}}&accion=5&masdesc=&subtitulos=1&realiza_b=1"
+ }
+ },
+ {
+ "favicon": "http://subeen.com/favicon.ico",
+ "name": "Subeen.com",
+ "triggers": [
+ "subeen"
+ ],
+ "regions": {
+ "default": "http://subeen.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.sbito.it/1201530262367/img/favicon.ico",
+ "name": "Subito.it",
+ "triggers": [
+ "subito"
+ ],
+ "regions": {
+ "default": "http://www.subito.it/annunci-lazio-italia/vendita/usato/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sublevel.net/static/icons/192.png",
+ "name": "Sublevel",
+ "triggers": [
+ "sublevel"
+ ],
+ "regions": {
+ "default": "https://sublevel.net/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sublime.wbond.net/favicon.ico",
+ "name": "Sublime Package Control",
+ "triggers": [
+ "sublime"
+ ],
+ "regions": {
+ "default": "https://sublime.wbond.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.sublimetext.info/favicon.ico",
+ "name": "Sublime Text Unofficial Documentation",
+ "triggers": [
+ "subldoc"
+ ],
+ "regions": {
+ "default": "http://docs.sublimetext.info/en/latest/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images-submarino.b2w.io/zion/manifest/icons/dcd595e698434e12d36f1895a68394f3.favicon.ico",
+ "name": "Submarino",
+ "triggers": [
+ "submarino"
+ ],
+ "regions": {
+ "default": "https://www.submarino.com.br/busca?conteudo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tunnelsup.com/favicon.ico",
+ "name": "Subnet Calculator - TunnelsUp",
+ "triggers": [
+ "subnet"
+ ],
+ "regions": {
+ "default": "https://www.tunnelsup.com/subnet-calculator?ip={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://subscene.com/favicon.ico",
+ "name": "Subscene",
+ "triggers": [
+ "subs",
+ "subscene",
+ "ss"
+ ],
+ "regions": {
+ "default": "https://subscene.com/subtitles/title?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://subscene.com/favicon.ico",
+ "name": "Subscene",
+ "triggers": [
+ "ssc"
+ ],
+ "regions": {
+ "default": "https://subscene.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://subsearch.org/favicon.ico",
+ "name": "Subsearch",
+ "triggers": [
+ "subsearch"
+ ],
+ "regions": {
+ "default": "http://subsearch.org/search/{{{term}}}/en/4/0/0"
+ }
+ },
+ {
+ "favicon": "http://www.subsynchro.com/tous-les-films/search/motcle/favicon-subsynchro.com.png",
+ "name": "Subsynchro.com",
+ "triggers": [
+ "ssync"
+ ],
+ "regions": {
+ "default": "http://www.subsynchro.com/tous-les-films/search/motcle/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.subtitle.co.il/images/launchericons/192x192.png",
+ "name": "subtitle.co.il",
+ "triggers": [
+ "sbh"
+ ],
+ "regions": {
+ "default": "http://www.subtitle.co.il/browse.php?speechval=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.subtitle.co.il/images/launchericons/192x192.png",
+ "name": "subtitle.co.il",
+ "triggers": [
+ "she"
+ ],
+ "regions": {
+ "default": "http://www.subtitle.co.il/browse.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.subtitleseeker.com/favicon.ico",
+ "name": "SubtitleSeeker",
+ "triggers": [
+ "subseek"
+ ],
+ "regions": {
+ "default": "http://www.subtitleseeker.com/search/TITLES/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.subtitleseeker.com/favicon.ico",
+ "name": "SubtitleSeeker",
+ "triggers": [
+ "subtitleseeker"
+ ],
+ "regions": {
+ "default": "http://www.subtitleseeker.com/search/TITLES/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.subtitulos.es/favicon.ico",
+ "name": "Subtitulos.es",
+ "triggers": [
+ "subes"
+ ],
+ "regions": {
+ "default": "http://www.subtitulos.es/search.php?cx=partner-pub-9712736367130269%3A9775425900&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa=Buscar&siteurl=www.subtitulos.es%2F"
+ }
+ },
+ {
+ "favicon": "https://www.toptal.com/designers/subtlepatterns/icons/favicon-32x32.png",
+ "name": "Subtle Patterns",
+ "triggers": [
+ "spattern",
+ "subtlepatterns"
+ ],
+ "regions": {
+ "default": "http://subtlepatterns.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.subzin.com/dist/1503212585/i/favicon.ico",
+ "name": "subzin.com",
+ "triggers": [
+ "subzin"
+ ],
+ "regions": {
+ "default": "http://www.subzin.com/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.suconlavite.it/wp-content/uploads/2014/02/favicon1.png",
+ "name": "Suconlavite.it",
+ "triggers": [
+ "suconlavite"
+ ],
+ "regions": {
+ "default": "http://www.suconlavite.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sitecheck.sucuri.net/favicon.ico",
+ "name": "Sucuri",
+ "triggers": [
+ "sucuri"
+ ],
+ "regions": {
+ "default": "https://sitecheck.sucuri.net/results/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cinabre.sudoc.abes.fr:80/img_psi/3.0/favicons/default.ico",
+ "name": "Sudoc",
+ "triggers": [
+ "sudoc"
+ ],
+ "regions": {
+ "default": "http://www.sudoc.abes.fr//DB=2.1/TTL=1/CMD?ACT=SRCHA&IKT=1016&SRT=RLV&TRM={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sudomod.com/wp-content/uploads/2018/06/favicon-300x300.jpeg",
+ "name": "sudomod",
+ "triggers": [
+ "sudomod"
+ ],
+ "regions": {
+ "default": "http://sudomod.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.colissimo.fr/bundles/digitaslapostebase/images/favicon.ico",
+ "name": "Suivi Colissimo",
+ "triggers": [
+ "suivicolissimo"
+ ],
+ "regions": {
+ "default": "http://www.colissimo.fr/portail_colissimo/suivre.do?language=fr_FR&parcelnumber={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sukebei.nyaa.si/static/favicon.png",
+ "name": "Sukebei NyaaTorrents",
+ "triggers": [
+ "sukebei"
+ ],
+ "regions": {
+ "default": "https://sukebei.nyaa.si/?q={{{term}}}&f=0&c=0_0"
+ }
+ },
+ {
+ "favicon": "http://profiles.sulekhalive.com/common/images/favicon.ico",
+ "name": "Sulekha",
+ "triggers": [
+ "sulekha"
+ ],
+ "regions": {
+ "default": "http://search.sulekha.com/sulekhasearch.aspx?txtsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sulit.com.ph/img/favicon.ico?v=3",
+ "name": "Sulit",
+ "triggers": [
+ "sulit"
+ ],
+ "regions": {
+ "default": "http://www.sulit.com.ph/index.php/classifieds+directory/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.summitpost.org/favicon.ico",
+ "name": "SummitPost",
+ "triggers": [
+ "summitpost"
+ ],
+ "regions": {
+ "default": "http://www.summitpost.org/object_list.php?object_type=0&object_name_0={{{term}}}&page=1"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/summoners-war-sky-arena/images/6/64/Favicon.ico/revision/latest?cb=20151128070924",
+ "name": "Summonerswar",
+ "triggers": [
+ "swars"
+ ],
+ "regions": {
+ "default": "http://summonerswar.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://img.sumotorrent.sx/favicon.png",
+ "name": "sumotorrent",
+ "triggers": [
+ "sumotorrent"
+ ],
+ "regions": {
+ "default": "http://www.sumotorrent.com/en/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.sunnysports.com/favicon.ico",
+ "name": "SunnySports",
+ "triggers": [
+ "sunnysports"
+ ],
+ "regions": {
+ "default": "http://www.sunnysports.com/search?searchinfo={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sunshinerewards.com/favicon.ico",
+ "name": "Sunshine Rewards",
+ "triggers": [
+ "cashback"
+ ],
+ "regions": {
+ "default": "http://www.sunshinerewards.com/sitesearch.php?keywords={{{term}}}&action=search"
+ }
+ },
+ {
+ "favicon": "http://www.suomisanakirja.fi/favicon.ico",
+ "name": "Suomi Sanakirja",
+ "triggers": [
+ "saki"
+ ],
+ "regions": {
+ "default": "http://www.suomisanakirja.fi/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mariowiki.com/favicon.ico",
+ "name": "Super Mario Wiki",
+ "triggers": [
+ "mariowiki"
+ ],
+ "regions": {
+ "default": "https://www.mariowiki.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.mariowiki.com/favicon.ico",
+ "name": "Super Mario Wiki",
+ "triggers": [
+ "smw"
+ ],
+ "regions": {
+ "default": "https://www.mariowiki.com/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://doc.sccode.org/favicon.ico",
+ "name": "SuperCollider",
+ "triggers": [
+ "sclang"
+ ],
+ "regions": {
+ "default": "http://doc.sccode.org/Search.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://busca.superdownloads.com.br/Images/sdico32.png",
+ "name": "SuperDownloads",
+ "triggers": [
+ "superdownloads",
+ "superd"
+ ],
+ "regions": {
+ "default": "http://busca.superdownloads.com.br/busca/{{{term}}}.s1.html"
+ }
+ },
+ {
+ "favicon": "//img.superpages.com/images-yp/images/sp-favicon-192x192.png",
+ "name": "SuperPages",
+ "triggers": [
+ "tel"
+ ],
+ "regions": {
+ "default": "http://yellowpages.superpages.com/listings.jsp?C={{{term}}}&CS=L&MCBP=true&search=Find+It&SRC=&STYPE=S&SCS=&channelId=&sessionId="
+ }
+ },
+ {
+ "favicon": "http://www.supersoluce.com/sites/all/themes/supersoluce/favicon.ico",
+ "name": "SuperSoluce",
+ "triggers": [
+ "soluce"
+ ],
+ "regions": {
+ "default": "http://www.supersoluce.com/search/supersoluce/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://superstropdas.nl/wp-content/uploads/cropped-logo-rond-rechts-192x192.png",
+ "name": "SuperStropdas",
+ "triggers": [
+ "superstropdas"
+ ],
+ "regions": {
+ "default": "http://superstropdas.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/superuser/img/favicon.ico?v=29b26120d2c5",
+ "name": "SuperUser",
+ "triggers": [
+ "su",
+ "superuser"
+ ],
+ "regions": {
+ "default": "https://superuser.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://putusan.mahkamahagung.go.id/favicon.ico",
+ "name": "Supreme Court of Indonesia",
+ "triggers": [
+ "mari"
+ ],
+ "regions": {
+ "default": "http://putusan.mahkamahagung.go.id/main/pencarian/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.surplustraders.net/media/favicon/default/favicon.ico",
+ "name": "SurplusTraders",
+ "triggers": [
+ "surplus"
+ ],
+ "regions": {
+ "default": "https://www.surplustraders.net/catalogsearch/advanced/result/?name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://susi.at/favicon.ico",
+ "name": "Susi",
+ "triggers": [
+ "susi"
+ ],
+ "regions": {
+ "default": "http://susi.at/suche/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://susydocs.oddbird.net/favicon.ico",
+ "name": "Susy",
+ "triggers": [
+ "susy"
+ ],
+ "regions": {
+ "default": "http://susydocs.oddbird.net/en/latest/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.svartling.net/favicon.ico",
+ "name": "Svartling Network",
+ "triggers": [
+ "svartling"
+ ],
+ "regions": {
+ "default": "http://www.svartling.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://smdb.kb.se/favicon.ico",
+ "name": "Svensk Mediedatabas",
+ "triggers": [
+ "smdb"
+ ],
+ "regions": {
+ "default": "http://smdb.kb.se/catalog/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://svenska.se/wp-content/uploads/2017/10/cropped-krans_sa-192x192.png",
+ "name": "Svenska Akademiens ordlista",
+ "triggers": [
+ "saol"
+ ],
+ "regions": {
+ "default": "https://svenska.se/tre/?sok={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.svd.se/assets/assets/images/favicon/favicon.ico",
+ "name": "Svenska Dagbladet",
+ "triggers": [
+ "svd"
+ ],
+ "regions": {
+ "default": "http://www.svd.se/search.do?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ne.se/info/wp-content/themes/nationalencyklopedin/favicons/sv-SE/favicon-32x32.png",
+ "name": "Svenska Nationalencyklopedin",
+ "triggers": [
+ "ne.se"
+ ],
+ "regions": {
+ "default": "http://www.ne.se/s%C3%B6k/?t=uppslagsverk&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sverigesradio.se/sida/content/15.0.1945/favicon/favicon-16x16.png",
+ "name": "Sveriges Radio",
+ "triggers": [
+ "svr"
+ ],
+ "regions": {
+ "default": "https://sverigesradio.se/sida/sok.aspx?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.svtstatic.se/resources/svtservice-n-render/favicon-16x16_3.png",
+ "name": "Svt Nyheter",
+ "triggers": [
+ "svtn"
+ ],
+ "regions": {
+ "default": "http://www.svt.se/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.svtstatic.se/play/play6/images/favicons/favicon-32x32.260877fb0c7a785e4dba85d609ba3c8f.png",
+ "name": "SVT Play",
+ "triggers": [
+ "svtp",
+ "svt"
+ ],
+ "regions": {
+ "default": "http://www.svtplay.se/sok?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//app1-cdn2.sbx-cdn.com/images/favicon-16x16.png",
+ "name": "SwagBucks",
+ "triggers": [
+ "sb"
+ ],
+ "regions": {
+ "default": "http://www.swagbucks.com/?t=w&p=1&b=0&f=0&sef=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//app1-cdn2.sbx-cdn.com/images/favicon-16x16.png",
+ "name": "Swagbucks",
+ "triggers": [
+ "swagbucks"
+ ],
+ "regions": {
+ "default": "https://swagbucks.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.swappa.com/static/images/logos/favicon.png?v=2",
+ "name": "Swappa",
+ "triggers": [
+ "swap"
+ ],
+ "regions": {
+ "default": "https://swappa.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sv.wiktionary.org/static/favicon/piece.ico",
+ "name": "Swedish Wiktionary",
+ "triggers": [
+ "wiktsv"
+ ],
+ "regions": {
+ "default": "https://sv.wiktionary.org/w/index.php?search={{{term}}}&title=Special%3AS%C3%B6k"
+ }
+ },
+ {
+ "favicon": "http://www.sweetsearch.com/favicon.ico",
+ "name": "Sweet Search",
+ "triggers": [
+ "swtsearch"
+ ],
+ "regions": {
+ "default": "http://www.sweetsearch.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sweetwater.com/favicon.ico",
+ "name": "Sweetwater",
+ "triggers": [
+ "sweetwater"
+ ],
+ "regions": {
+ "default": "http://www.sweetwater.com/store/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.swi-prolog.org/icons/favicon.ico",
+ "name": "SWI-Prolog",
+ "triggers": [
+ "swi"
+ ],
+ "regions": {
+ "default": "http://www.swi-prolog.org/search?for={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.swi-prolog.org/icons/favicon.ico",
+ "name": "SWI-Prolog",
+ "triggers": [
+ "swipl"
+ ],
+ "regions": {
+ "default": "http://www.swi-prolog.org/pldoc/search?for={{{term}}}&in=all&match=summary"
+ }
+ },
+ {
+ "favicon": "https://developer.apple.com/favicon.ico",
+ "name": "Swift Standard Library",
+ "triggers": [
+ "swift"
+ ],
+ "regions": {
+ "default": "https://developer.apple.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.post.ch/favicon.ico?v=46ba45071be7139f1e76354b90505541",
+ "name": "Swiss Post",
+ "triggers": [
+ "swisspost"
+ ],
+ "regions": {
+ "default": "https://www.post.ch/EasyTrack/submitParcelData.do?formattedParcelCodes={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.swissbib.ch/themes/sbvfrdsingle/images/favicon.ico",
+ "name": "swissbib",
+ "triggers": [
+ "swissbib"
+ ],
+ "regions": {
+ "default": "https://www.swissbib.ch/Search/Results?lookfor={{{term}}}&type=AllFields"
+ }
+ },
+ {
+ "favicon": "https://swisscows.com/favicon.ico",
+ "name": "Swisscows",
+ "triggers": [
+ "swisscows"
+ ],
+ "regions": {
+ "default": "https://swisscows.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.swtl.pt/v2/image/catalog/Circle-PNG-Image.jpg",
+ "name": "Switch Technology",
+ "triggers": [
+ "swtl"
+ ],
+ "regions": {
+ "default": "http://swtl.pt/web/index.php?route=product/isearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.swoop.ge/favicon.ico",
+ "name": "Swoop.ge discounts in Georgia",
+ "triggers": [
+ "swoopge"
+ ],
+ "regions": {
+ "default": "https://www.swoop.ge/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/swordartonline/images/6/64/Favicon.ico/revision/latest?cb=20140822163552",
+ "name": "Sword Art Online Wiki",
+ "triggers": [
+ "sao"
+ ],
+ "regions": {
+ "default": "http://swordartonline.wikia.com/wiki/Special:Search?go&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://schedule.sxsw.com/assets/favicon-92c704a08f1721b83396130572394f16c1f5790fd28e706cd7ddb6fd8a2dea71.png",
+ "name": "SXSW Schedule",
+ "triggers": [
+ "sxsw"
+ ],
+ "regions": {
+ "default": "http://schedule.sxsw.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://symbolhound.com/favicon2.ico",
+ "name": "Symbol Hound",
+ "triggers": [
+ "symbolhound",
+ "sym",
+ "sho"
+ ],
+ "regions": {
+ "default": "http://symbolhound.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.symbolab.com/public/favicon.ico",
+ "name": "Symbolab",
+ "triggers": [
+ "symolab"
+ ],
+ "regions": {
+ "default": "https://www.symbolab.com/solver/step-by-step/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://symfony.com/favicon.ico",
+ "name": "Symfony Framework",
+ "triggers": [
+ "symfony",
+ "sf2"
+ ],
+ "regions": {
+ "default": "https://symfony.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.sympygamma.com/favicon.ico",
+ "name": "SymPy Gamma",
+ "triggers": [
+ "sympy"
+ ],
+ "regions": {
+ "default": "http://www.sympygamma.com/input/?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://syncfile.co/favicon.ico",
+ "name": "SyncFile",
+ "triggers": [
+ "scf"
+ ],
+ "regions": {
+ "default": "http://syncfile.co/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://synoniemen.net/favicon.ico",
+ "name": "Synoniemen.net",
+ "triggers": [
+ "synoniemen",
+ "synoniem"
+ ],
+ "regions": {
+ "default": "http://synoniemen.net/index.php?zoekterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.synonimy.pl/s/images/favicon.da73c7ff85c0.png",
+ "name": "Synonimy.pl",
+ "triggers": [
+ "synpl"
+ ],
+ "regions": {
+ "default": "https://www.synonimy.pl/synonim/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://synonyme.de/favicon.ico",
+ "name": "Synonyme.de",
+ "triggers": [
+ "synde"
+ ],
+ "regions": {
+ "default": "http://synonyme.de/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.synonymer.se/site/media/fav/android-icon-192x192.png",
+ "name": "Synonymer",
+ "triggers": [
+ "synonymer"
+ ],
+ "regions": {
+ "default": "http://www.synonymer.se/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://synonymer.se/site/media/fav/android-icon-192x192.png",
+ "name": "Synonymer.se",
+ "triggers": [
+ "svs"
+ ],
+ "regions": {
+ "default": "http://synonymer.se/?query={{{term}}}&SOK=sök"
+ }
+ },
+ {
+ "favicon": "http://synonymes.com/favicon.ico",
+ "name": "Synonymes",
+ "triggers": [
+ "synonymes"
+ ],
+ "regions": {
+ "default": "http://synonymes.com/resultats.php?mot={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.synonymo.fr/img/favicon.png",
+ "name": "Synonymo.fr",
+ "triggers": [
+ "syno"
+ ],
+ "regions": {
+ "default": "http://www.synonymo.fr/syno/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.synonyms.net/antonyms/root/app_common/img/favicon_syno.ico",
+ "name": "Synonyms.net",
+ "triggers": [
+ "antonym"
+ ],
+ "regions": {
+ "default": "http://www.synonyms.net/antonyms/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://syntaxdb.com/assets/favicon-79c6a4c649535beaec14501784f8f2b12ceb27dc2b3a66fc6e6140ad7eb57703.ico",
+ "name": "syntaxdb.com",
+ "triggers": [
+ "sdb"
+ ],
+ "regions": {
+ "default": "https://syntaxdb.com/reference/search?utf8=✓&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.systembolaget.se/content/assets/images/favicon.ico",
+ "name": "Systembolaget",
+ "triggers": [
+ "systemet"
+ ],
+ "regions": {
+ "default": "https://www.systembolaget.se/Sok-dryck/?searchquery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.systembolaget.se/content/assets/images/favicon.ico",
+ "name": "Systembolaget",
+ "triggers": [
+ "systembolaget"
+ ],
+ "regions": {
+ "default": "https://www.systembolaget.se/?searchquery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.systranet.com/_img/favicon.ico",
+ "name": "Systranet",
+ "triggers": [
+ "systranet"
+ ],
+ "regions": {
+ "default": "http://www.systranet.com/translate?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.systranet.com/fr/fr/dictionary/english-french/_img/favicon.ico",
+ "name": "Systranet English-French",
+ "triggers": [
+ "sysef"
+ ],
+ "regions": {
+ "default": "http://www.systranet.com/fr/fr/dictionary/english-french/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "http://www.systranet.com/fr/fr/dictionary/english-swedish/_img/favicon.ico",
+ "name": "Systranet English-Swedish",
+ "triggers": [
+ "sysensw"
+ ],
+ "regions": {
+ "default": "http://www.systranet.com/fr/fr/dictionary/english-swedish/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "http://www.systranet.com/fr/fr/dictionary/french-english/_img/favicon.ico",
+ "name": "Systranet French-English",
+ "triggers": [
+ "sysfe"
+ ],
+ "regions": {
+ "default": "http://www.systranet.com/fr/fr/dictionary/french-english/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "http://www.systranet.com/fr/fr/dictionary/swedish-english/_img/favicon.ico",
+ "name": "Systranet Swedish-English",
+ "triggers": [
+ "sysswen"
+ ],
+ "regions": {
+ "default": "http://www.systranet.com/fr/fr/dictionary/swedish-english/{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "https://www.szotar.net/favicon.ico",
+ "name": "Szótár.net",
+ "triggers": [
+ "szotar"
+ ],
+ "regions": {
+ "default": "https://www.szotar.net/keres/angol/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.sueddeutsche.de/staticassets/img/favicon.ico",
+ "name": "Süddeutsche Zeitung",
+ "triggers": [
+ "sz"
+ ],
+ "regions": {
+ "default": "http://suche.sueddeutsche.de/news?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.eki.ee/templates/eki/favicon.ico",
+ "name": "Sünonüümisõnastik",
+ "triggers": [
+ "sys"
+ ],
+ "regions": {
+ "default": "http://www.eki.ee/dict/sys/index.cgi?Q={{{term}}}&F=M&C06=en"
+ }
+ },
+ {
+ "favicon": "https://sjp.pwn.pl/favicon-32x32.png",
+ "name": "Słownik Języka Polskiego",
+ "triggers": [
+ "sjp"
+ ],
+ "regions": {
+ "default": "http://sjp.pwn.pl/szukaj/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://d1quwwdmdfumn6.cloudfront.net/t3n/2018/images/icons/t3n-favicon-96x96.png",
+ "name": "t3n",
+ "triggers": [
+ "t3n"
+ ],
+ "regions": {
+ "default": "http://t3n.de/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://taaladvies.net/styles/tuv2.5/favicon.ico",
+ "name": "Taaladvies",
+ "triggers": [
+ "taal"
+ ],
+ "regions": {
+ "default": "http://taaladvies.net/taal/advies/zoek.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tabcrawler.com/favicon.ico",
+ "name": "Tabcrawler",
+ "triggers": [
+ "tabcrawler"
+ ],
+ "regions": {
+ "default": "http://tabcrawler.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tabscout.com/img/icons/favicon.png",
+ "name": "TabScout",
+ "triggers": [
+ "tabscout"
+ ],
+ "regions": {
+ "default": "http://www.tabscout.com/?action=search&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tacojohns.com/assets/img/favicon-v2/favicon-16x16.png",
+ "name": "Taco John's",
+ "triggers": [
+ "tj",
+ "tacojohns"
+ ],
+ "regions": {
+ "default": "https://www.tacojohns.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/taddlr.com/wp-content/uploads/cropped-pf-2-1.png?fit=192,192",
+ "name": "Taddlr",
+ "triggers": [
+ "taddlr"
+ ],
+ "regions": {
+ "default": "http://taddlr.com/de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tagesschau.de/favicon-16x16.png",
+ "name": "Tagesschau",
+ "triggers": [
+ "tagesschau"
+ ],
+ "regions": {
+ "default": "https://www.tagesschau.de/suche2.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tageswoche.ch/wp-content/uploads/2017/06/cropped-favicon-2-300x300.png",
+ "name": "Tageswoche",
+ "triggers": [
+ "tageswoche"
+ ],
+ "regions": {
+ "default": "https://www.tageswoche.ch/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tagfinder.herokuapp.com/static/ico/favicon.ico",
+ "name": "Tagfinder",
+ "triggers": [
+ "tagfinder"
+ ],
+ "regions": {
+ "default": "https://tagfinder.herokuapp.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tails.boum.org/favicon.ico",
+ "name": "Tails - The Amnesic Incognito Live System",
+ "triggers": [
+ "tails"
+ ],
+ "regions": {
+ "default": "https://tails.boum.org/ikiwiki.cgi?P={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.takealot.com/all/images/favicon_cb1.ico",
+ "name": "takealot.com",
+ "triggers": [
+ "takealot"
+ ],
+ "regions": {
+ "default": "http://www.takealot.com/all/?qsearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://talaios.net/wp-content/uploads/2012/12/tau1.ico",
+ "name": "Talaios.net",
+ "triggers": [
+ "talaios"
+ ],
+ "regions": {
+ "default": "http://talaios.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.talkgraphics.com/favicon.ico",
+ "name": "TalkGraphics",
+ "triggers": [
+ "talkgr"
+ ],
+ "regions": {
+ "default": "http://www.talkgraphics.com/search.php?searchid={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://talky.io/favicon.png",
+ "name": "Talky.io",
+ "triggers": [
+ "talky"
+ ],
+ "regions": {
+ "default": "https://talky.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ta.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Tamil Wikipedia",
+ "triggers": [
+ "tawk"
+ ],
+ "regions": {
+ "default": "https://ta.wikipedia.org/w/index.php?search= {{{term}}}&title=%E0%AE%9A%E0%AE%BF%E0%AE%B1%E0%AE%AA%E0%AF%8D%E0%AE%AA%E0%AF%81%3ASearch&go=%E0%AE%9A%E0%AF%86%E0%AE%B2%E0%AF%8D"
+ }
+ },
+ {
+ "favicon": "http://tangorin.com/examples/icon/favicon-32x32.png",
+ "name": "Tangorin",
+ "triggers": [
+ "tangorin"
+ ],
+ "regions": {
+ "default": "http://tangorin.com/examples/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tangorin.com/general/icon/favicon-32x32.png",
+ "name": "tangorin",
+ "triggers": [
+ "tgdict",
+ "tgr"
+ ],
+ "regions": {
+ "default": "http://tangorin.com/general/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tanoshiijapanese.com/favicon.ico",
+ "name": "Tanoshii Japanese",
+ "triggers": [
+ "je"
+ ],
+ "regions": {
+ "default": "http://www.tanoshiijapanese.com/dictionary/index.cfm?j={{{term}}}&e=&search=Search+%3E"
+ }
+ },
+ {
+ "favicon": "http://www.tanoshiijapanese.com/favicon.ico",
+ "name": "Tanoshii Japanese English > Japanese",
+ "triggers": [
+ "ej"
+ ],
+ "regions": {
+ "default": "http://www.tanoshiijapanese.com/dictionary/index.cfm?j=&e={{{term}}}&search=Search+%3E"
+ }
+ },
+ {
+ "favicon": "http://tanuki.pl/favicon.png",
+ "name": "Tanuki.pl",
+ "triggers": [
+ "tanuki"
+ ],
+ "regions": {
+ "default": "http://tanuki.pl/szukaj/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tanum.no/tanum/favicon.ico?bt=1530016779859",
+ "name": "Tanum",
+ "triggers": [
+ "tanum"
+ ],
+ "regions": {
+ "default": "http://www.tanum.no/tanum/search/search.action?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tanzil.info/tanzil/img/favicon.png",
+ "name": "Tanzil",
+ "triggers": [
+ "tanzil"
+ ],
+ "regions": {
+ "default": "http://tanzil.net/#search/quran/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.taobao.com/favicon.ico",
+ "name": "Taobao",
+ "triggers": [
+ "taobao"
+ ],
+ "regions": {
+ "default": "https://s.taobao.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tapastic.com/favicon.ico",
+ "name": "Tapastic",
+ "triggers": [
+ "tapastic"
+ ],
+ "regions": {
+ "default": "https://tapastic.com/search/SERIES/list?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tape.tv/favicon.ico",
+ "name": "tape.tv",
+ "triggers": [
+ "tape"
+ ],
+ "regions": {
+ "default": "http://tape.tv/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.tapwage.com/favicons/favicon-16x16.png",
+ "name": "Tapwage.com",
+ "triggers": [
+ "tapwage"
+ ],
+ "regions": {
+ "default": "https://tapwage.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/tardis/images/6/64/Favicon.ico/revision/latest?cb=20140127221612",
+ "name": "TARDIS Data Core",
+ "triggers": [
+ "tardis"
+ ],
+ "regions": {
+ "default": "http://tardis.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mapa.targeo.pl/i/targeo-favicon.png",
+ "name": "Targeo",
+ "triggers": [
+ "targeo"
+ ],
+ "regions": {
+ "default": "http://mapa.targeo.pl/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.targetimg1.com/static/images/favicon-16x16.png",
+ "name": "Target",
+ "triggers": [
+ "target"
+ ],
+ "regions": {
+ "default": "http://www.target.com/s?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://o1.t26.net/images/favicon.ico?1.2",
+ "name": "Taringa!",
+ "triggers": [
+ "tar"
+ ],
+ "regions": {
+ "default": "https://www.taringa.net/buscar/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://o1.t26.net/images/favicon.ico?1.2",
+ "name": "Taringa!",
+ "triggers": [
+ "taringa"
+ ],
+ "regions": {
+ "default": "https://www.taringa.net/buscar/?q={{{term}}}&"
+ }
+ },
+ {
+ "favicon": "http://www.taste.com.au/favicon-16x16.png",
+ "name": "Taste.com.au",
+ "triggers": [
+ "taste"
+ ],
+ "regions": {
+ "default": "http://www.taste.com.au/search-recipes/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tastedive.com/static/img/icons/favicon.ico",
+ "name": "TasteKid",
+ "triggers": [
+ "tastekid"
+ ],
+ "regions": {
+ "default": "https://www.tastekid.com/like/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.tasteline.com/wp-content/themes/tasteline/dist/images/favicons/favicon-16x16.png",
+ "name": "Tasteline",
+ "triggers": [
+ "tasteline"
+ ],
+ "regions": {
+ "default": "http://www.tasteline.com/ReceptSok/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tasvideos.org/css/.ico",
+ "name": "TASVideos",
+ "triggers": [
+ "tas"
+ ],
+ "regions": {
+ "default": "http://tasvideos.org/Search.html?key={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://tatoeba.org/favicon.ico?1530454637",
+ "name": "Tatoeba",
+ "triggers": [
+ "tatoeba",
+ "tatoebla"
+ ],
+ "regions": {
+ "default": "http://tatoeba.org/sentences/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tatoeba.org/favicon.ico?1530454637",
+ "name": "Tatoeba",
+ "triggers": [
+ "tato"
+ ],
+ "regions": {
+ "default": "https://tatoeba.org/sentences/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tatoeba.org/favicon.ico?1530454637",
+ "name": "Tatoeba to Italian",
+ "triggers": [
+ "ttb-ita"
+ ],
+ "regions": {
+ "default": "http://tatoeba.org/eng/sentences/search?query={{{term}}}&from=und&to=ita"
+ }
+ },
+ {
+ "favicon": "https://www.taydaelectronics.com/skin/frontend/default/tayda/favicon.ico",
+ "name": "Tayda Electronics",
+ "triggers": [
+ "tayda"
+ ],
+ "regions": {
+ "default": "http://www.taydaelectronics.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.taz.de/favicon-16x16.png",
+ "name": "taz.die tageszeitung",
+ "triggers": [
+ "taz"
+ ],
+ "regions": {
+ "default": "https://www.taz.de/!s={{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://store.tcgplayer.com/favicon.ico",
+ "name": "TCGPlayer",
+ "triggers": [
+ "tcgplayer"
+ ],
+ "regions": {
+ "default": "http://store.tcgplayer.com/magic/product/show?cardname={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shop.tcgplayer.com/favicon.ico",
+ "name": "TCGPlayer",
+ "triggers": [
+ "tcgp"
+ ],
+ "regions": {
+ "default": "http://shop.tcgplayer.com/productcatalog/product/show?newSearch=false&ProductType=All&IsProductNameExact=false&ProductName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media1.tchibo-content.de/st/5bc9828/freiheit/img/favicon.ico",
+ "name": "Tchibo",
+ "triggers": [
+ "tchi"
+ ],
+ "regions": {
+ "default": "https://www.tchibo.de/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.tcl.tk/favicon.ico",
+ "name": "TCLers Wiki",
+ "triggers": [
+ "tcl"
+ ],
+ "regions": {
+ "default": "https://wiki.tcl.tk/_/search?S={{{term}}}&_charset_=UTF-8"
+ }
+ },
+ {
+ "favicon": "http://www.tcodesearch.com/assets/favicon-b126ea331772ab453241b258205f77d559f50491e856ca6905dd89713959db3b.ico",
+ "name": "TCodeSearch",
+ "triggers": [
+ "tcode"
+ ],
+ "regions": {
+ "default": "http://www.tcodesearch.com/tcodes/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tcodesearch.com/assets/favicon-b126ea331772ab453241b258205f77d559f50491e856ca6905dd89713959db3b.ico",
+ "name": "Tcodesearch Tables",
+ "triggers": [
+ "saptable",
+ "saptables"
+ ],
+ "regions": {
+ "default": "http://www.tcodesearch.com/sap-tables/detail?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tdbank.com/assets-tdos/images/ui/favicon.ico",
+ "name": "TD Bank",
+ "triggers": [
+ "tdbank"
+ ],
+ "regions": {
+ "default": "https://www.tdbank.com/CustomerService/search-results.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tdcanadatrust.com/ca/en/personal-banking/system/v1.5/assets/img/favicon.ico",
+ "name": "TD Canada Trust",
+ "triggers": [
+ "tdcanada"
+ ],
+ "regions": {
+ "default": "https://www.tdcanadatrust.com/search/index.jsp?query={{{term}}}&language=en&site=td_tdct_tdcb_en"
+ }
+ },
+ {
+ "favicon": "http://118.dk/images/favicon.ico",
+ "name": "TDC 118",
+ "triggers": [
+ "118"
+ ],
+ "regions": {
+ "default": "http://118.dk/search/go?what={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.teacherspayteachers.com/tpt-frontend/releases/production/current/fbf2fa4d283a37a435dde24f48537e7d.ico",
+ "name": "Teachers Pay Teachers",
+ "triggers": [
+ "tpt"
+ ],
+ "regions": {
+ "default": "https://www.teacherspayteachers.com/Browse/Search:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.teacherslovedata.com/favicon.ico",
+ "name": "TeachersLoveData",
+ "triggers": [
+ "teacherslovedata"
+ ],
+ "regions": {
+ "default": "https://www.teacherslovedata.com/search?searchInput={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.teachingchannel.org/favicon.ico",
+ "name": "Teaching Channel",
+ "triggers": [
+ "tch"
+ ],
+ "regions": {
+ "default": "https://www.teachingchannel.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "Team Fortress 2 subreddit",
+ "triggers": [
+ "tf2r"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/tf2/search?q={{{term}}}&restrict_sr=on"
+ }
+ },
+ {
+ "favicon": "https://wiki.teamfortress.com/favicon.ico",
+ "name": "Team Fortress Official Wiki",
+ "triggers": [
+ "tf2wiki",
+ "tf2"
+ ],
+ "regions": {
+ "default": "https://wiki.teamfortress.com/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.teamliquid.net/favicon.png",
+ "name": "Team Liquid",
+ "triggers": [
+ "tl",
+ "teamliquid"
+ ],
+ "regions": {
+ "default": "http://www.teamliquid.net/forum/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.teamliquid.net/starcraft2/favicon.ico",
+ "name": "Team Liquid Wiki",
+ "triggers": [
+ "tlw"
+ ],
+ "regions": {
+ "default": "http://wiki.teamliquid.net/starcraft2/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.teamfortress.tv/img/tf/favicon.ico",
+ "name": "TeamFortress.tv",
+ "triggers": [
+ "tftv"
+ ],
+ "regions": {
+ "default": "http://www.teamfortress.tv/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.techfug.com/favicon.ico",
+ "name": "Tech Fug",
+ "triggers": [
+ "techfug"
+ ],
+ "regions": {
+ "default": "http://www.techfug.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.techinasia.com/assets/favicon.ico",
+ "name": "Tech in Asia",
+ "triggers": [
+ "tia"
+ ],
+ "regions": {
+ "default": "https://www.techinasia.com/search-results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://techjungle.pbworks.com/favicon.ico",
+ "name": "Tech Jungle",
+ "triggers": [
+ "techjungle"
+ ],
+ "regions": {
+ "default": "http://techjungle.pbworks.com/w/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tech-wd.com/favicon.ico",
+ "name": "tech-wd.com",
+ "triggers": [
+ "tech-wd"
+ ],
+ "regions": {
+ "default": "http://www.tech-wd.com/wd/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tech2days.com/favicon.ico",
+ "name": "Tech2days",
+ "triggers": [
+ "tech2days"
+ ],
+ "regions": {
+ "default": "http://tech2days.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.qualebs.com/favicon.ico",
+ "name": "Techbay",
+ "triggers": [
+ "qualebs"
+ ],
+ "regions": {
+ "default": "https://www.qualebs.com/techbay/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=192",
+ "name": "Techcrunch",
+ "triggers": [
+ "techcrunch",
+ "tc"
+ ],
+ "regions": {
+ "default": "http://techcrunch.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.techdirt.com/favicon.ico",
+ "name": "TechDirt",
+ "triggers": [
+ "techdirt"
+ ],
+ "regions": {
+ "default": "http://www.techdirt.com/search.php?site=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/d60c60b3d0e3b1dd401400a3789852c2?s=32",
+ "name": "TechGujarat",
+ "triggers": [
+ "gtu"
+ ],
+ "regions": {
+ "default": "https://techgujarat.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://techified-news.blogspot.com/favicon.ico",
+ "name": "Techified",
+ "triggers": [
+ "techified"
+ ],
+ "regions": {
+ "default": "https://techified-news.blogspot.co.uk/{{{term}}} uds-search-results"
+ }
+ },
+ {
+ "favicon": "https://www.redirect301.de/_icons/favicon-16x16.png",
+ "name": "Techkram.de",
+ "triggers": [
+ "techkram"
+ ],
+ "regions": {
+ "default": "http://techkram.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.technikdirekt.de/media/image/b7/0b/55/TD_Logo_favicon556858539df85.png",
+ "name": "TechnikDirekt",
+ "triggers": [
+ "technikdirekt"
+ ],
+ "regions": {
+ "default": "http://www.technikdirekt.de/search?sSearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.technobuffalo.com/wp-content/uploads/2018/06/cropped-technobuffalo-192x192.png",
+ "name": "TechnoBuffalo",
+ "triggers": [
+ "tbuff"
+ ],
+ "regions": {
+ "default": "http://www.technobuffalo.com/search-results/?cx=partner-pub-2551798495402703%3Ad3m0wbhqu0s&cof=FORID%3A10&ie=ISO-8859-1&q={{{term}}}&sa=Search&siteurl=www.technobuffalo.com%2F&ref=&ss=975j318069j4"
+ }
+ },
+ {
+ "favicon": "https://vanilla.futurecdn.net/techradar/20180626/favicon.ico",
+ "name": "TechRadar",
+ "triggers": [
+ "techradar"
+ ],
+ "regions": {
+ "default": "http://www.techradar.com/search?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://techrights.org/home/sites/default/files/favicon_0.ico",
+ "name": "TechRights",
+ "triggers": [
+ "techrights"
+ ],
+ "regions": {
+ "default": "http://techrights.org/wiki/index.php/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://s.glbimg.com/po/tt2/img/favicon.ico",
+ "name": "TechTudo",
+ "triggers": [
+ "techtudo"
+ ],
+ "regions": {
+ "default": "http://www.techtudo.com.br/busca/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://obj.ibxk.com.br/layout/tecmundo/favicon.ico",
+ "name": "Tecmundo",
+ "triggers": [
+ "tecmundo"
+ ],
+ "regions": {
+ "default": "https://www.tecmundo.com.br/busca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pa.tedcdn.com/favicon.ico",
+ "name": "TED",
+ "triggers": [
+ "ted"
+ ],
+ "regions": {
+ "default": "https://www.ted.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tedcurran.net/favicon.ico",
+ "name": "TedCurran.net",
+ "triggers": [
+ "tcnet"
+ ],
+ "regions": {
+ "default": "http://tedcurran.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tedi-shop.com/media/favicon/default/favicon.ico",
+ "name": "TEDi Onlineshop",
+ "triggers": [
+ "tedi"
+ ],
+ "regions": {
+ "default": "http://www.tedi-shop.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://teketen.com/favicon.ico",
+ "name": "Teketen",
+ "triggers": [
+ "teketen"
+ ],
+ "regions": {
+ "default": "http://teketen.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://www.teknikmagasinet.se/favicon.ico",
+ "name": "Teknikmagasinet",
+ "triggers": [
+ "tekmag"
+ ],
+ "regions": {
+ "default": "http://www.teknikmagasinet.se/sokresultat?CMS_SearchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tensorflow.org/_static/6d893b1b39/images/tensorflow/favicon.png",
+ "name": "TeknoFiyat",
+ "triggers": [
+ "tf"
+ ],
+ "regions": {
+ "default": "https://www.tensorflow.org/s/results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//teknosains.com/assets/images/touch-icon-ipad-retina-152x152.png?1504085931",
+ "name": "Teknosains",
+ "triggers": [
+ "tekno"
+ ],
+ "regions": {
+ "default": "http://teknosains.com/search?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://www.tekstowo.pl/favicon.ico",
+ "name": "Tekstowo",
+ "triggers": [
+ "tekstowo"
+ ],
+ "regions": {
+ "default": "http://www.tekstowo.pl/szukaj,wykonawca,{{{term}}} ,tytul,ijakkjbaimfag.html"
+ }
+ },
+ {
+ "favicon": "http://www.telefonterror.no/favicon-16x16.png",
+ "name": "Telefonterror",
+ "triggers": [
+ "telefonterror"
+ ],
+ "regions": {
+ "default": "http://www.telefonterror.no/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.telegraaf.nl/statics/favicon-16x16.31b70151bdb45de21a5dd47020147881.png",
+ "name": "Telegraaf",
+ "triggers": [
+ "telegraaf"
+ ],
+ "regions": {
+ "default": "http://www.telegraaf.nl/zoeken/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.telegraph.co.uk/etc/designs/telegraph/core/clientlibs/core/icons/favicon-152x152.png",
+ "name": "Telegraph",
+ "triggers": [
+ "telegraph"
+ ],
+ "regions": {
+ "default": "http://www.telegraph.co.uk/search/?queryText={{{term}}}&Search="
+ }
+ },
+ {
+ "favicon": "https://www.telemark-pyrenees.com/sites/default/files/favicon-96x96_0.png",
+ "name": "Telemark Pyrenees",
+ "triggers": [
+ "t-p"
+ ],
+ "regions": {
+ "default": "http://www.telemark-pyrenees.com/en/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.telkku.com/favicon.ico",
+ "name": "Telkku.com",
+ "triggers": [
+ "telkku"
+ ],
+ "regions": {
+ "default": "http://www.telkku.com/search?searchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.telsu.fi/icon.png",
+ "name": "Telsu.fi",
+ "triggers": [
+ "telsu"
+ ],
+ "regions": {
+ "default": "http://www.telsu.fi/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://te.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Telugu Wikipedia",
+ "triggers": [
+ "tewiki",
+ "wte"
+ ],
+ "regions": {
+ "default": "https://te.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tenki.jp/favicon.ico",
+ "name": "tenki.jp(日本気象協会/)",
+ "triggers": [
+ "tenkijp"
+ ],
+ "regions": {
+ "default": "http://www.tenki.jp/search/zip/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tennisabstract.com/favicon.ico",
+ "name": "Tennis abstract",
+ "triggers": [
+ "tena"
+ ],
+ "regions": {
+ "default": "http://www.tennisabstract.com/cgi-bin/player.cgi?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tenor.com/assets/img/favicon/favicon-32x32.png",
+ "name": "tenor",
+ "triggers": [
+ "tenor"
+ ],
+ "regions": {
+ "default": "https://tenor.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tensorflow.org/_static/6d893b1b39/images/tensorflow/favicon.png",
+ "name": "Tensorflow",
+ "triggers": [
+ "tflow"
+ ],
+ "regions": {
+ "default": "https://www.tensorflow.org/s/results/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://park.io/images/system-icons/favicon-16x16.png",
+ "name": "term.ly",
+ "triggers": [
+ "term"
+ ],
+ "regions": {
+ "default": "http://term.ly/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.termania.net/Content/Site/Images/favicon.ico",
+ "name": "Termania",
+ "triggers": [
+ "termania"
+ ],
+ "regions": {
+ "default": "http://www.termania.net/iskanje?query={{{term}}}&SearchIn=All"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/502812f9.ico",
+ "name": "Termium+",
+ "triggers": [
+ "t+",
+ "tref"
+ ],
+ "regions": {
+ "default": "http://www.thesaurus.com/browse/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tosdr.org/application_icon_x128.png",
+ "name": "Terms of Service; Didn't Read",
+ "triggers": [
+ "tosdr"
+ ],
+ "regions": {
+ "default": "https://tosdr.org/#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/terraria_gamepedia/6/64/Favicon.ico?version=9974882dd9307ed881b2782ff587be07",
+ "name": "Terraria Gamepedia Wiki",
+ "triggers": [
+ "terrg"
+ ],
+ "regions": {
+ "default": "http://terraria.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.terrysmall.com/favicon.ico",
+ "name": "Terry Small the Brain Guy",
+ "triggers": [
+ "terrysmall"
+ ],
+ "regions": {
+ "default": "http://www.terrysmall.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.testberichte.de/img-v3/de_DE/favicon.ico",
+ "name": "Tesberichte.de",
+ "triggers": [
+ "tbde"
+ ],
+ "regions": {
+ "default": "http://www.testberichte.de/d/search.php?searchstr={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.tesco.com/ce-assets/favicons/android-icon-192x192.png",
+ "name": "Tesco UK",
+ "triggers": [
+ "tesco"
+ ],
+ "regions": {
+ "default": "https://secure.tesco.com/groceries/product/search/default.aspx?searchBox={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.testberichte.de/img-v3/de_DE/favicon.ico",
+ "name": "Testberichte.de",
+ "triggers": [
+ "testberichte"
+ ],
+ "regions": {
+ "default": "http://www.testberichte.de/d/search.php?searchstr={{{term}}}&submit=Suchen"
+ }
+ },
+ {
+ "favicon": "http://infiltro.testoon.com/favicon.ico",
+ "name": "Testoon",
+ "triggers": [
+ "testoon"
+ ],
+ "regions": {
+ "default": "http://infiltro.testoon.com/product/?disableLayout=1&term={{{term}}}&rechercher.x=0&rechercher.y=0"
+ }
+ },
+ {
+ "favicon": "http://eur-lex.europa.eu/images/eurlex.ico",
+ "name": "TEU",
+ "triggers": [
+ "teu"
+ ],
+ "regions": {
+ "default": "http://eur-lex.europa.eu/search.html?wh0=DN%3D12012M*&lbStatus=ALL&qid=1459001887262&DTS_DOM=EU_LAW&ARTICLE_NUM={{{term}}}&treatyStatus=ARTICLE_NUMBER&type=advanced&lang=en&SUBDOM_INIT=TREATIES&legalCelex=TEU_2012&DTS_SUBDOM=TREATIES"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/tex/img/favicon.ico?v=9bda1236a05c",
+ "name": "TeX Stack Exchange",
+ "triggers": [
+ "tex",
+ "texse"
+ ],
+ "regions": {
+ "default": "http://tex.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.statutes.legis.state.tx.us/favicon.ico",
+ "name": "Texas Constitution and Statutes",
+ "triggers": [
+ "tcs"
+ ],
+ "regions": {
+ "default": "http://www.statutes.legis.state.tx.us/SearchResults.aspx?CP=1&Code=ZZ&Phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ti.com/favicon.ico",
+ "name": "Texas Instruments",
+ "triggers": [
+ "txi"
+ ],
+ "regions": {
+ "default": "https://www.ti.com/sitesearch/docs/universalsearch.tsp?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://texdoc.net/favicon.ico",
+ "name": "Texdoc",
+ "triggers": [
+ "texdoc"
+ ],
+ "regions": {
+ "default": "http://texdoc.net/pkg/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thinktutorial.com/wp-content/uploads/2018/01/cropped-ThinkTutorialLogo_WhiteBG-192x192.png",
+ "name": "Th!ink",
+ "triggers": [
+ "thinktutorial"
+ ],
+ "regions": {
+ "default": "http://thinktutorial.com/index.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thai-language.com/favicon.ico",
+ "name": "thai-language.com",
+ "triggers": [
+ "thai"
+ ],
+ "regions": {
+ "default": "http://www.thai-language.com/default.aspx?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thangkas.tictail.com/favicon.ico",
+ "name": "Thangkas of Nepal",
+ "triggers": [
+ "thangkas.tictail.com"
+ ],
+ "regions": {
+ "default": "http://thangkas.tictail.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--ieDuW5jP--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/no63bw902mddhwxtjtxh.png",
+ "name": "The A.V. Club",
+ "triggers": [
+ "avc"
+ ],
+ "regions": {
+ "default": "http://www.avclub.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.theage.com.au/favicons/theage.ico",
+ "name": "The Age",
+ "triggers": [
+ "theage"
+ ],
+ "regions": {
+ "default": "http://www.theage.com.au/execute_search.html?text={{{term}}}&ss=theage.com.au"
+ }
+ },
+ {
+ "favicon": "https://theanarchistlibrary.org/sitefiles/en/favicon.ico",
+ "name": "The Anarchist Library",
+ "triggers": [
+ "tal",
+ "anarchistlib"
+ ],
+ "regions": {
+ "default": "https://theanarchistlibrary.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.theatlantic.com/assets/static/a/theatlantic/common/img/favicon.ico",
+ "name": "The Atlantic",
+ "triggers": [
+ "theatlantic"
+ ],
+ "regions": {
+ "default": "https://www.theatlantic.com/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://s.wp.com/wp-content/themes/vip/newscorpau-nca/assets/dist/img/common/favicon/favicon.ico",
+ "name": "The Australian",
+ "triggers": [
+ "australian"
+ ],
+ "regions": {
+ "default": "http://search.news.com.au/search?us=ndmtheaustralian&as=TAUS&filter-site=TheAustralian&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://style.anu.edu.au/_anu/4/images/logos/anu.ico",
+ "name": "The Australian National University",
+ "triggers": [
+ "anu"
+ ],
+ "regions": {
+ "default": "http://find.anu.edu.au/search?filter=0&client=anu_frontend&proxystylesheet=anu_frontend&site=default_collection&btnG=Search&q={{{term}}}&search1=Go"
+ }
+ },
+ {
+ "favicon": "http://anu.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "The Australian National University Library",
+ "triggers": [
+ "anulib"
+ ],
+ "regions": {
+ "default": "http://anu.summon.serialssolutions.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://aynrandlexicon.com/favicon-32x32.png",
+ "name": "The Ayn Rand Lexicon",
+ "triggers": [
+ "arl"
+ ],
+ "regions": {
+ "default": "http://aynrandlexicon.com/searchresults/index.html?cx=013104633629966810561%3Ag5jt9ka8qre&cof=FORID%3A11&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/babylon5/images/6/64/Favicon.ico/revision/latest?cb=20091127102937",
+ "name": "The Babylon Project",
+ "triggers": [
+ "b5"
+ ],
+ "regions": {
+ "default": "http://babylon5.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/bigbangtheory/images/6/64/Favicon.ico/revision/latest?cb=20130405204616",
+ "name": "The Big Bang Theory Wiki",
+ "triggers": [
+ "tbbtwiki"
+ ],
+ "regions": {
+ "default": "http://bigbangtheory.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1#"
+ }
+ },
+ {
+ "favicon": "//www.bcdb.com/favicon.ico",
+ "name": "The Big Cartoon Database",
+ "triggers": [
+ "bcdb"
+ ],
+ "regions": {
+ "default": "http://www.bcdb.com/bcdb/search.cgi?query={{{term}}}&amp;bool=and&amp;substring=1"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/bindingofisaacre_gamepedia/6/64/Favicon.ico?version=3146cb0dba11aaff449c1dafc536dfce",
+ "name": "The Binding of Isaac Rebirth Wiki",
+ "triggers": [
+ "isaac"
+ ],
+ "regions": {
+ "default": "http://bindingofisaacrebirth.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theblaze.com/wp-content/themes/theblaze/images/favicons/favicon.ico",
+ "name": "The Blaze",
+ "triggers": [
+ "blaze",
+ "theblaze"
+ ],
+ "regions": {
+ "default": "http://www.theblaze.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thebluealliance.com/icons/favicon.ico",
+ "name": "The Blue Alliance",
+ "triggers": [
+ "tba"
+ ],
+ "regions": {
+ "default": "https://www.thebluealliance.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ogvdx946i4sr.cloudfront.net/favicon-rebranded.ico",
+ "name": "The Book Depository",
+ "triggers": [
+ "bookdepository"
+ ],
+ "regions": {
+ "default": "https://www.bookdepository.co.uk/search?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ogvdx946i4sr.cloudfront.net/favicon-rebranded.ico",
+ "name": "The Book Depository",
+ "triggers": [
+ "tbd"
+ ],
+ "regions": {
+ "default": "https://www.bookdepository.com/search?searchTerm={{{term}}}&search=Find+book"
+ }
+ },
+ {
+ "favicon": "http://www.thebrick.com/Content/Brick/Images/Icons/favicon.ico",
+ "name": "The Brick",
+ "triggers": [
+ "thebrick"
+ ],
+ "regions": {
+ "default": "http://www.thebrick.com/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://explore.bl.uk/primo_library/libweb/images/favicon.ico",
+ "name": "The British Library Catalogue",
+ "triggers": [
+ "bluk"
+ ],
+ "regions": {
+ "default": "http://explore.bl.uk/primo_library/libweb/action/search.do?fn=search&vl(freeText0)={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://noname.c64.org/favicon.ico",
+ "name": "The C64 Scene Database",
+ "triggers": [
+ "csdb"
+ ],
+ "regions": {
+ "default": "http://noname.c64.org/csdb/search/?seinsel=all&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cddawiki.chezzo.com/favicon.ico",
+ "name": "The Cataclysm: Dark Days Ahead Wiki",
+ "triggers": [
+ "cdda"
+ ],
+ "regions": {
+ "default": "http://cddawiki.chezzo.com/cdda_wiki/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/charmed/images/6/64/Favicon.ico/revision/latest?cb=20141219002254",
+ "name": "The Charmed Wikia",
+ "triggers": [
+ "charmed"
+ ],
+ "regions": {
+ "default": "http://charmed.wikia.com/wiki/Special:Search?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.thecheckeredflag.co.uk/wp-content/uploads/2016/02/cropped-TCF-200x200.png",
+ "name": "The Checkered Flag",
+ "triggers": [
+ "thecheckeredflag"
+ ],
+ "regions": {
+ "default": "http://www.thecheckeredflag.co.uk/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.chicagotribune.com/favicon.ico",
+ "name": "The Chicago Tribune",
+ "triggers": [
+ "chicagotribune"
+ ],
+ "regions": {
+ "default": "http://www.chicagotribune.com/search/dispatcher.front?Query={{{term}}}&sortby=display_time+descending&subheader-search-button=Go&target=article"
+ }
+ },
+ {
+ "favicon": "https://collections.artsmia.org/favicon.ico",
+ "name": "The Collection at the Minneapois Insitute of Arts",
+ "triggers": [
+ "artsmia"
+ ],
+ "regions": {
+ "default": "https://collections.artsmia.org/index.php?page=search#query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pcdn.columbian.com/wp-content/themes/columbian/static/img/layout/favicons/favicon-96x96.png",
+ "name": "The Columbian",
+ "triggers": [
+ "thecolumbian"
+ ],
+ "regions": {
+ "default": "http://www.columbian.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://complexityzoo.uwaterloo.ca/favicon.ico",
+ "name": "The Complexity Zoo",
+ "triggers": [
+ "cz"
+ ],
+ "regions": {
+ "default": "https://complexityzoo.uwaterloo.ca/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://conservativepapers.com/favicon.ico",
+ "name": "The Conservative Papers",
+ "triggers": [
+ "tcp"
+ ],
+ "regions": {
+ "default": "http://conservativepapers.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://coppermind.net/favicon.ico",
+ "name": "The Coppermind",
+ "triggers": [
+ "coppermind"
+ ],
+ "regions": {
+ "default": "http://coppermind.net/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.thecrag.com/cids/images/favicon-1.1.1.ico",
+ "name": "The Crag",
+ "triggers": [
+ "thecrag"
+ ],
+ "regions": {
+ "default": "https://www.thecrag.com/nodes/fuzzy-search/{{{term}}}?S=cbdbcf&ST=w"
+ }
+ },
+ {
+ "favicon": "http://tcrf.net/images/c/c4/SMB2-smiley.png",
+ "name": "The Cutting Room Floor",
+ "triggers": [
+ "tcrf"
+ ],
+ "regions": {
+ "default": "http://tcrf.net/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.collegian.psu.edu/content/tncms/site/icon.ico",
+ "name": "The Daily Collegian",
+ "triggers": [
+ "dailycollegian",
+ "psudc"
+ ],
+ "regions": {
+ "default": "http://www.collegian.psu.edu/search/?f=html&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.dailyuw.com/content/tncms/site/icon.ico",
+ "name": "The Daily of the University of Washington",
+ "triggers": [
+ "uwd"
+ ],
+ "regions": {
+ "default": "http://www.dailyuw.com/search/?t=article&nsa=eedition&q=&x=17&y=23{{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/tardis/images/6/64/Favicon.ico/revision/latest?cb=20140127221612",
+ "name": "The Doctor Who Wiki",
+ "triggers": [
+ "dww"
+ ],
+ "regions": {
+ "default": "http://tardis.wikia.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.economist.com/sites/default/files/econfinal_favicon.ico",
+ "name": "The Economist",
+ "triggers": [
+ "economist"
+ ],
+ "regions": {
+ "default": "http://www.economist.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/elderscrolls/images/6/64/Favicon.ico/revision/latest?cb=20110829170229",
+ "name": "The Elder Scrolls WIki",
+ "triggers": [
+ "teswiki"
+ ],
+ "regions": {
+ "default": "http://elderscrolls.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.glyphweb.com/favicon.ico",
+ "name": "The Encyclopedia of ARDA",
+ "triggers": [
+ "arda"
+ ],
+ "regions": {
+ "default": "http://www.glyphweb.com/arda/search.asp?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.theeuropeanlibrary.org/tel4/img/favicon.png",
+ "name": "The European library",
+ "triggers": [
+ "eurolib",
+ "el"
+ ],
+ "regions": {
+ "default": "http://www.theeuropeanlibrary.org/tel4/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://images.fashionmodeldirectory.com/templates/v5/favicon.png",
+ "name": "The Fashion Model Directory",
+ "triggers": [
+ "fmd",
+ "fashionmodeldirectory"
+ ],
+ "regions": {
+ "default": "http://www.fashionmodeldirectory.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/thefifthcity/images/6/64/Favicon.ico/revision/latest?cb=20150829225114",
+ "name": "The Fifth City: Fallen London Lore Wikia",
+ "triggers": [
+ "fifthcity"
+ ],
+ "regions": {
+ "default": "http://thefifthcity.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary",
+ "triggers": [
+ "thefreedictionary",
+ "def",
+ "define",
+ "tfd",
+ "d",
+ "dictionary"
+ ],
+ "regions": {
+ "default": "https://www.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary",
+ "triggers": [
+ "idioms"
+ ],
+ "regions": {
+ "default": "https://www.thefreedictionary.com/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Acronyms)",
+ "triggers": [
+ "tfdacronyms"
+ ],
+ "regions": {
+ "default": "https://acronyms.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Encyclopedia)",
+ "triggers": [
+ "tfdencyclopedia"
+ ],
+ "regions": {
+ "default": "https://encyclopedia2.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Financial Dictionary)",
+ "triggers": [
+ "tfdfinancial"
+ ],
+ "regions": {
+ "default": "https://financial-dictionary.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Legal Dictionary)",
+ "triggers": [
+ "tfdlegal"
+ ],
+ "regions": {
+ "default": "https://legal-dictionary.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Medical Dictionary)",
+ "triggers": [
+ "tfdmedical",
+ "medical"
+ ],
+ "regions": {
+ "default": "https://medical-dictionary.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary (Thesaurus)",
+ "triggers": [
+ "freethesaurus"
+ ],
+ "regions": {
+ "default": "http://www.freethesaurus.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary DE",
+ "triggers": [
+ "tfdde"
+ ],
+ "regions": {
+ "default": "https://de.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Free Dictionary Deutsch (German)",
+ "triggers": [
+ "detfd"
+ ],
+ "regions": {
+ "default": "https://de.tfd.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The free dictionary ES",
+ "triggers": [
+ "des"
+ ],
+ "regions": {
+ "default": "https://es.thefreedictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.thefullwiki.org/images/favicon.ico",
+ "name": "The Full Wiki",
+ "triggers": [
+ "fullwiki",
+ "thefullwiki"
+ ],
+ "regions": {
+ "default": "http://search.thefullwiki.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thefutoncritic.com/images/favicon.ico",
+ "name": "The Futon Critic",
+ "triggers": [
+ "thefutoncritic"
+ ],
+ "regions": {
+ "default": "http://www.thefutoncritic.com/search.aspx?q={{{term}}}&type=titles"
+ }
+ },
+ {
+ "favicon": "http://thegadgetflow.com/favicon-128.png",
+ "name": "The Gadget Flow",
+ "triggers": [
+ "gadgetflow"
+ ],
+ "regions": {
+ "default": "http://thegadgetflow.com/?s={{{term}}}&submit=Search"
+ }
+ },
+ {
+ "favicon": "http://thegamingbox.pfweb.eu/favicon.ico",
+ "name": "The Gamingbox",
+ "triggers": [
+ "gamingbox"
+ ],
+ "regions": {
+ "default": "http://thegamingbox.pfweb.eu/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.gwu.edu/images/favicon.ico",
+ "name": "The George Washington University",
+ "triggers": [
+ "gwu"
+ ],
+ "regions": {
+ "default": "https://search.gwu.edu/search?site=gw_main_VCM&client=gw_main_VCM&proxystylesheet=phase2fe&output=xml_no_dtd&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.globalnewlightofmyanmar.com/wp-content/uploads/2014/08/favicon1.ico",
+ "name": "The Global New Light of Myanmar",
+ "triggers": [
+ "gnlm"
+ ],
+ "regions": {
+ "default": "http://globalnewlightofmyanmar.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theglobeandmail.com/resources/assets/meta/favicon.ico",
+ "name": "The Globe and Mail",
+ "triggers": [
+ "glmail"
+ ],
+ "regions": {
+ "default": "https://www.theglobeandmail.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://the-ptg.blogspot.com/favicon.ico",
+ "name": "The Great Blog",
+ "triggers": [
+ "ptg"
+ ],
+ "regions": {
+ "default": "https://the-ptg.blogspot.in/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thegreatcourses.com/media/favicon/default/favicon-2x.1396639987.png",
+ "name": "The Great Courses",
+ "triggers": [
+ "tgc"
+ ],
+ "regions": {
+ "default": "http://www.thegreatcourses.com/search/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.guim.co.uk/images/favicons/48bc5564bb01b74cf7cd1a08ae0dd98e/32x32.ico",
+ "name": "The Guardian",
+ "triggers": [
+ "guardian"
+ ],
+ "regions": {
+ "default": "http://www.theguardian.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hermetic.com/_media/wiki/favicon.ico",
+ "name": "The Hermetic Library",
+ "triggers": [
+ "93"
+ ],
+ "regions": {
+ "default": "https://hermetic.com/index?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thehimalayantimes.com/favicon.ico",
+ "name": "The Himalayan Times",
+ "triggers": [
+ "thehimalayantimes"
+ ],
+ "regions": {
+ "default": "https://thehimalayantimes.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thehindu.com/thfavicon.ico",
+ "name": "The Hindu",
+ "triggers": [
+ "hindu"
+ ],
+ "regions": {
+ "default": "http://www.thehindu.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hobby-machinist.com/favicon.ico",
+ "name": "The Hobby Machinist",
+ "triggers": [
+ "hobby-machinist"
+ ],
+ "regions": {
+ "default": "http://www.hobby-machinist.com//?={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hollywoodreporter.com/favicon.ico",
+ "name": "The Hollywood Reporter",
+ "triggers": [
+ "hwd"
+ ],
+ "regions": {
+ "default": "https://www.hollywoodreporter.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://s.m.huffpost.com/assets/favicon-2020e123c064086aad150fe909c53771f862d7c76cd62f6146e81d533845fd7d.ico",
+ "name": "The Huffington Post",
+ "triggers": [
+ "thp"
+ ],
+ "regions": {
+ "default": "http://www.huffingtonpost.com/search.php/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/humble/images/6/64/Favicon.ico/revision/latest?cb=20151202230105",
+ "name": "The Humble Wiki",
+ "triggers": [
+ "humblewiki"
+ ],
+ "regions": {
+ "default": "http://humble.wikia.com/w/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.hydrogenaud.io/forums/favicon.ico",
+ "name": "The Hydrogenaudio Knowledgebase",
+ "triggers": [
+ "hak"
+ ],
+ "regions": {
+ "default": "http://wiki.hydrogenaudio.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://static.hypem.com/favicon.png",
+ "name": "The Hype Machine",
+ "triggers": [
+ "hypem"
+ ],
+ "regions": {
+ "default": "http://hypem.com/#!/search/{{{term}}}/1/"
+ }
+ },
+ {
+ "favicon": "https://img.tfd.com/favicon.ico",
+ "name": "The Hypertext d20 SRD",
+ "triggers": [
+ "d&d"
+ ],
+ "regions": {
+ "default": "https://www.thefreedictionary.com/"
+ }
+ },
+ {
+ "favicon": "http://www.d20srd.org/favicon.ico",
+ "name": "The Hypertext d20 SRD",
+ "triggers": [
+ "d20srd",
+ "srd",
+ "d20"
+ ],
+ "regions": {
+ "default": "http://www.d20srd.org/search.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/idolmaster/images/6/64/Favicon.ico/revision/latest?cb=20171227024905",
+ "name": "THE IDOLM@STER Wiki",
+ "triggers": [
+ "idolmawiki"
+ ],
+ "regions": {
+ "default": "http://idolmaster.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.ietf.org/lib/dt/6.81.3/ietf/images/ietf-icon-blue3.png",
+ "name": "The IETF",
+ "triggers": [
+ "ietf"
+ ],
+ "regions": {
+ "default": "https://datatracker.ietf.org/doc/search/?name={{{term}}}&activeDrafts=on&rfcs=on"
+ }
+ },
+ {
+ "favicon": "http://www.independent.co.uk/sites/all/themes/ines_themes/independent_theme/favicon.ico",
+ "name": "The Independent",
+ "triggers": [
+ "independent"
+ ],
+ "regions": {
+ "default": "https://www.independent.co.uk/search/simple.do?destinationSectionUniqueName=search&publicationName=ind&searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://theinfosphere.org/favicon.ico",
+ "name": "The Infosphere",
+ "triggers": [
+ "infosphere"
+ ],
+ "regions": {
+ "default": "https://theinfosphere.org/index.php?search={{{term}}}&go=Go&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://theinfosphere.org/favicon.ico",
+ "name": "The Infosphere",
+ "triggers": [
+ "futurama"
+ ],
+ "regions": {
+ "default": "https://www.theinfosphere.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn01.theintercept.com/static/favicon.ico",
+ "name": "The Intercept",
+ "triggers": [
+ "intercept"
+ ],
+ "regions": {
+ "default": "https://theintercept.com/search/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theiphonewiki.com/favicon.ico",
+ "name": "The iPhone Wiki",
+ "triggers": [
+ "iwiki"
+ ],
+ "regions": {
+ "default": "https://www.theiphonewiki.com/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.jazzguitar.be/forum/images/fav.ico",
+ "name": "The Jazz Guitar Forum",
+ "triggers": [
+ "jgf"
+ ],
+ "regions": {
+ "default": "http://www.jazzguitar.be/forum/search.php?searchid={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.aeaweb.org/favicon.ico",
+ "name": "The Journal of Economic Perspectives",
+ "triggers": [
+ "jep"
+ ],
+ "regions": {
+ "default": "https://www.aeaweb.org/journals/jep/search-results?within%5Btitle%5D=on&within%5Babstract%5D=on&within%5Bauthor%5D=on&journal=3&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kol.coldfront.net/favicon.ico",
+ "name": "The KoL Wiki",
+ "triggers": [
+ "kolwiki"
+ ],
+ "regions": {
+ "default": "http://kol.coldfront.net/thekolwiki/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://theladiesfinger.com/wp-content/uploads/2016/04/12105847_1114127558609804_458499629798445464_n.jpg",
+ "name": "The Ladies Finger",
+ "triggers": [
+ "tlf"
+ ],
+ "regions": {
+ "default": "http://theladiesfinger.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/0050/3522/t/41/assets/favicon.png?217487677750650554",
+ "name": "The Last Hunt",
+ "triggers": [
+ "tlh"
+ ],
+ "regions": {
+ "default": "https://thelasthunt.com/search?type=product&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://lndb.info/android-icon.png",
+ "name": "The Light Novel Database",
+ "triggers": [
+ "lndb"
+ ],
+ "regions": {
+ "default": "http://lndb.info/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//thelogicalindian.com/wp-content/uploads/2016/12/cropped-TLIlogo.jpg",
+ "name": "The Logical Indian",
+ "triggers": [
+ "tli"
+ ],
+ "regions": {
+ "default": "http://thelogicalindian.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.lrb.co.uk/assets/images/favicon.1520004631.ico",
+ "name": "The London Review of Books",
+ "triggers": [
+ "lrb"
+ ],
+ "regions": {
+ "default": "http://www.lrb.co.uk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://mmlafleur.com/favicon.ico",
+ "name": "The M Dash",
+ "triggers": [
+ "mdash"
+ ],
+ "regions": {
+ "default": "https://mmlafleur.com/mdash/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.macobserver.com/wp-content/themes/observer/assets/images/icons/favicon.ico?x47654",
+ "name": "The Mac Observer",
+ "triggers": [
+ "macobserver"
+ ],
+ "regions": {
+ "default": "https://www.macobserver.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.the-mag.me.uk/favicon.ico",
+ "name": "The Mag",
+ "triggers": [
+ "themag"
+ ],
+ "regions": {
+ "default": "http://www.the-mag.me.uk/Music/Search/Term/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://mvnrepository.com/assets/images/7080b8b0f6f48e6fbaffd5f9d85fcc7f-favicon.ico",
+ "name": "The Maven Repository",
+ "triggers": [
+ "mvnrep"
+ ],
+ "regions": {
+ "default": "http://mvnrepository.com/search.html?query={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://modarchive.org/favicon.ico?v=3",
+ "name": "The Mod Archive",
+ "triggers": [
+ "modarchive"
+ ],
+ "regions": {
+ "default": "https://modarchive.org/index.php?request=search&query={{{term}}}&submit=Find&search_type=filename_or_songtitle"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/monsterhunter/images/6/64/Favicon.ico/revision/latest?cb=20100215221619",
+ "name": "The Monster Hunter Wiki",
+ "triggers": [
+ "mh"
+ ],
+ "regions": {
+ "default": "http://monsterhunter.wikia.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/monsterhunter/images/6/64/Favicon.ico/revision/latest?cb=20100215221619",
+ "name": "The Monster Hunter Wiki",
+ "triggers": [
+ "mhwiki"
+ ],
+ "regions": {
+ "default": "http://monsterhunter.wikia.com/wiki/index.php?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.moshville.co.uk/wordpress/wp-content/uploads/2014/10/MoshvilleTimesLogoBig1-54517853_site_icon-192x192.png",
+ "name": "The Moshville Times",
+ "triggers": [
+ "moshville"
+ ],
+ "regions": {
+ "default": "http://www.moshville.co.uk//?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mrqe.com/images/mrqe/favicon.ico",
+ "name": "the Movie Review Query Engine",
+ "triggers": [
+ "mrqe"
+ ],
+ "regions": {
+ "default": "http://www.mrqe.com/search?utf8=%E2%9C%93&q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.mldb.org/favicon.ico",
+ "name": "The Music Lyrics Database",
+ "triggers": [
+ "mldb"
+ ],
+ "regions": {
+ "default": "http://www.mldb.org/search?mq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.nytimes.com/favicon.ico",
+ "name": "New York Times",
+ "triggers": [
+ "nyt",
+ "nytimes",
+ "newyorktimes"
+ ],
+ "regions": {
+ "default": "http://query.nytimes.com/search/sitesearch/#/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.newyorker.com/favicon.ico",
+ "name": "The New Yorker",
+ "triggers": [
+ "newyorker"
+ ],
+ "regions": {
+ "default": "https://www.newyorker.com/search/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn0.tnwcdn.com/wp-content/themes/cyberdelia/assets/icons/favicon.png?v=1530626999",
+ "name": "The Next Web",
+ "triggers": [
+ "tnw"
+ ],
+ "regions": {
+ "default": "https://thenextweb.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://quran.com/favicon.ico",
+ "name": "The Noble Qur'an",
+ "triggers": [
+ "qur",
+ "quran"
+ ],
+ "regions": {
+ "default": "https://quran.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.production.thenounproject.com/img/favicons/favicon-16x16.0b6183ac3673.png",
+ "name": "The Noun Project",
+ "triggers": [
+ "nounproject",
+ "np"
+ ],
+ "regions": {
+ "default": "http://thenounproject.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.production.thenounproject.com/img/favicons/favicon-16x16.0b6183ac3673.png",
+ "name": "The Noun Project",
+ "triggers": [
+ "noun",
+ "thenoun"
+ ],
+ "regions": {
+ "default": "https://thenounproject.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.almanac.com/favicon.ico",
+ "name": "The Old Farmer's Almanac",
+ "triggers": [
+ "almanac"
+ ],
+ "regions": {
+ "default": "http://www.almanac.com/store/product-search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.runescape.com/img/global/favicon.ico?1",
+ "name": "The Old School Runescape Grand Exchange",
+ "triggers": [
+ "osrsge"
+ ],
+ "regions": {
+ "default": "http://services.runescape.com/m=itemdb_oldschool/results?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://oeis.org/favicon.ico",
+ "name": "The On-Line Encyclopedia of Integer Sequences",
+ "triggers": [
+ "oeis"
+ ],
+ "regions": {
+ "default": "https://oeis.org/search?q={{{term}}}&language=english&go=Search"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--4Aggfcp6--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/eti2h1r4wg0bqxctxenl.png",
+ "name": "The Onion",
+ "triggers": [
+ "onion"
+ ],
+ "regions": {
+ "default": "http://www.theonion.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.kinja-img.com/gawker-media/image/upload/s--4Aggfcp6--/c_fill,fl_progressive,g_center,h_80,q_80,w_80/eti2h1r4wg0bqxctxenl.png",
+ "name": "The Onion",
+ "triggers": [
+ "theonion"
+ ],
+ "regions": {
+ "default": "http://www.theonion.com/search/?q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://oeis.org/favicon.ico",
+ "name": "The Online Encyclopedia Of Integer Sequences",
+ "triggers": [
+ "seq"
+ ],
+ "regions": {
+ "default": "https://oeis.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://onlineslangdictionary.com/favicon.ico",
+ "name": "The Online Slang Dictionary",
+ "triggers": [
+ "slang"
+ ],
+ "regions": {
+ "default": "http://onlineslangdictionary.com/definition+of/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://encyclopedia.jcorp-us.com/favicon.ico",
+ "name": "The Open Encyclopedia",
+ "triggers": [
+ "openencyclopedia"
+ ],
+ "regions": {
+ "default": "http://encyclopedia.jcorp-us.com/open/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pubs.opengroup.org/favicon.ico",
+ "name": "The Open Group",
+ "triggers": [
+ "posix"
+ ],
+ "regions": {
+ "default": "http://pubs.opengroup.org/cgi/kman4.cgi?value={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s1.wp.com/i/favicon.ico",
+ "name": "The Open Source Vulnerability Database",
+ "triggers": [
+ "osvdb"
+ ],
+ "regions": {
+ "default": "http://osvdb.org/search?search[vuln_title]={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://theparadigmshiftgroup.com/favicon.ico",
+ "name": "The Paradigm Shift Group",
+ "triggers": [
+ "tpsg",
+ "tps"
+ ],
+ "regions": {
+ "default": "https://theparadigmshiftgroup.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.theparisreview.org/images/favicons/favicon-16x16.png",
+ "name": "The Paris Review",
+ "triggers": [
+ "parisreview"
+ ],
+ "regions": {
+ "default": "http://www.theparisreview.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.psu.edu/profiles/psu_profile/themes/psu_main/favicon.ico",
+ "name": "The Pennsylvania State University",
+ "triggers": [
+ "psu"
+ ],
+ "regions": {
+ "default": "http://www.psu.edu/search/gss?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://folkets-lexikon.csc.kth.se/favicon.ico",
+ "name": "The People's Dictionary",
+ "triggers": [
+ "pd"
+ ],
+ "regions": {
+ "default": "http://folkets-lexikon.csc.kth.se/folkets/folkets.en.html#lookup&{{{term}}}&0"
+ }
+ },
+ {
+ "favicon": "//media.philly.com/designimages/favicon-32x32.png",
+ "name": "The Philadelphia Inquirer",
+ "triggers": [
+ "pi"
+ ],
+ "regions": {
+ "default": "http://search.philly.com/search?search=y&proxystylesheet=philly&getfields=*&sort=date%3AD%3AL%3Ad1&tlen=2048&num=20&entqr=3&entsp=a&oe=UTF-8&ie=UTF-8&ud=1&q={{{term}}}&Submit="
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpball"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/0"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpbvideo"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/200"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpb"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/0/0"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpbapps"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/300"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpbother"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/600"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpbgames"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/400"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "pir"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay",
+ "triggers": [
+ "tpbaudio"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/100"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay (sorted by seeds)",
+ "triggers": [
+ "tpbs"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/7/0"
+ }
+ },
+ {
+ "favicon": "https://thepiratebay.org/favicon.ico",
+ "name": "The Pirate Bay E-book search",
+ "triggers": [
+ "tpbe"
+ ],
+ "regions": {
+ "default": "https://thepiratebay.org/search/{{{term}}}/0/99/601"
+ }
+ },
+ {
+ "favicon": "https://pirateproxy.sx/favicon.ico",
+ "name": "The Pirate Proxy",
+ "triggers": [
+ "tpbproxy"
+ ],
+ "regions": {
+ "default": "https://pirateproxy.sx/search/{{{term}}}/0/99/0"
+ }
+ },
+ {
+ "favicon": "https://thepluginpeople.atlassian.net/s/4dl21t/b/6/d002e1fc4dc49e23fceac6a225d9f4a9/_/favicon-family.ico",
+ "name": "The Plugin People Wiki",
+ "triggers": [
+ "pplwiki"
+ ],
+ "regions": {
+ "default": "https://thepluginpeople.atlassian.net/wiki/dosearchsite.action?queryString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.poetryfoundation.org/assets/media/images/favicon-16x16.png?v=1.2.4",
+ "name": "The Poetry Foundation",
+ "triggers": [
+ "poetry"
+ ],
+ "regions": {
+ "default": "http://www.poetryfoundation.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.poetryfoundation.org/assets/media/images/favicon-16x16.png?v=1.2.4",
+ "name": "The Poetry Foundation",
+ "triggers": [
+ "poems"
+ ],
+ "regions": {
+ "default": "https://www.poetryfoundation.org/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.portablefreeware.com/images/favicon.png",
+ "name": "The Portable Freeware Collection",
+ "triggers": [
+ "portablefreeware",
+ "pfwc",
+ "pfw"
+ ],
+ "regions": {
+ "default": "http://www.portablefreeware.com/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.prdl.org/favicon.ico",
+ "name": "The Post-Reformation Digital Library",
+ "triggers": [
+ "prdl"
+ ],
+ "regions": {
+ "default": "http://www.prdl.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pragprog.com/favicon.png",
+ "name": "The Pragmatic Bookshelf",
+ "triggers": [
+ "pragprog"
+ ],
+ "regions": {
+ "default": "https://pragprog.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://therealnews.com/wp-content/uploads/2018/05/cropped-trnnIcon-192x192.jpg",
+ "name": "The Real News",
+ "triggers": [
+ "trn"
+ ],
+ "regions": {
+ "default": "http://therealnews.com/t2/index.php?option=com_content&task=view&id=850&Itemid=851&search.x=0&search.y=0&jumival={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://trstriathlon.com/wp-content/uploads/2016/02/cropped-TRS_square_notext-500px-192x192.png",
+ "name": "The Real Starky",
+ "triggers": [
+ "trs"
+ ],
+ "regions": {
+ "default": "http://trstriathlon.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://search.theregister.co.uk/favicon.ico",
+ "name": "The Register",
+ "triggers": [
+ "register",
+ "theregister"
+ ],
+ "regions": {
+ "default": "https://search.theregister.co.uk/?q={{{term}}}&advanced=1&author=&date=the+dawn+of+time&site=all+The+Register+sites&results_per_page=100"
+ }
+ },
+ {
+ "favicon": "https://search.theregister.co.uk/favicon.ico",
+ "name": "The Register",
+ "triggers": [
+ "elreg"
+ ],
+ "regions": {
+ "default": "https://search.theregister.co.uk/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/revengeristsconsortium/images/6/64/Favicon.ico/revision/latest?cb=20121218080732",
+ "name": "The Revengerists Consortium of Stuff",
+ "triggers": [
+ "revengerists"
+ ],
+ "regions": {
+ "default": "http://revengerists.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://theringlord.com/favicon.ico",
+ "name": "The Ring Lord",
+ "triggers": [
+ "trl"
+ ],
+ "regions": {
+ "default": "http://theringlord.com/cart/shopdisplayproducts.asp?Search=Yes&Keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ruby-toolbox.com/favicon.ico",
+ "name": "The Ruby Toolbox",
+ "triggers": [
+ "rbtb"
+ ],
+ "regions": {
+ "default": "https://www.ruby-toolbox.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.runescape.com/img/global/favicon.ico?1",
+ "name": "The RuneScape Grand Exchange",
+ "triggers": [
+ "rsge"
+ ],
+ "regions": {
+ "default": "http://services.runescape.com/m=itemdb_rs/results?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thesartorialist.com/favicon.ico",
+ "name": "The Sartorialist",
+ "triggers": [
+ "thesartorialist.com"
+ ],
+ "regions": {
+ "default": "http://www.thesartorialist.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thesciencedictionary.org/favicon.ico",
+ "name": "The Science Dictionary",
+ "triggers": [
+ "scidict"
+ ],
+ "regions": {
+ "default": "http://thesciencedictionary.org/search2/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://seattle.bibliocommons.com/images/WA-SEATTLE/favicon.ico",
+ "name": "The Seattle Public Library",
+ "triggers": [
+ "spl"
+ ],
+ "regions": {
+ "default": "https://seattle.bibliocommons.com/search?utf8=%E2%9C%93&t=smart&search_category=keyword&commit=Search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thesession.org/favicon.ico",
+ "name": "The Session",
+ "triggers": [
+ "session"
+ ],
+ "regions": {
+ "default": "https://thesession.org/search?where=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thesession.org/favicon.ico",
+ "name": "The Session",
+ "triggers": [
+ "thesession"
+ ],
+ "regions": {
+ "default": "https://thesession.org/tunes/search?type=&mode=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theshoppingchannel.com/TSC/en_CA/Assets/images/favicon.ico",
+ "name": "The Shopping Channel",
+ "triggers": [
+ "tsc"
+ ],
+ "regions": {
+ "default": "https://www.theshoppingchannel.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thesinglesjukebox.com/wp-content/uploads/2016/05/cropped-TSJ-logo-192x192.jpg",
+ "name": "The Singles Jukebox",
+ "triggers": [
+ "tsj"
+ ],
+ "regions": {
+ "default": "http://www.thesinglesjukebox.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thesource.ca/_ui/desktop/theme-ts/images/favicon.ico",
+ "name": "The Source",
+ "triggers": [
+ "thesource"
+ ],
+ "regions": {
+ "default": "http://www.thesource.ca/en-ca/search/?text={{{term}}}&search_submit="
+ }
+ },
+ {
+ "favicon": "https://www.splcenter.org/profiles/splc/themes/custom/splc/images/favicon.ico",
+ "name": "The Southern Poverty Law Center",
+ "triggers": [
+ "splc"
+ ],
+ "regions": {
+ "default": "https://www.splcenter.org/resources?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spaghetti-western.net/favicon-96x96.png",
+ "name": "The Spaghetti Western Database",
+ "triggers": [
+ "swdb"
+ ],
+ "regions": {
+ "default": "http://www.spaghetti-western.net/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://usa.spectator.co.uk/content/themes/spectator-new/assets/favicons/favicon-16x16.png",
+ "name": "The Spectator",
+ "triggers": [
+ "speccie"
+ ],
+ "regions": {
+ "default": "https://www.spectator.co.uk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://forum.spore.com/favicon.ico",
+ "name": "The Sporum",
+ "triggers": [
+ "sporum"
+ ],
+ "regions": {
+ "default": "http://forum.spore.com/jforum/jforum.page?module=search&action=search&search_keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thestar.com/favicon.ico",
+ "name": "The Star",
+ "triggers": [
+ "thestar"
+ ],
+ "regions": {
+ "default": "https://www.thestar.com/searchresults?AssetType=article&stype=genSearch&q={{{term}}}&r=all:1"
+ }
+ },
+ {
+ "favicon": "https://static.thestudentroom.co.uk/5b2a281b6df59/forum/images/miscellaneous/favicon_192.png",
+ "name": "The Student Room",
+ "triggers": [
+ "tsr"
+ ],
+ "regions": {
+ "default": "https://www.thestudentroom.co.uk/search/?tsr-search-query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.thewirecutter.com/wp-content/themes/yeti/assets/img/favicon-16x16.png",
+ "name": "The Sweethome",
+ "triggers": [
+ "sweethome"
+ ],
+ "regions": {
+ "default": "http://thesweethome.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.smh.com.au/favicons/smh.ico",
+ "name": "The Sydney Morning Herald",
+ "triggers": [
+ "smh"
+ ],
+ "regions": {
+ "default": "http://www.smh.com.au/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thetechiris.com/wp-content/uploads/2016/03/cropped-techiris-logo-2016-1-192x192.jpg",
+ "name": "The TechIRIS",
+ "triggers": [
+ "techiris"
+ ],
+ "regions": {
+ "default": "http://thetechiris.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://timesofindia.indiatimes.com/icons/toifavicon.ico",
+ "name": "The Times of India",
+ "triggers": [
+ "toi"
+ ],
+ "regions": {
+ "default": "http://timesofindia.indiatimes.com/topic/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//d2116eg26nnd.cloudfront.net/tracker/img/favicon.a2e64d05503a.ico",
+ "name": "The Tracktor",
+ "triggers": [
+ "tracktor"
+ ],
+ "regions": {
+ "default": "http://thetracktor.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thetvdb.com/favicon.ico",
+ "name": "The TV db",
+ "triggers": [
+ "thetvdb"
+ ],
+ "regions": {
+ "default": "https://thetvdb.com/?string={{{term}}}&tab=listseries&function=Search"
+ }
+ },
+ {
+ "favicon": "https://www.usmint.gov/wordpress/wp-content/themes/us-mint/favicon.ico",
+ "name": "The United States Mint",
+ "triggers": [
+ "usmint"
+ ],
+ "regions": {
+ "default": "http://search.usmint.gov/search?affiliate=usmint.gov&formFocused=0&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ou.edu/favicon.ico",
+ "name": "The University of Oklahoma",
+ "triggers": [
+ "ou"
+ ],
+ "regions": {
+ "default": "https://www.ou.edu/content/web/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sydney.edu.au/etc/designs/corporate/favicon.ico",
+ "name": "The University of Sydney",
+ "triggers": [
+ "usyd"
+ ],
+ "regions": {
+ "default": "https://sydney.edu.au/s/search.html?collection=Usyd&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://minnie.tuhs.org/favicon.ico",
+ "name": "The Unix Tree",
+ "triggers": [
+ "unix"
+ ],
+ "regions": {
+ "default": "http://minnie.tuhs.org/cgi-bin/utree.pl?filesearch={{{term}}}&submit=Go"
+ }
+ },
+ {
+ "favicon": "http://en.uesp.net/favicon.ico",
+ "name": "The Unoffical Elder Scrolls pages",
+ "triggers": [
+ "uesp"
+ ],
+ "regions": {
+ "default": "http://en.uesp.net/w/index.php?title=Special%3ASearch&profile=default&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/vampirediaries/images/6/64/Favicon.ico/revision/latest?cb=20160826161100",
+ "name": "The Vampire Diaries Wiki",
+ "triggers": [
+ "tvd"
+ ],
+ "regions": {
+ "default": "http://vampirediaries.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/fallout_gamepedia/6/64/Favicon.ico?version=e74fdf30e24cdf7000d02a9f7bc21024",
+ "name": "The Vault Fallout Wiki",
+ "triggers": [
+ "falloutlore"
+ ],
+ "regions": {
+ "default": "https://fallout.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/fallout_gamepedia/6/64/Favicon.ico?version=e74fdf30e24cdf7000d02a9f7bc21024",
+ "name": "The Vault Fallout Wiki",
+ "triggers": [
+ "vault"
+ ],
+ "regions": {
+ "default": "http://fallout.gamepedia.com/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://cdn.vox-cdn.com/uploads/chorus_asset/file/7395351/android-chrome-192x192.0.png",
+ "name": "The Verge",
+ "triggers": [
+ "theverge",
+ "verge"
+ ],
+ "regions": {
+ "default": "https://www.theverge.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vigilantcitizen.com/favicon.ico",
+ "name": "The Vigilant Citizen",
+ "triggers": [
+ "vigcit"
+ ],
+ "regions": {
+ "default": "http://vigilantcitizen.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.washingtonpost.com/favicon.ico",
+ "name": "The Washington Post",
+ "triggers": [
+ "washingtonpost"
+ ],
+ "regions": {
+ "default": "https://www.washingtonpost.com/ac2/wp-dyn/NewsSearch?sb=-1&st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.washingtonpost.com/favicon.ico",
+ "name": "The Washington Post",
+ "triggers": [
+ "twp",
+ "wpost"
+ ],
+ "regions": {
+ "default": "https://www.washingtonpost.com/newssearch/search.html?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.weather.com/weather/assets/favicon.1acd6ad0f84c999b39c434f6bda4e29f.ico",
+ "name": "The Weather Channel",
+ "triggers": [
+ "weatherchannel"
+ ],
+ "regions": {
+ "default": "http://www.weather.com/search/enhancedlocalsearch?where={{{term}}}&loctypes=1/5/9/11/13/19/"
+ }
+ },
+ {
+ "favicon": "http://www.weather.com/weather/assets/favicon.1acd6ad0f84c999b39c434f6bda4e29f.ico",
+ "name": "The Weather Channel",
+ "triggers": [
+ "wc"
+ ],
+ "regions": {
+ "default": "http://www.weather.com/weather/today/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.theweathernetwork.com/favicon.ico",
+ "name": "The Weather Network",
+ "triggers": [
+ "wnetwork",
+ "twn"
+ ],
+ "regions": {
+ "default": "https://www.theweathernetwork.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thewebflash.com/wp-content/uploads/2017/01/cropped-thewebflash-logo-512-o-192x192.png",
+ "name": "The Web Flash",
+ "triggers": [
+ "thewebflash",
+ "twf"
+ ],
+ "regions": {
+ "default": "https://www.thewebflash.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn1.theweek.co.uk/sites/theweek/themes/theweek/favicon.ico",
+ "name": "The Week",
+ "triggers": [
+ "theweek"
+ ],
+ "regions": {
+ "default": "http://www.theweek.co.uk/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://blog.miniasp.com/favicon.ico",
+ "name": "The Will Will Web",
+ "triggers": [
+ "willh"
+ ],
+ "regions": {
+ "default": "http://blog.miniasp.com/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thewire.co.uk/favicon.ico",
+ "name": "The Wire",
+ "triggers": [
+ "wire"
+ ],
+ "regions": {
+ "default": "http://www.thewire.co.uk/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.thewirecutter.com/wp-content/themes/yeti/assets/img/favicon-16x16.png",
+ "name": "The Wirecutter",
+ "triggers": [
+ "wirecutter"
+ ],
+ "regions": {
+ "default": "http://thewirecutter.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/witcher_gamepedia/6/64/Favicon.ico?version=f271f3c9a4a88974295437c46209d319",
+ "name": "The Witcher Wiki",
+ "triggers": [
+ "tww"
+ ],
+ "regions": {
+ "default": "http://witcher.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.theworldofcomics.com/favicon.ico",
+ "name": "The World Of Comics",
+ "triggers": [
+ "worldofcomics",
+ "twoc"
+ ],
+ "regions": {
+ "default": "http://www.theworldofcomics.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whfoods.org/favicon.ico",
+ "name": "The World's Healthiest Foods",
+ "triggers": [
+ "whfoods"
+ ],
+ "regions": {
+ "default": "http://whfoods.org/sitesearch.php?sstr={{{term}}}&how=1"
+ }
+ },
+ {
+ "favicon": "http://the-starport.net/favicon.ico",
+ "name": "the-starport",
+ "triggers": [
+ "tsp"
+ ],
+ "regions": {
+ "default": "http://the-starport.net/search.php?query={{{term}}}&action=results"
+ }
+ },
+ {
+ "favicon": "https://theatricalia.com/favicon.ico",
+ "name": "Theatricalia",
+ "triggers": [
+ "theatricalia"
+ ],
+ "regions": {
+ "default": "https://theatricalia.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ljdchost.com/theme/favicons/favicon.ico",
+ "name": "thecodinglove.com",
+ "triggers": [
+ "codinglove"
+ ],
+ "regions": {
+ "default": "http://thecodinglove.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thecubicle.us/favicon.ico?v=2",
+ "name": "thecubicle.us",
+ "triggers": [
+ "tcu"
+ ],
+ "regions": {
+ "default": "http://thecubicle.us/advanced_search_result.php?search_in_description=0&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static-ec6.thefancy.com/_static_gen/_ui/images/favicon.066f3a9198e5.ico",
+ "name": "TheFancy",
+ "triggers": [
+ "fancy"
+ ],
+ "regions": {
+ "default": "http://www.thefancy.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.thefastmode.com/templates/shaper_simplicity_ii/images/favicon.ico",
+ "name": "TheFastMode",
+ "triggers": [
+ "thefastmode"
+ ],
+ "regions": {
+ "default": "http://www.thefastmode.com/site-search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thefella.com/assets/img/favicons/1436396642/favicon-32x32.png",
+ "name": "TheFella",
+ "triggers": [
+ "thefella"
+ ],
+ "regions": {
+ "default": "https://thefella.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thegamesdb.net/favicon.ico",
+ "name": "TheGamesDB",
+ "triggers": [
+ "tgdb"
+ ],
+ "regions": {
+ "default": "http://thegamesdb.net/search/?string={{{term}}}&function=Search"
+ }
+ },
+ {
+ "favicon": "https://assets.guim.co.uk/images/favicons/48bc5564bb01b74cf7cd1a08ae0dd98e/32x32.ico",
+ "name": "theguardian.com",
+ "triggers": [
+ "gu"
+ ],
+ "regions": {
+ "default": "https://www.theguardian.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://themeparkpress.files.wordpress.com/2017/04/favicon2.png?w=192",
+ "name": "Theme Park Press",
+ "triggers": [
+ "tppress"
+ ],
+ "regions": {
+ "default": "https://themeparkpress.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://themeforest.net/favicon.ico",
+ "name": "ThemeForest",
+ "triggers": [
+ "themeforest"
+ ],
+ "regions": {
+ "default": "https://themeforest.net/search?utf8=%E2%9C%93&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.themoviedb.org/favicon-32x32.png",
+ "name": "TheMovieDB.org",
+ "triggers": [
+ "tmdb",
+ "themoviedb"
+ ],
+ "regions": {
+ "default": "https://www.themoviedb.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/cstheory/img/favicon.ico?v=b72736ad174d",
+ "name": "Theoretical Computer Science - Stack Exchange",
+ "triggers": [
+ "cstheory"
+ ],
+ "regions": {
+ "default": "http://cstheory.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.hooktheory.com/images/favicon/favicon-16x16.png",
+ "name": "Theorytab",
+ "triggers": [
+ "theorytab"
+ ],
+ "regions": {
+ "default": "https://www.hooktheory.com/theorytab/results?path={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.merriam-webster.com/favicon.png",
+ "name": "Thesaurus by Merriam-Webster",
+ "triggers": [
+ "mwt"
+ ],
+ "regions": {
+ "default": "http://www.merriam-webster.com/thesaurus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/502812f9.ico",
+ "name": "Thesaurus.com",
+ "triggers": [
+ "thesaurus",
+ "synonyms",
+ "syn",
+ "like"
+ ],
+ "regions": {
+ "default": "http://thesaurus.com/browse/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/502812f9.ico",
+ "name": "Thesaurus.com",
+ "triggers": [
+ "thes"
+ ],
+ "regions": {
+ "default": "http://www.thesaurus.com/browse/{{{term}}}?s=t"
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/502812f9.ico",
+ "name": "Thesaurus.com",
+ "triggers": [
+ "synonym"
+ ],
+ "regions": {
+ "default": "http://www.thesaurus.com/browse/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cdn.sfdict.com/hp/502812f9.ico",
+ "name": "thesaurus.com",
+ "triggers": [
+ "t.com"
+ ],
+ "regions": {
+ "default": "http://www.thesaurus.com/search?q={{{term}}}&s=t"
+ }
+ },
+ {
+ "favicon": "https://www.theses.fr/img/favicon.png",
+ "name": "Theses.fr",
+ "triggers": [
+ "theses"
+ ],
+ "regions": {
+ "default": "https://www.theses.fr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thetoptens.com/favicon.ico",
+ "name": "TheTopTens",
+ "triggers": [
+ "thetoptens"
+ ],
+ "regions": {
+ "default": "http://www.thetoptens.com/search.asp?q={{{term}}}&cx=partner-pub-5900458016987292%3Agdkm434o44o&cof=FORID%3A9&ie=ISO-8859-1&siteurl=www.thetoptens.com%2F%3Fq%3Da&ref=&ss=421j55697j9"
+ }
+ },
+ {
+ "favicon": "https://thetvdb.com/favicon.ico",
+ "name": "TheTVDB.com",
+ "triggers": [
+ "tvdb"
+ ],
+ "regions": {
+ "default": "https://thetvdb.com/?string={{{term}}}&searchseriesid=&tab=listseries&function=Search"
+ }
+ },
+ {
+ "favicon": "http://www.theyworkforyou.com/favicon.ico",
+ "name": "TheyWorkForYou",
+ "triggers": [
+ "twfy",
+ "theyworkforyou"
+ ],
+ "regions": {
+ "default": "http://www.theyworkforyou.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thingiverse.com/img/favicons/favicon-32x32.png",
+ "name": "Thingiverse",
+ "triggers": [
+ "thingiverse"
+ ],
+ "regions": {
+ "default": "https://www.thingiverse.com/search?cx=015525747728168968820%3Arqnsgx1xxcw&cof=FORID%3A9&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thingiverse.com/img/favicons/favicon-32x32.png",
+ "name": "Thingiverse",
+ "triggers": [
+ "thing"
+ ],
+ "regions": {
+ "default": "https://www.thingiverse.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thingiverse.com/img/favicons/favicon-32x32.png",
+ "name": "Thingiverse",
+ "triggers": [
+ "thg"
+ ],
+ "regions": {
+ "default": "https://www.thingiverse.com/search?q={{{term}}}&sa="
+ }
+ },
+ {
+ "favicon": "https://www.thinkgeek.com/images/favicon.png",
+ "name": "ThinkGeek",
+ "triggers": [
+ "thinkgeek"
+ ],
+ "regions": {
+ "default": "https://www.thinkgeek.com/brain/whereisit.cgi?t={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.thinkgeek.com/images/favicon.png",
+ "name": "ThinkGeek",
+ "triggers": [
+ "tg"
+ ],
+ "regions": {
+ "default": "https://www.thinkgeek.com/brain/whereisit.cgi?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thinkwiki.org/favicon.ico",
+ "name": "ThinkWiki",
+ "triggers": [
+ "thinkwiki"
+ ],
+ "regions": {
+ "default": "http://www.thinkwiki.org/w/index.php?search={{{term}}}&go=Go&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://thinkwiki.de/favicon.ico",
+ "name": "thinkwiki.de",
+ "triggers": [
+ "thinkwikide"
+ ],
+ "regions": {
+ "default": "http://thinkwiki.de/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thisamericanlife.org/sites/all/themes/thislife/favicons/favicon.ico",
+ "name": "This American Life",
+ "triggers": [
+ "thislife"
+ ],
+ "regions": {
+ "default": "http://www.thisamericanlife.org/search?keys={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thisiswhyimbroke.com/favicon.ico",
+ "name": "This is why I'm broke",
+ "triggers": [
+ "tiwimb"
+ ],
+ "regions": {
+ "default": "http://www.thisiswhyimbroke.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tmbw.net/favicon.ico",
+ "name": "This MIght Be a Wiki",
+ "triggers": [
+ "tmbw"
+ ],
+ "regions": {
+ "default": "http://tmbw.net/wiki/Special:Search?search={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://thmods.com/favicon.ico",
+ "name": "ThMods",
+ "triggers": [
+ "thmods"
+ ],
+ "regions": {
+ "default": "http://thmods.com/forum/search.php?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://images.static-thomann.de/pics/images/common/favicon.ico",
+ "name": "Thomann",
+ "triggers": [
+ "thomann",
+ "thm"
+ ],
+ "regions": {
+ "default": "http://www.thomann.de/de/search_dir.html?sw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thomas-krenn.com/favicon.ico",
+ "name": "Thomas-Krenn-Wiki",
+ "triggers": [
+ "tkw"
+ ],
+ "regions": {
+ "default": "https://www.thomas-krenn.com/de/wiki/Spezial:Suchergebnisseite?type=mediawiki_page&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thomas.loc.gov/favicon.ico",
+ "name": "Thomas.loc.gov",
+ "triggers": [
+ "thomas"
+ ],
+ "regions": {
+ "default": "http://thomas.loc.gov/"
+ }
+ },
+ {
+ "favicon": "http://www.thorlabs.de/favicon.ico",
+ "name": "Thorlabs",
+ "triggers": [
+ "thorlabs"
+ ],
+ "regions": {
+ "default": "http://www.thorlabs.de/search/thorsearch.cfm?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thriftbooks.com/favicon.ico",
+ "name": "Thriftbooks",
+ "triggers": [
+ "tbooks"
+ ],
+ "regions": {
+ "default": "https://www.thriftbooks.com/browse/?b.search={{{term}}}#b.oos"
+ }
+ },
+ {
+ "favicon": "https://www.thriftbooks.com/favicon.ico",
+ "name": "ThriftBooks",
+ "triggers": [
+ "thriftb"
+ ],
+ "regions": {
+ "default": "https://www.thriftbooks.com/browse/?b.search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thriftyfoods.com/favicon.ico",
+ "name": "Thrifty Foods",
+ "triggers": [
+ "thriftyfoods"
+ ],
+ "regions": {
+ "default": "https://www.thriftyfoods.com/search?k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thronesdb.com/icon-192.png",
+ "name": "ThronesDB",
+ "triggers": [
+ "thdb"
+ ],
+ "regions": {
+ "default": "http://thronesdb.com/find?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://thronesdb.com/icon-192.png",
+ "name": "ThronesDB",
+ "triggers": [
+ "tdb"
+ ],
+ "regions": {
+ "default": "https://thronesdb.com/find?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.thrustcurve.org/favicon.ico",
+ "name": "ThrustCurve Hobby Rocket Motor Data",
+ "triggers": [
+ "thrustcurve"
+ ],
+ "regions": {
+ "default": "http://www.thrustcurve.org/motorsearch.jsp?designation={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://thumboy.com/favicon.ico",
+ "name": "Thumboy",
+ "triggers": [
+ "thumboy"
+ ],
+ "regions": {
+ "default": "http://thumboy.com/web?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://opac.tib.uni-hannover.de/favicon.ico",
+ "name": "TIB/UB-OPAC (Library of Leibniz Universität Hannover)",
+ "triggers": [
+ "tib"
+ ],
+ "regions": {
+ "default": "http://opac.tib.uni-hannover.de/DB=1/CHARSET=UTF-8/SRCH?IKT=1016&TRM={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ssl-static-tibia.akamaized.net/images/global/general/favicon.ico",
+ "name": "Tibia",
+ "triggers": [
+ "tbc",
+ "tibia"
+ ],
+ "regions": {
+ "default": "https://secure.tibia.com/community/?subtopic=characters&name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://opac.tib.uni-hannover.de/favicon.ico",
+ "name": "TIBUB OPAC Hannover",
+ "triggers": [
+ "tibub"
+ ],
+ "regions": {
+ "default": "http://opac.tib.uni-hannover.de/DB=1/SET=1/TTL=1/CMD?ACT=SRCHA&IKT=1016&SRT=YOP&TRM={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ticketforevent.com/img/favicon.png",
+ "name": "TickeForEvent",
+ "triggers": [
+ "tfe"
+ ],
+ "regions": {
+ "default": "https://ticketforevent.com/events/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//uk.tmconst.com/4-2-3-696145/images/favicon.ico",
+ "name": "Ticketmaster UK",
+ "triggers": [
+ "ticketmasteruk"
+ ],
+ "regions": {
+ "default": "https://www.ticketmaster.co.uk/search?tm_link=tm_homeA_header_search&user_input=test&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ticketnetwork.com/_ui/responsive/theme-tn/images/TNfavicon.ico",
+ "name": "TicketNetwork",
+ "triggers": [
+ "ticketnetwork"
+ ],
+ "regions": {
+ "default": "http://www.ticketnetwork.com/ticket/{{{term}}}-events.aspx"
+ }
+ },
+ {
+ "favicon": "http://tiger-algebra.com/tiger95_KDx_icon.ico",
+ "name": "Tiger Algebra",
+ "triggers": [
+ "talg"
+ ],
+ "regions": {
+ "default": "http://tiger-algebra.com/drill/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.tigerdirect.com/favicon.ico",
+ "name": "TigerDirect",
+ "triggers": [
+ "tigerdirect"
+ ],
+ "regions": {
+ "default": "http://www.tigerdirect.com/applications/SearchTools/search.asp?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tigsource.com/favicon.ico",
+ "name": "TIGSource",
+ "triggers": [
+ "tig",
+ "tigsource"
+ ],
+ "regions": {
+ "default": "http://www.tigsource.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://opac.tib.uni-hannover.de/favicon.ico",
+ "name": "TiHo-OPAC",
+ "triggers": [
+ "tiho"
+ ],
+ "regions": {
+ "default": "http://opac.tib.uni-hannover.de/DB=5/LNG=DU/SID=40343eab-1/CMD?ACT=SRCHA&IKT=1016&SRT=YOP&TRM={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tiketti.fi/favicon.ico",
+ "name": "Tiketti",
+ "triggers": [
+ "tiketti"
+ ],
+ "regions": {
+ "default": "http://www.tiketti.fi/tapahtumat#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tiketti.fi/favicon.ico",
+ "name": "Tiketti (English)",
+ "triggers": [
+ "tikettien"
+ ],
+ "regions": {
+ "default": "http://www.tiketti.fi/events#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.timhortons.com/favicon.ico",
+ "name": "Tim Hortons",
+ "triggers": [
+ "timhortons"
+ ],
+ "regions": {
+ "default": "http://www.timhortons.com/ca/en/search/search-results.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.timeanddate.com/favicon.ico",
+ "name": "Time an Date (local time)",
+ "triggers": [
+ "localtime"
+ ],
+ "regions": {
+ "default": "https://www.timeanddate.com/time/zone/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.timeanddate.com/favicon.ico",
+ "name": "Time and Date (time zone)",
+ "triggers": [
+ "timezone"
+ ],
+ "regions": {
+ "default": "https://www.timeanddate.com/time/zones/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.time.is/favicon.ico",
+ "name": "Time Is",
+ "triggers": [
+ "timeis"
+ ],
+ "regions": {
+ "default": "https://time.is/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.time.is/favicon.ico",
+ "name": "Time.is",
+ "triggers": [
+ "tis"
+ ],
+ "regions": {
+ "default": "http://time.is/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.time2game.be/favicon.ico",
+ "name": "Time2Game",
+ "triggers": [
+ "t2g"
+ ],
+ "regions": {
+ "default": "http://www.time2game.be/index.php?main_page=advanced_search_result&search_in_description=1&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.timeanddate.com/favicon.ico",
+ "name": "timeanddate",
+ "triggers": [
+ "tz"
+ ],
+ "regions": {
+ "default": "https://www.timeanddate.com/worldclock/results.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.timeanddate.com/favicon.ico",
+ "name": "TimeAndDate",
+ "triggers": [
+ "td"
+ ],
+ "regions": {
+ "default": "https://www.timeanddate.com/search/results.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://timerepublik.com/favicon-32x32.png",
+ "name": "Timerepubik",
+ "triggers": [
+ "timerep",
+ "timerepublik",
+ "trep"
+ ],
+ "regions": {
+ "default": "https://timerepublik.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.timini.no/favicon.ico",
+ "name": "Timini",
+ "triggers": [
+ "nano"
+ ],
+ "regions": {
+ "default": "https://www.timini.no/search/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tinhouse.com/favicon.ico",
+ "name": "Tin House",
+ "triggers": [
+ "tinhouse"
+ ],
+ "regions": {
+ "default": "http://www.tinhouse.com/blog/search_results?cx=011725669505340441470%3Ak2fqsblnr5c&cof=FORID%3A9&ie=UTF-8&q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "https://www.tineye.com/favicon.ico",
+ "name": "Tineye",
+ "triggers": [
+ "tineye"
+ ],
+ "regions": {
+ "default": "https://www.tineye.com/search?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tinyjpg.com/images/favicon.ico",
+ "name": "Tiny JPG",
+ "triggers": [
+ "tinyjpg",
+ "tjpg"
+ ],
+ "regions": {
+ "default": "https://tinyjpg.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tinymixtapes.com/sites/all/themes/tmt7/images/favicon.png",
+ "name": "Tiny Mix Tapes",
+ "triggers": [
+ "tmt"
+ ],
+ "regions": {
+ "default": "http://www.tinymixtapes.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tinypic.com/favicon.ico",
+ "name": "TinyPic",
+ "triggers": [
+ "tinypic"
+ ],
+ "regions": {
+ "default": "http://tinypic.com/search.php?tag={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tinyurl.com/siteresources/images/favicon.ico",
+ "name": "TinyUrl",
+ "triggers": [
+ "tyurl"
+ ],
+ "regions": {
+ "default": "https://tinyurl.com/create.php?source=indexpage&url={{{term}}}&submit=Make+TinyURL%21&alias= "
+ }
+ },
+ {
+ "favicon": "https://tinyurl.com/siteresources/images/favicon.ico",
+ "name": "TinyURL.com",
+ "triggers": [
+ "tinyurl"
+ ],
+ "regions": {
+ "default": "https://tinyurl.com/create.php?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tipeee.com/favicon.ico",
+ "name": "tipeee",
+ "triggers": [
+ "tip"
+ ],
+ "regions": {
+ "default": "https://www.tipeee.com/creators?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://feeltiptop.com/twitter/twitter/images/favicon.ico?v305",
+ "name": "TipTop Insight Engine",
+ "triggers": [
+ "tiptop"
+ ],
+ "regions": {
+ "default": "http://feeltiptop.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tirage-gagnant.com/wp-content/uploads/2017/10/cropped-tirage-gagnant-icon-5-192x192.png",
+ "name": "Tirage Gagnant",
+ "triggers": [
+ "tiragegagnant"
+ ],
+ "regions": {
+ "default": "http://tirage-gagnant.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://titlovi.com/favicon.ico",
+ "name": "Titlovi",
+ "triggers": [
+ "titlovi"
+ ],
+ "regions": {
+ "default": "http://titlovi.com/titlovi/titlovi.aspx?prijevod={{{term}}}&jezik="
+ }
+ },
+ {
+ "favicon": "https://www.titulky.com/favicon-tecko.ico",
+ "name": "Titulky",
+ "triggers": [
+ "titulky"
+ ],
+ "regions": {
+ "default": "https://www.titulky.com/?Fulltext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tivo.com/favicon.ico",
+ "name": "TiVo",
+ "triggers": [
+ "tivo"
+ ],
+ "regions": {
+ "default": "http://www3.tivo.com/tivo-tco/search.do?dispatch=simplesearch&searchFor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tkkrlab.nl/favicon.ico",
+ "name": "tkkrlab",
+ "triggers": [
+ "tkkrlab"
+ ],
+ "regions": {
+ "default": "http://tkkrlab.nl/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "//d1yitojjk0j5gr.cloudfront.net/favicon-f5823ae40a3767601a7fca13b655c4db.ico",
+ "name": "TL;DR Legal",
+ "triggers": [
+ "tldrlegal"
+ ],
+ "regions": {
+ "default": "https://tldrlegal.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://tldr.ostera.io/favicon.ico",
+ "name": "Tldr",
+ "triggers": [
+ "tldr"
+ ],
+ "regions": {
+ "default": "https://tldr.ostera.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tlk.io/images/favicon.png",
+ "name": "tlk.io",
+ "triggers": [
+ "tlk"
+ ],
+ "regions": {
+ "default": "https://tlk.io/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.tmz.com/www.tmz.com/main/default/favicon.png",
+ "name": "TMZ",
+ "triggers": [
+ "tmz"
+ ],
+ "regions": {
+ "default": "https://www.tmz.com/search/articles/{{{term}}}/1/"
+ }
+ },
+ {
+ "favicon": "https://cdn.tn.com.ar/favicon.ico",
+ "name": "TN.com.ar",
+ "triggers": [
+ "todonoticias"
+ ],
+ "regions": {
+ "default": "http://tn.com.ar/buscar/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webtracker.tnt.com/assets/favicons/favicon-16x16.png",
+ "name": "TNT",
+ "triggers": [
+ "tnt"
+ ],
+ "regions": {
+ "default": "http://webtracker.tnt.com/webtracker/tracking.do?requestType=GEN&searchType=CON&respLang=en&respCountry=US&sourceID=1&sourceCountry=ww&cons={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tny.im/favicon.ico",
+ "name": "Tny.im Shorten URL",
+ "triggers": [
+ "tnyims"
+ ],
+ "regions": {
+ "default": "http://tny.im/yourls-api.php?action=shorturl&url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tbs-apps.com/wp-content/uploads/2013/04/icon.png",
+ "name": "ToBeSmart – Solutions for Developers",
+ "triggers": [
+ "tbs"
+ ],
+ "regions": {
+ "default": "http://www.tbs-apps.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d3ptyyxy2at9ui.cloudfront.net/d2043167d727a78186d9f8e734590f5a.png",
+ "name": "Todoist",
+ "triggers": [
+ "todoist"
+ ],
+ "regions": {
+ "default": "https://todoist.com/app?lang=en#agenda%2F{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.tofugu.com/favicon.ico",
+ "name": "Tofugu",
+ "triggers": [
+ "tofugu"
+ ],
+ "regions": {
+ "default": "http://www.tofugu.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://tolkiengateway.net/favicon.ico",
+ "name": "Tokien Gateway",
+ "triggers": [
+ "tolkien",
+ "tolkiengateway"
+ ],
+ "regions": {
+ "default": "http://tolkiengateway.net/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tokmanni.fi/static/version1530267117/frontend/Cgi/tokmanni/fi_FI/icons/favicon-16x16.png",
+ "name": "Tokmanni",
+ "triggers": [
+ "tokmanni"
+ ],
+ "regions": {
+ "default": "https://www.tokmanni.fi/tuotteet/hakutulokset?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ecs7.tokopedia.net/img/favicon.ico?v=20140313",
+ "name": "Tokopedia",
+ "triggers": [
+ "tokopedia"
+ ],
+ "regions": {
+ "default": "https://www.tokopedia.com/search?st=product&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tokyotosho.info/favicon.ico",
+ "name": "Tokyo Toshokan",
+ "triggers": [
+ "tt",
+ "tokyotosho"
+ ],
+ "regions": {
+ "default": "https://www.tokyotosho.info/search.php?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tokyonoise.net/TokyoNoise.ico",
+ "name": "TokyoNoise",
+ "triggers": [
+ "tokyonoise"
+ ],
+ "regions": {
+ "default": "http://www.tokyonoise.net/cerca.php?s={{{term}}}&p=1"
+ }
+ },
+ {
+ "favicon": "http://tolkiengateway.net/favicon.ico",
+ "name": "Tolkien Gateway",
+ "triggers": [
+ "tgate"
+ ],
+ "regions": {
+ "default": "http://tolkiengateway.net/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.tomshardware.com/medias/favicon/favicon.ico?v=oLLokpekrr",
+ "name": "Tom's Hardware",
+ "triggers": [
+ "tomshardware"
+ ],
+ "regions": {
+ "default": "http://www.tomshardware.com/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tomshardware.com/medias/favicon/favicon.ico?v=oLLokpekrr",
+ "name": "Tom's Hardware",
+ "triggers": [
+ "tomshw"
+ ],
+ "regions": {
+ "default": "http://www.tomshardware.com/s/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://tontonroger.org/static/themes/framasoft/img/favicon.png",
+ "name": "Tonton Roger",
+ "triggers": [
+ "tonton"
+ ],
+ "regions": {
+ "default": "https://tontonroger.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/tonyhawkgames/images/6/64/Favicon.ico/revision/latest?cb=20130130174149",
+ "name": "Tony Hawk Games Wiki",
+ "triggers": [
+ "thgw"
+ ],
+ "regions": {
+ "default": "http://tonyhawkgames.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://toogl.es/favicon.ico",
+ "name": "Toogles",
+ "triggers": [
+ "toogles"
+ ],
+ "regions": {
+ "default": "http://toogl.es/#/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stock.tookapic.com/img/favicon.ico",
+ "name": "tookapic",
+ "triggers": [
+ "tookapic"
+ ],
+ "regions": {
+ "default": "https://stock.tookapic.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://toolslib.net/assets/custom/img/favicon.png",
+ "name": "ToolsLib",
+ "triggers": [
+ "toolslib",
+ "tlib"
+ ],
+ "regions": {
+ "default": "https://toolslib.net/search/projects/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/toontownrewritten/images/6/64/Favicon.ico/revision/latest?cb=20170727155514",
+ "name": "Toontown Rewritten",
+ "triggers": [
+ "ttr"
+ ],
+ "regions": {
+ "default": "http://toontownrewritten.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.toorgle.net/favicon.ico",
+ "name": "toorgle",
+ "triggers": [
+ "toorgle"
+ ],
+ "regions": {
+ "default": "http://www.toorgle.net/results.php?q={{{term}}}&security=666"
+ }
+ },
+ {
+ "favicon": "http://www.topgeek.net/img/favicon-1.ico?1519900237",
+ "name": "Top Geek",
+ "triggers": [
+ "topgeek"
+ ],
+ "regions": {
+ "default": "http://www.topgeek.net/fr/recherche?controller=search&orderby=position&orderway=desc&search_query={{{term}}}&submit_search=Rechercher"
+ }
+ },
+ {
+ "favicon": "https://www.topachat.com/favicon.ico",
+ "name": "Topachat",
+ "triggers": [
+ "topachat"
+ ],
+ "regions": {
+ "default": "https://www.topachat.com/pages/recherche.php?mc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.toppreise.ch/favicon.ico",
+ "name": "Toppreise.ch",
+ "triggers": [
+ "toppreise"
+ ],
+ "regions": {
+ "default": "https://www.toppreise.ch/index.php?search={{{term}}}&res=OK"
+ }
+ },
+ {
+ "favicon": "https://us.topshop.com/favicon.ico",
+ "name": "Topshop",
+ "triggers": [
+ "topshop"
+ ],
+ "regions": {
+ "default": "https://us.topshop.com/webapp/wcs/stores/servlet/CatalogNavigationSearchResultCmd?langId=-1&storeId=13052&catalogId=33060&beginIndex=1&viewAllFlag=false&pageSize=20&sort_field=Relevance&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dt2k3h9q2am8v.cloudfront.net/img/favicon-16x16.png",
+ "name": "Tori",
+ "triggers": [
+ "tori"
+ ],
+ "regions": {
+ "default": "https://www.tori.fi/koko_suomi?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.torlock.com/favicon-16x16.png",
+ "name": "Torlock",
+ "triggers": [
+ "torlock"
+ ],
+ "regions": {
+ "default": "https://www.torlock.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.torontopubliclibrary.ca/favicon.ico",
+ "name": "Toronto Public Library",
+ "triggers": [
+ "tpl"
+ ],
+ "regions": {
+ "default": "http://www.torontopubliclibrary.ca/search.jsp?Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thestar.com/favicon.ico",
+ "name": "Toronto Star",
+ "triggers": [
+ "tostar"
+ ],
+ "regions": {
+ "default": "https://www.thestar.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trac.torproject.org/images/favicon.ico",
+ "name": "Torproject Wiki",
+ "triggers": [
+ "torwiki"
+ ],
+ "regions": {
+ "default": "https://trac.torproject.org/projects/tor/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://torrent-finder.info/apple-touch-icon.png",
+ "name": "Torrent Finder",
+ "triggers": [
+ "torrent-finder"
+ ],
+ "regions": {
+ "default": "http://torrent-finder.info/show.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentfreak.com/wp-content/themes/torrentfreakredux/assets/img/icons/192.png",
+ "name": "Torrent Freak",
+ "triggers": [
+ "torrentfreak"
+ ],
+ "regions": {
+ "default": "https://torrentfreak.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.torrentdowloads.com/favicon.ico",
+ "name": "torrentdownloads.com",
+ "triggers": [
+ "tdown"
+ ],
+ "regions": {
+ "default": "http://www.torrentdowloads.com/search/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.torrenthound.com/favicon.ico",
+ "name": "torrentHound",
+ "triggers": [
+ "th"
+ ],
+ "regions": {
+ "default": "https://www.torrenthound.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAyMjP/MjIz/zIyM9gyMjP/MjIz/zIyM/8yMjPYMjIz1DIyM9QyMjPYMjIz/zIyM/8yMjP/MjIz2DIyM3UyMjP/MjIz/zIyM/8yMjP/MjIz/zIyM/8AAAAAMjIzHAAAAAAAAAAAAAAAAAAAAAAyMjP/MjIz/zIyM/8yMjMcMjIz/wUBgv8FAYK9BQGC3wAA4/8AAOP/AADj/wAA4/8AAOP/AADj/wAA4/8AAOP/AADj/wAA4/8AAOP/AADj/wAA4/8FAYL/2bwA/7zZAP G2QD/ZdkA/0jZAP8v2QD/GdkA/wDZGf8A2Vf/ANlw/wDZhv8A2ab/ANm1/wDV2f8AAOP/BQGC/9m8AP 82QD/htkA/x8fHv8fHx58L9kA/xnZAP8fHx7QANlX/x8fHv8fHx58Hx8efB8fHv8A1dn/AADj/wUAnP/ZvAD/vNkA/4bZAP8fHx7/Hx8efC/ZAP8Z2QD/ANkZ/wDZV/8fHx7/Hx8efB8fHv8fHx58ANXZ/wAA4/8FAJz/2bwA/7zZAP G2QD/Hx8e/x8fHnwv2QD/GdkA/wDZGf8A2Vf/Hx8e/x8fHv8fHx58ANmN/wDV2f8AAOP/BQCc/9m8AP8fHx58Hx8efB8fHv8fHx58Hx8efBnZAP8A2Rn/ANlX/x8fHv8fHx58Hx8e/x8fHnwA1dn/AADj/wUAnP/ZvAD/Hx8e/x8fHv8fHx7/Hx8e/x8fHv8Z2QD/ANkZ/wDZV/8fHx7/Hx8efB8fHnwfHx7/ANXZ/wAA4/8FAJz/2bwA/7zZAP G2QD/ZdkA/0jZAP8v2QD/GdkA/wDZGf8A2Vf/ANlw/wDZhv8A2ab/ANm1/wDV2f8AAOP/BQCc/9m8AP 82QD/htkA/wAA4/9I2QD/L9kA/xnZAP8A2Rn/ANlX/wDZcP8A2Yb/AADjcQDZtf8A1dn/AADj/wUAnP/ZvAD/vNkA/wAA4/8AAAAAAADj/y/ZAP8Z2QD/ANkZ/wDZV/8A2XD/AADj/wAA4/8AAONxANXZ/wAA4/8FAJz/2bwA/wAA4/8AAAAAAAAAAAAAAAAAAOP/GdkA/wDZGf8A2Vf/AADj/wAAAAAAAAAAAADj/wAA40YAAOP/BQCc/wUAnP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA2f8A2Rn/AADZ/wAAAAAAAAAAAAAAAAAAAAAAAOP/AADj/wUAnP8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADZ/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4/8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAfiAAAAAAAAAAAAAAQYAAAEFAAABAgAADYUAAAAGAAAAAAAAAAIAAAIBAAAHBoAAD48AAB/fgAA//8AAA==",
+ "name": "torrentking",
+ "triggers": [
+ "tk"
+ ],
+ "regions": {
+ "default": "http://torrentking.eu/search.php?mk={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//cntorrentkitty.com/static-files/images/favicon.ico",
+ "name": "TorrentKitty",
+ "triggers": [
+ "tkitty"
+ ],
+ "regions": {
+ "default": "http://torrentkitty.ws/tk/{{{term}}}/1-0-0.html"
+ }
+ },
+ {
+ "favicon": "https://torrentleech.org/favicon.ico",
+ "name": "TorrentLeech",
+ "triggers": [
+ "torrentleech"
+ ],
+ "regions": {
+ "default": "https://torrentleech.org/torrents/browse/index/query/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://torrentrg.com/bbs/torrentrg_Favicon.ico",
+ "name": "TorrentRG",
+ "triggers": [
+ "trg"
+ ],
+ "regions": {
+ "default": "http://torrentrg.com/bbs/search.php?sfl=wr_subject%7C%7Cwr_content&stx={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://torrents.fm/favicon.ico",
+ "name": "Torrents.fm",
+ "triggers": [
+ "torrents"
+ ],
+ "regions": {
+ "default": "http://torrents.fm/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrents.me/wp-content/themes/toto/assets/img/favicon.png",
+ "name": "torrents.me",
+ "triggers": [
+ "torrent"
+ ],
+ "regions": {
+ "default": "https://torrents.me/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentshack.eu/assets/de5d09e8ddc6a92a984d394df4248268/images/favicon.ico",
+ "name": "Torrentshack",
+ "triggers": [
+ "tsh"
+ ],
+ "regions": {
+ "default": "https://torrentshack.eu/torrents.php?searchstr={{{term}}}&release_type=both&searchtags=&tags_type=0&order_by=s3&order_way=desc&torrent_preset=all"
+ }
+ },
+ {
+ "favicon": "http://torrentsmd.com/pic/favicon.png",
+ "name": "torrentsmd.com",
+ "triggers": [
+ "tmd"
+ ],
+ "regions": {
+ "default": "http://torrentsmd.com/search.php?search_str={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://torrentus.to/favicon.ico",
+ "name": "TorrentUs",
+ "triggers": [
+ "torrentus"
+ ],
+ "regions": {
+ "default": "http://torrentus.to/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentz.eu/favicon.ico",
+ "name": "Torrentz",
+ "triggers": [
+ "trz"
+ ],
+ "regions": {
+ "default": "https://torrentz.eu/search?f={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentz.in/favicon.ico",
+ "name": "TorrentZ",
+ "triggers": [
+ "trr"
+ ],
+ "regions": {
+ "default": "https://torrentz.in/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentz.eu/favicon.ico",
+ "name": "Torrentz.eu",
+ "triggers": [
+ "to"
+ ],
+ "regions": {
+ "default": "https://torrentz.eu/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentz2.eu/favicon.ico",
+ "name": "Torrentz2",
+ "triggers": [
+ "torrentz",
+ "tz2",
+ "torrentz2",
+ "trr2"
+ ],
+ "regions": {
+ "default": "https://torrentz2.eu/search?f={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://torrentz2.is/favicon.ico",
+ "name": "Torrentz2",
+ "triggers": [
+ "t2"
+ ],
+ "regions": {
+ "default": "https://torrentz2.is/search?f={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dr.habracdn.net/toster/images/favicons/favicon-32x32.png",
+ "name": "Toster",
+ "triggers": [
+ "tost"
+ ],
+ "regions": {
+ "default": "https://toster.ru/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.totalcmd.net/favicon.ico",
+ "name": "TotalCmd.Net",
+ "triggers": [
+ "totalcmd"
+ ],
+ "regions": {
+ "default": "http://www.totalcmd.net/search.php?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://toucharcade.com/styles/toucharcade/toucharcade/favicon/favicon-128.png%22",
+ "name": "Touch Arcade",
+ "triggers": [
+ "toucharcade"
+ ],
+ "regions": {
+ "default": "http://toucharcade.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.touhouwiki.net/favicon.ico",
+ "name": "Touhou Wiki",
+ "triggers": [
+ "touhou"
+ ],
+ "regions": {
+ "default": "http://en.touhouwiki.net/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://en.touhouwiki.net/favicon.ico",
+ "name": "Touhou Wiki",
+ "triggers": [
+ "thw"
+ ],
+ "regions": {
+ "default": "http://en.touhouwiki.net/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.touhouwiki.net/favicon.ico",
+ "name": "Touhouwiki (English)",
+ "triggers": [
+ "thwiki"
+ ],
+ "regions": {
+ "default": "http://en.touhouwiki.net/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/towerofsaviors/images/6/64/Favicon.ico/revision/latest?cb=20130226083318",
+ "name": "Tower of Saviors Wikia",
+ "triggers": [
+ "toswikia"
+ ],
+ "regions": {
+ "default": "http://towerofsaviors.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://tparser.org/favicon.ico",
+ "name": "TParser",
+ "triggers": [
+ "tparser"
+ ],
+ "regions": {
+ "default": "http://tparser.org/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.shopify.com/s/files/1/1334/7131/files/favicon-96x96_32x32.png?v=1523915049",
+ "name": "Tpop",
+ "triggers": [
+ "tshirt"
+ ],
+ "regions": {
+ "default": "https://www.tpop.fr/search?type=product&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tools.tracemyip.org/favicon.ico",
+ "name": "tracemyip",
+ "triggers": [
+ "tracemyip"
+ ],
+ "regions": {
+ "default": "http://tools.tracemyip.org/lookup/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d33yltq05bdjmc.cloudfront.net/favicon.ico",
+ "name": "Trackitdown",
+ "triggers": [
+ "trackitdown"
+ ],
+ "regions": {
+ "default": "http://www.trackitdown.net/search/keyword?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tractorhouse.com/favicon.ico",
+ "name": "TractorHouse",
+ "triggers": [
+ "tractorhouse"
+ ],
+ "regions": {
+ "default": "https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/?fulltext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.trademe.co.nz/favicon.ico?desktop",
+ "name": "Trade Me",
+ "triggers": [
+ "tm",
+ "trademe"
+ ],
+ "regions": {
+ "default": "http://www.trademe.co.nz/Browse/SearchResults.aspx?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.trademarkia.com/images/home/favicon.ico",
+ "name": "Trademarkia",
+ "triggers": [
+ "trademarks"
+ ],
+ "regions": {
+ "default": "http://www.trademarkia.com/trademarks-search.aspx?tn={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tradera.com/static/images/favicons-tradera/aj10aj20.favicon-32x32.png",
+ "name": "Tradera",
+ "triggers": [
+ "tradera"
+ ],
+ "regions": {
+ "default": "http://www.tradera.com/finding.mvc/itemlisting?header=true&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.tradingview.com/static/images/favicon.ico",
+ "name": "TradingView",
+ "triggers": [
+ "tradingview",
+ "tview"
+ ],
+ "regions": {
+ "default": "https://www.tradingview.com/chart/?symbol={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tradooit.com/favicon.ico",
+ "name": "TradooIT",
+ "triggers": [
+ "tit"
+ ],
+ "regions": {
+ "default": "http://www.tradooit.com/info.php?q={{{term}}} &btn-recherche.x=0&btn-recherche.y=0&langFrom=en&langTo=fr"
+ }
+ },
+ {
+ "favicon": "//tradukka.com/static/ico/icon-128x128.translate.png",
+ "name": "Tradukka detect language to English",
+ "triggers": [
+ "tkk"
+ ],
+ "regions": {
+ "default": "http://tradukka.com/translate/en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//tradukka.com/static/ico/icon-128x128.translate.png",
+ "name": "Tradukka detect language to spanish",
+ "triggers": [
+ "tkk2es"
+ ],
+ "regions": {
+ "default": "http://tradukka.com/translate/es/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.traileraddict.com/icons/favicon.ico",
+ "name": "Trailer Addict",
+ "triggers": [
+ "traileraddict"
+ ],
+ "regions": {
+ "default": "http://www.traileraddict.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.traileraddict.com/icons/favicon.ico",
+ "name": "Trailer Addict",
+ "triggers": [
+ "trailer"
+ ],
+ "regions": {
+ "default": "http://www.traileraddict.com/search.php?sitesearch=www.traileraddict.com&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.trainlinecontent.com/content/WEB/images/favicon.ico",
+ "name": "Trainline Live Departures",
+ "triggers": [
+ "tlld"
+ ],
+ "regions": {
+ "default": "https://www.thetrainline.com/live/departures/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//walter.trakt.tv/hotlink-ok/public/favicon.ico",
+ "name": "Trakt",
+ "triggers": [
+ "trakt"
+ ],
+ "regions": {
+ "default": "https://trakt.tv/search?utf8=%E2%9C%93&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//walter.trakt.tv/hotlink-ok/public/favicon.ico",
+ "name": "Trakt Movies",
+ "triggers": [
+ "tkm"
+ ],
+ "regions": {
+ "default": "https://trakt.tv/search/movies?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//walter.trakt.tv/hotlink-ok/public/favicon.ico",
+ "name": "Trakt Shows",
+ "triggers": [
+ "tks"
+ ],
+ "regions": {
+ "default": "https://trakt.tv/search/shows?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tramper.nz/favicon.ico",
+ "name": "Tramper.nz",
+ "triggers": [
+ "tramper"
+ ],
+ "regions": {
+ "default": "http://tramper.nz/?view=search&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.transfermarkt.co.uk/android-chrome-192x192.png",
+ "name": "Transfermarkt",
+ "triggers": [
+ "trfuk"
+ ],
+ "regions": {
+ "default": "http://www.transfermarkt.co.uk/schnellsuche/ergebnis/schnellsuche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.transfermarkt.co.uk/android-chrome-192x192.png",
+ "name": "Transfermarkt",
+ "triggers": [
+ "tmuk"
+ ],
+ "regions": {
+ "default": "http://www.transfermarkt.co.uk/schnellsuche/ergebnis/schnellsuche?query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.transfermarkt.com/android-chrome-192x192.png",
+ "name": "Transfermarkt.com",
+ "triggers": [
+ "tmen"
+ ],
+ "regions": {
+ "default": "http://www.transfermarkt.com/schnellsuche/ergebnis/schnellsuche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.transfermarkt.de/android-chrome-192x192.png",
+ "name": "transfermarkt.de",
+ "triggers": [
+ "trfde"
+ ],
+ "regions": {
+ "default": "http://www.transfermarkt.de/de/undefined/suche/ergebnis.html?quicksearch={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.transfermarkt.de/android-chrome-192x192.png",
+ "name": "transfermarkt.de",
+ "triggers": [
+ "transfermarkt"
+ ],
+ "regions": {
+ "default": "http://www.transfermarkt.de/schnellsuche/ergebnis/schnellsuche?query={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://tfwiki.net/mediawiki/images2/2/26/Favicon.png",
+ "name": "Transformers Wiki",
+ "triggers": [
+ "tfwiki"
+ ],
+ "regions": {
+ "default": "http://tfwiki.net/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.reddit.com/favicon.ico",
+ "name": "transgendercirclejerk",
+ "triggers": [
+ "tgcj"
+ ],
+ "regions": {
+ "default": "https://www.reddit.com/r/transgendercirclejerk/search?restrict_sr=on&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sjp.pwn.pl/favicon-32x32.png",
+ "name": "Translatica",
+ "triggers": [
+ "trpl"
+ ],
+ "regions": {
+ "default": "http://translatica.pl/szukaj/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tfl.gov.uk/cdn/static/assets/icons/favicon-32x32.png",
+ "name": "Transport for London",
+ "triggers": [
+ "tfl"
+ ],
+ "regions": {
+ "default": "https://www.tfl.gov.uk/tfl/search/?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.trashmail.de/favicon.ico",
+ "name": "Trashmail",
+ "triggers": [
+ "trash"
+ ],
+ "regions": {
+ "default": "http://www.trashmail.de/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://trashwiki.org/files/trash/favicon.ico",
+ "name": "TrashWiki",
+ "triggers": [
+ "trashwiki"
+ ],
+ "regions": {
+ "default": "http://trashwiki.org/w/index.php?search={{{term}}}&title=Special:Search"
+ }
+ },
+ {
+ "favicon": "https://www.travelgator.com/build/images/favicon.ico?v=1527262914",
+ "name": "TravelGator",
+ "triggers": [
+ "travelgator"
+ ],
+ "regions": {
+ "default": "https://www.travelgator.com/en/search/?locationquery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.travellerrpg.com/favicon.ico",
+ "name": "Traveller RPG",
+ "triggers": [
+ "trw"
+ ],
+ "regions": {
+ "default": "http://wiki.travellerrpg.com/index.php?title=Special%3ASearch&search={{{term}}}}"
+ }
+ },
+ {
+ "favicon": "//d2nr9bmlv58mpj.cloudfront.net/favicon.ico",
+ "name": "TravelMath",
+ "triggers": [
+ "tmn"
+ ],
+ "regions": {
+ "default": "http://www.travelmath.com/nearest-airport/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.travis-ci.org/images/favicon-076a22660830dc325cc8ed70e7146a59.png",
+ "name": "Travis CI",
+ "triggers": [
+ "travis"
+ ],
+ "regions": {
+ "default": "https://travis-ci.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.treccani.it/favicon.ico",
+ "name": "treccani",
+ "triggers": [
+ "treccani"
+ ],
+ "regions": {
+ "default": "http://www.treccani.it/vocabolario/tag/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.treccani.it/favicon.ico",
+ "name": "Treccani Biografie",
+ "triggers": [
+ "tbio"
+ ],
+ "regions": {
+ "default": "http://www.treccani.it/biografie/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.treccani.it/favicon.ico",
+ "name": "Treccani Enciclopedia",
+ "triggers": [
+ "te",
+ "tenc"
+ ],
+ "regions": {
+ "default": "http://www.treccani.it/enciclopedia/tag/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.treccani.it/favicon.ico",
+ "name": "Treccani Sinonimi e Contrari",
+ "triggers": [
+ "tsin"
+ ],
+ "regions": {
+ "default": "http://www.treccani.it/sinonimi/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.treccani.it/favicon.ico",
+ "name": "Treccani Vocabolario",
+ "triggers": [
+ "tvoc"
+ ],
+ "regions": {
+ "default": "http://www.treccani.it/vocabolario/tag/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://tolweb.org/favicon.ico",
+ "name": "Tree of Life Web Project",
+ "triggers": [
+ "tol"
+ ],
+ "regions": {
+ "default": "http://tolweb.org/tree/home.pages/search.html?q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "http://www.tolweb.org/favicon.ico",
+ "name": "Tree Of Life Web Project",
+ "triggers": [
+ "tof"
+ ],
+ "regions": {
+ "default": "http://www.tolweb.org/tree/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trello.com/favicon.ico",
+ "name": "Trello",
+ "triggers": [
+ "trello"
+ ],
+ "regions": {
+ "default": "https://trello.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.trendmicro.com/content/dam/trendmicro/favicon.ico",
+ "name": "Tren Micro",
+ "triggers": [
+ "trendmicro"
+ ],
+ "regions": {
+ "default": "https://www.trendmicro.com/us/serp/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.trendmicro.com/content/dam/trendmicro/favicon.ico",
+ "name": "Trend Micro Security Blog",
+ "triggers": [
+ "tmblog"
+ ],
+ "regions": {
+ "default": "http://blog.trendmicro.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trendingimages.in/content/images/system/default/favicon.png",
+ "name": "TrendingImages",
+ "triggers": [
+ "trending"
+ ],
+ "regions": {
+ "default": "https://trendingimages.in/search/images/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://trendstop.knack.be/favicon.ico",
+ "name": "TrendsTop",
+ "triggers": [
+ "trendstop"
+ ],
+ "regions": {
+ "default": "http://trendstop.knack.be/nl/results.aspx?s1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trendyscooter.com/image/catalog/favicon-250.png",
+ "name": "TrendyScooter",
+ "triggers": [
+ "trendyscooter"
+ ],
+ "regions": {
+ "default": "http://trendyscooter.com/?route=product/search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tdg.ch/favicon.ico",
+ "name": "Tribune de Genève",
+ "triggers": [
+ "tdg"
+ ],
+ "regions": {
+ "default": "http://www.tdg.ch/services/recherche/?order=date&q={{{term}}}&submitSearch=Chercher&date=alle"
+ }
+ },
+ {
+ "favicon": "https://cdn3.trictrac.net/favicon.ico",
+ "name": "Tric Trac",
+ "triggers": [
+ "trictrac"
+ ],
+ "regions": {
+ "default": "http://www.trictrac.net/recherche?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://triklo.com/search/images/favicon.ico",
+ "name": "Triklo",
+ "triggers": [
+ "triklo"
+ ],
+ "regions": {
+ "default": "https://triklo.com/search/courses?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.tacdn.com/favicon.ico",
+ "name": "Trip Advisor",
+ "triggers": [
+ "tripadvisor"
+ ],
+ "regions": {
+ "default": "http://www.tripadvisor.com/Search?q={{{term}}}&sub-search=Go"
+ }
+ },
+ {
+ "favicon": "http://www.tripdatabase.com/favicon.ico",
+ "name": "Trip Database",
+ "triggers": [
+ "trip"
+ ],
+ "regions": {
+ "default": "http://www.tripdatabase.com/search?criteria={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.tacdn.com/favicon.ico",
+ "name": "tripadvisor",
+ "triggers": [
+ "ta"
+ ],
+ "regions": {
+ "default": "http://www.tripadvisor.com/Search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.tacdn.com/favicon.ico",
+ "name": "Tripadvisor.in",
+ "triggers": [
+ "tain"
+ ],
+ "regions": {
+ "default": "https://www.tripadvisor.in/Search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.tripsit.me/srv/http/wiki/favicon.ico",
+ "name": "TripSit",
+ "triggers": [
+ "tripsit"
+ ],
+ "regions": {
+ "default": "https://wiki.tripsit.me/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://trisquel.info/sites/default/themes/trisquel7/favicon.ico",
+ "name": "Trisquel",
+ "triggers": [
+ "trisquel"
+ ],
+ "regions": {
+ "default": "https://trisquel.info/en/search/node/{{{term}}} & https://trisquel.info/en/search/node/ekbhbbeigcjc"
+ }
+ },
+ {
+ "favicon": "http://www.tritrans.net/favicon.ico",
+ "name": "TriTrans",
+ "triggers": [
+ "ntrans"
+ ],
+ "regions": {
+ "default": "http://www.tritrans.net/cgibin/translate.cgi?spraak=Norsk&Fra={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tritrans.net/favicon.ico",
+ "name": "TriTrans",
+ "triggers": [
+ "strans"
+ ],
+ "regions": {
+ "default": "http://www.tritrans.net/cgibin/translate.cgi?spraak=Spansk&Fra={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tritrans.net/favicon.ico",
+ "name": "TriTrans",
+ "triggers": [
+ "3t"
+ ],
+ "regions": {
+ "default": "http://www.tritrans.net/cgibin/translate.cgi?spraak=Engelsk&Fra={{{term}}}&button=Translate%21"
+ }
+ },
+ {
+ "favicon": "http://www.tritrans.net/favicon.ico",
+ "name": "TriTrans",
+ "triggers": [
+ "etrans"
+ ],
+ "regions": {
+ "default": "http://www.tritrans.net/cgibin/translate.cgi?spraak=Engelsk&Fra={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.trivago.com/favicon_32x32.png",
+ "name": "trivago",
+ "triggers": [
+ "trivago"
+ ],
+ "regions": {
+ "default": "https://www.trivago.com/?sQuery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tropicalprice.com/favicon.ico",
+ "name": "Tropical Price",
+ "triggers": [
+ "tropicalprice"
+ ],
+ "regions": {
+ "default": "https://tropicalprice.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn2.trouva.com/checkout/favicon.ico?v=3.0",
+ "name": "Trouva",
+ "triggers": [
+ "trouva"
+ ],
+ "regions": {
+ "default": "https://www.trouva.com/shop/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.trovaprezzi.it/favicon.ico",
+ "name": "Trovaprezzi.it",
+ "triggers": [
+ "trovaprezzi"
+ ],
+ "regions": {
+ "default": "http://www.trovaprezzi.it/categoria.aspx?libera={{{term}}}&id=-1&prezzomin=&prezzomax="
+ }
+ },
+ {
+ "favicon": "http://trove.nla.gov.au/static/77a64ec/img/favicon.ico",
+ "name": "Trove - National Library of Australia",
+ "triggers": [
+ "trove"
+ ],
+ "regions": {
+ "default": "http://trove.nla.gov.au/result?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/trove/images/6/64/Favicon.ico/revision/latest?cb=20150509135151",
+ "name": "Trove Wikia",
+ "triggers": [
+ "twiki"
+ ],
+ "regions": {
+ "default": "http://trove.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.trulia.com/favicon.ico",
+ "name": "Trulia",
+ "triggers": [
+ "trulia"
+ ],
+ "regions": {
+ "default": "http://www.trulia.com/validate.php?tst=h&display=for+sale&search={{{term}}}&type=&min_price=min&max_price=max&min_num_beds=0&min_num_baths=0&min_size=0&submit_btn=SEARCH"
+ }
+ },
+ {
+ "favicon": "http://www.trulytexan.com/favicon.ico",
+ "name": "Truly Texan",
+ "triggers": [
+ "trulytexan"
+ ],
+ "regions": {
+ "default": "http://www.trulytexan.com/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.trustpilot.net/brand-assets/1.5.0/favicons/favicon-16x16.png",
+ "name": "Trustpilot",
+ "triggers": [
+ "trustpilot"
+ ],
+ "regions": {
+ "default": "https://www.trustpilot.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tryggehandel.se/wp-content/uploads/2015/02/trygg_e-handel_hanglas_300.png",
+ "name": "Trygg E-Handel",
+ "triggers": [
+ "tryggehandel"
+ ],
+ "regions": {
+ "default": "https://www.tryggehandel.se/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static1.s-trojmiasto.pl/_img/favicon/touch-icon-192x192.png",
+ "name": "Trójmiasto",
+ "triggers": [
+ "3m"
+ ],
+ "regions": {
+ "default": "http://www.trojmiasto.pl/s/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "tst2005's github repositories",
+ "triggers": [
+ "tst2005"
+ ],
+ "regions": {
+ "default": "https://github.com/tst2005?tab=repositories&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://images.fm.tuba.pl/tuba3/favicon.ico",
+ "name": "Tuba FM",
+ "triggers": [
+ "tubafm"
+ ],
+ "regions": {
+ "default": "http://fm.tuba.pl/artysta/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tubalr.com/favicon.ico",
+ "name": "Tubalr",
+ "triggers": [
+ "tubalr"
+ ],
+ "regions": {
+ "default": "http://tubalr.com/just/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tucao.tv/favicon.ico",
+ "name": "tucao.tv",
+ "triggers": [
+ "tucao"
+ ],
+ "regions": {
+ "default": "http://www.tucao.tv/index.php?m=search&q={{{term}}}&a=init2"
+ }
+ },
+ {
+ "favicon": "http://www.tudogostoso.com.br/favicon.ico",
+ "name": "Tudo Gotoso",
+ "triggers": [
+ "tudogostoso"
+ ],
+ "regions": {
+ "default": "http://www.tudogostoso.com.br/busca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tuffyproducts.com/favicon.ico",
+ "name": "Tuffy Security Products",
+ "triggers": [
+ "tuffyproducts"
+ ],
+ "regions": {
+ "default": "https://www.tuffyproducts.com/search.aspx?searchterm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tujavortaro.net/favicon.ico",
+ "name": "Tuja Vortaro",
+ "triggers": [
+ "tuj"
+ ],
+ "regions": {
+ "default": "http://www.tujavortaro.net/?vorto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tum.de/favicon-196x196.png",
+ "name": "TUM",
+ "triggers": [
+ "tum"
+ ],
+ "regions": {
+ "default": "https://www.tum.de/suche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.tumblr.com/images/favicons/favicon.ico?_v=12c4b75f9c08fe2c00c9d3e2fb266133",
+ "name": "tumblr",
+ "triggers": [
+ "tumblr"
+ ],
+ "regions": {
+ "default": "https://www.tumblr.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://36.media.tumblr.com/d9137704101dede8f1d408a89e17a41d/tumblr_nilomzWs6S1u93wl3o1_250.png",
+ "name": "Tumbview",
+ "triggers": [
+ "tumbview"
+ ],
+ "regions": {
+ "default": "http://tumbview.com/{{{term}}}/grid/"
+ }
+ },
+ {
+ "favicon": "//www.tf-cdn.com/-c911bba/i/tunefind-32.png",
+ "name": "TuneFind",
+ "triggers": [
+ "tunef",
+ "tunefind"
+ ],
+ "regions": {
+ "default": "https://www.tunefind.com/search/site?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn-beta.tunein.com/assets/img/favicon-v2.ico",
+ "name": "TuneIn",
+ "triggers": [
+ "tunein",
+ "ti"
+ ],
+ "regions": {
+ "default": "http://tunein.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tunisie-annonce.com/Images/icone_principale_tunisie.gif",
+ "name": "Tunisie Annonces",
+ "triggers": [
+ "tn-annonces"
+ ],
+ "regions": {
+ "default": "http://www.tunisie-annonce.com/search.asp?cx=partner-pub-4455074141785177%3Aabc2p7-5h3d&cof=FORID%3A10&ie=ISO-8859-1&q={{{term}}}&sa=Rechercher&siteurl=www.tunisie-annonce.com%2F&ref=&ss=1479j334475j10"
+ }
+ },
+ {
+ "favicon": "https://www.turbosquid.com/favicon-16x16.png",
+ "name": "TurboSquid",
+ "triggers": [
+ "ts"
+ ],
+ "regions": {
+ "default": "https://www.turbosquid.com/Search/Index.cfm?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tureng.com/favicon.ico",
+ "name": "Tureng",
+ "triggers": [
+ "tur"
+ ],
+ "regions": {
+ "default": "http://tureng.com/tr/turkce-ingilizce/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tureng.com/favicon.ico",
+ "name": "Tureng Dictionary",
+ "triggers": [
+ "tureng"
+ ],
+ "regions": {
+ "default": "http://tureng.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://myturnstone.com/wp-content/uploads/2015/02/favicon-blue.png",
+ "name": "Turnstone",
+ "triggers": [
+ "turnstone"
+ ],
+ "regions": {
+ "default": "http://myturnstone.com/?s={{{term}}}&lang=en"
+ }
+ },
+ {
+ "favicon": "http://search.tut.by/favicon.ico",
+ "name": "TUT.BY",
+ "triggers": [
+ "tut"
+ ],
+ "regions": {
+ "default": "http://search.tut.by/?status=1&ru=1&encoding=1&page=0&how=rlv&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tutorialfactory.org/favicon.ico",
+ "name": "Tutorialfactory",
+ "triggers": [
+ "tutorialfactory"
+ ],
+ "regions": {
+ "default": "https://tutorialfactory.org/de/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.tutsplus.com/assets/favicon-b490c89e0c7d5748dbde558df6385abb.png",
+ "name": "Tuts+",
+ "triggers": [
+ "tuts"
+ ],
+ "regions": {
+ "default": "http://hub.tutsplus.com/search?utf8=✓&view=grid&search%5Bkeywords%5D={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://c.tutti.ch/react/favicon.ico?v=00Q60edNGe",
+ "name": "Tutti ticino",
+ "triggers": [
+ "tti"
+ ],
+ "regions": {
+ "default": "https://www.tutti.ch/ticino?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://c.tutti.ch/react/favicon.ico?v=00Q60edNGe",
+ "name": "tutti.ch",
+ "triggers": [
+ "tuttich"
+ ],
+ "regions": {
+ "default": "https://www.tutti.ch/ganze-schweiz?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.tuttogossip.it/favicon.ico",
+ "name": "TuttoGossip",
+ "triggers": [
+ "tuttogossip"
+ ],
+ "regions": {
+ "default": "http://www.tuttogossip.it/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tuxdb.com/section/favicon.ico",
+ "name": "TuxDB",
+ "triggers": [
+ "tuxdb"
+ ],
+ "regions": {
+ "default": "https://tuxdb.com/section/db&page=0&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static-5.tvgcdn.net/www/img/favicon.svg",
+ "name": "TV Guide",
+ "triggers": [
+ "tvguide"
+ ],
+ "regions": {
+ "default": "http://www.tvguide.com/search/index.aspx?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tvlanguedoc.com/favicon.ico",
+ "name": "TV LANGUEDOC",
+ "triggers": [
+ "tvl"
+ ],
+ "regions": {
+ "default": "http://tvlanguedoc.com/search_gcse/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tvspielfilm.de/favicon.ico",
+ "name": "TV Spielfilm",
+ "triggers": [
+ "tvspielfilm"
+ ],
+ "regions": {
+ "default": "http://www.tvspielfilm.de/suche/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://static.tvtropes.org/img/icons/favicon-192x192.png",
+ "name": "TV Tropes",
+ "triggers": [
+ "tvtropes"
+ ],
+ "regions": {
+ "default": "http://tvtropes.org/pmwiki/search_result.php?cx=partner-pub-6610802604051523%3Aamzitfn8e7v&cof=FORID%3A10&ie=ISO-8859-1&q={{{term}}}&siteurl=tvtropes.org%2Fpmwiki%2Fpmwiki.php%2FMain%2FHomePage"
+ }
+ },
+ {
+ "favicon": "http://www.wunschliste.de/gfx/icons/favicon-128.png",
+ "name": "TV Wunschliste",
+ "triggers": [
+ "wlde"
+ ],
+ "regions": {
+ "default": "http://www.wunschliste.de/suche/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tv.com/favicon.ico",
+ "name": "TV.com",
+ "triggers": [
+ "tvcom"
+ ],
+ "regions": {
+ "default": "http://www.tv.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tv.com/favicon.ico",
+ "name": "tv.com",
+ "triggers": [
+ "tv"
+ ],
+ "regions": {
+ "default": "http://www.tv.com/search?q= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tv4play.se/favicon.ico",
+ "name": "Tv4play",
+ "triggers": [
+ "tv4play"
+ ],
+ "regions": {
+ "default": "https://www.tv4play.se/sök?utf8=✓&q={{{term}}}&button="
+ }
+ },
+ {
+ "favicon": "http://www.tv5monde.com/favicon.ico",
+ "name": "TV5 Monde",
+ "triggers": [
+ "tv5"
+ ],
+ "regions": {
+ "default": "http://www.tv5monde.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tvi24.iol.pt/favicon/favicon-128.png",
+ "name": "tvi24",
+ "triggers": [
+ "tvi"
+ ],
+ "regions": {
+ "default": "http://www.tvi24.iol.pt/pesquisa/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.tv-links.eu/favicon.ico",
+ "name": "TVLinks",
+ "triggers": [
+ "tvlinks"
+ ],
+ "regions": {
+ "default": "http://www.tv-links.eu/_search/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.tvmaze.com/images/favico/favicon-32x32.png",
+ "name": "TVMaze",
+ "triggers": [
+ "tvmaze"
+ ],
+ "regions": {
+ "default": "https://www.tvmaze.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tvrage.com/favicon.ico",
+ "name": "TVRage",
+ "triggers": [
+ "tvrage"
+ ],
+ "regions": {
+ "default": "http://www.tvrage.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tvseriesfinale.com/wp-content/uploads/2013/09/cropped-TVSF-1400x1400-192x192.png",
+ "name": "TVSeriesFinale",
+ "triggers": [
+ "tvseriesfinale"
+ ],
+ "regions": {
+ "default": "http://tvseriesfinale.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.tvshowtime.com/favicon.ico",
+ "name": "TVShow Time",
+ "triggers": [
+ "tvst"
+ ],
+ "regions": {
+ "default": "https://www.tvshowtime.com/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tvsubtitles.net/favicon.ico",
+ "name": "TVsubtitles.net",
+ "triggers": [
+ "tvsubs"
+ ],
+ "regions": {
+ "default": "http://www.tvsubtitles.net/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.tvtropes.org/img/icons/favicon-192x192.png",
+ "name": "tvtropes",
+ "triggers": [
+ "tvt"
+ ],
+ "regions": {
+ "default": "http://tvtropes.org/pmwiki/search_result.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tweakers.net/favicon.ico",
+ "name": "Tweakers Pricewatch",
+ "triggers": [
+ "pricewatch"
+ ],
+ "regions": {
+ "default": "http://tweakers.net/pricewatch/zoeken/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tweakers.net/favicon.ico",
+ "name": "Tweakers Pricewatch",
+ "triggers": [
+ "tpw"
+ ],
+ "regions": {
+ "default": "https://tweakers.net/pricewatch/zoeken/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tweakers.net/favicon.ico",
+ "name": "Tweakers Vraag & Aanbod",
+ "triggers": [
+ "tva"
+ ],
+ "regions": {
+ "default": "https://tweakers.net/aanbod/zoeken/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tweakers.net/favicon.ico",
+ "name": "tweakers.net",
+ "triggers": [
+ "tweakers"
+ ],
+ "regions": {
+ "default": "https://tweakers.net/nieuws/zoeken/?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://twig.symfony.com/favicon.ico",
+ "name": "Twig",
+ "triggers": [
+ "twig"
+ ],
+ "regions": {
+ "default": "https://twig.symfony.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://twit.tv/favicon.ico",
+ "name": "TWiT",
+ "triggers": [
+ "twittv"
+ ],
+ "regions": {
+ "default": "https://twit.tv/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.twitchcdn.net/assets/favicon-75270f9df2b07174c23c.ico",
+ "name": "Twitch Channel",
+ "triggers": [
+ "twitchc",
+ "twitch"
+ ],
+ "regions": {
+ "default": "https://twitch.tv/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.twitchcdn.net/assets/favicon-75270f9df2b07174c23c.ico",
+ "name": "Twitch Chat",
+ "triggers": [
+ "twitchchat"
+ ],
+ "regions": {
+ "default": "https://www.twitch.tv/{{{term}}}/chat?popout="
+ }
+ },
+ {
+ "favicon": "https://static.twitchcdn.net/assets/favicon-75270f9df2b07174c23c.ico",
+ "name": "Twitch TV",
+ "triggers": [
+ "twich"
+ ],
+ "regions": {
+ "default": "https://www.twitch.tv/search?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://player.twitch.tv/favicon.png",
+ "name": "Twitch.tv",
+ "triggers": [
+ "twitchpop"
+ ],
+ "regions": {
+ "default": "https://player.twitch.tv/?volume=0.5&channel={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//abs.twimg.com/favicons/favicon.ico",
+ "name": "Twitter",
+ "triggers": [
+ "twitter",
+ "tw",
+ "twit",
+ "t"
+ ],
+ "regions": {
+ "default": "https://twitter.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//abs.twimg.com/favicons/favicon.ico",
+ "name": "Twitter Hashtags",
+ "triggers": [
+ "hashtag"
+ ],
+ "regions": {
+ "default": "https://twitter.com/search?q=%23{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//abs.twimg.com/favicons/favicon.ico",
+ "name": "Twitter User",
+ "triggers": [
+ "twitters",
+ "twitteruser",
+ "@"
+ ],
+ "regions": {
+ "default": "https://twitter.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//abs.twimg.com/favicons/favicon.ico",
+ "name": "Twitter users",
+ "triggers": [
+ "twuser"
+ ],
+ "regions": {
+ "default": "https://twitter.com/search/users?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://isittaxed.ca/favicon.ico",
+ "name": "Txt Tax",
+ "triggers": [
+ "tax"
+ ],
+ "regions": {
+ "default": "http://isittaxed.ca/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tyda.se/static/img/tyda-favicon-64",
+ "name": "Tyda.se",
+ "triggers": [
+ "tyda"
+ ],
+ "regions": {
+ "default": "http://tyda.se/search?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tyda.se/static/img/tyda-favicon-64",
+ "name": "Tyda.se Dictionary (Swedish-German)",
+ "triggers": [
+ "tydade"
+ ],
+ "regions": {
+ "default": "http://tyda.se/search/{{{term}}}?lang%5B0%5D=de&lang%5B1%5D=sv"
+ }
+ },
+ {
+ "favicon": "http://tyda.se/static/img/tyda-favicon-64",
+ "name": "Tyda.​se Dictionary (Swedish-Latin)",
+ "triggers": [
+ "tydala"
+ ],
+ "regions": {
+ "default": "http://tyda.se/search/{{{term}}}?lang%5B0%5D=la&lang%5B1%5D=sv"
+ }
+ },
+ {
+ "favicon": "https://typo3.org/typo3conf/ext/t3olayout/Resources/Public/Icons/favicon.ico",
+ "name": "TYPO3 Extension Repository",
+ "triggers": [
+ "ter"
+ ],
+ "regions": {
+ "default": "https://typo3.org/extensions/repository/?id=23&L=0&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.telerama.fr/sites/tr_master/themes/tr/favicon.ico",
+ "name": "Télérama",
+ "triggers": [
+ "telerama"
+ ],
+ "regions": {
+ "default": "http://www.telerama.fr/recherche/recherche.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.tdk.gov.tr/templates/tdk/favicon.ico",
+ "name": "Türk Dil Kurumu",
+ "triggers": [
+ "tdk"
+ ],
+ "regions": {
+ "default": "http://www.tdk.gov.tr/index.php?option=com_gts&kelime={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://tezaurs.lv/img/favicon-192x192.png",
+ "name": "Tēzaurs",
+ "triggers": [
+ "tezaurs"
+ ],
+ "regions": {
+ "default": "http://tezaurs.lv/#/sv/?{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ufret.jp/favicon.ico",
+ "name": "U-フレット",
+ "triggers": [
+ "ufret"
+ ],
+ "regions": {
+ "default": "http://www.ufret.jp/search.php?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.e-publishing.af.mil/favicon.ico",
+ "name": "U.S. Air Force Forms and Publications",
+ "triggers": [
+ "afpubs"
+ ],
+ "regions": {
+ "default": "http://www.e-publishing.af.mil/index.asp?txtSearchWord={{{term}}}&rdoFormPub=rdoPub"
+ }
+ },
+ {
+ "favicon": "https://www.univie.ac.at/fileadmin/templates/Startseite/assets/favicon-uni.png",
+ "name": "u:find - Universität Wien",
+ "triggers": [
+ "ufind"
+ ],
+ "regions": {
+ "default": "https://ufind.univie.ac.at/de/search.html?filter=all&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.uaar.it/sites/default/files/favicon_0.ico",
+ "name": "UAAR",
+ "triggers": [
+ "uaar"
+ ],
+ "regions": {
+ "default": "http://www.uaar.it/news/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uappexplorer.com/img/logo.png",
+ "name": "uApp Explorer",
+ "triggers": [
+ "uappex"
+ ],
+ "regions": {
+ "default": "https://uappexplorer.com/apps?q={{{term}}}&sort=relevance"
+ }
+ },
+ {
+ "favicon": "https://cdnssl.ubergizmo.com/wp-content/themes/ug_4_9989/favicon.ico",
+ "name": "ubergizmo",
+ "triggers": [
+ "ubergizmo"
+ ],
+ "regions": {
+ "default": "http://www.ubergizmo.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://uberproxy.net/favicon.ico",
+ "name": "Uberproxy",
+ "triggers": [
+ "uberp"
+ ],
+ "regions": {
+ "default": "http://uberproxy.net/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.uberspace.de/lib/tpl/uberspace/images/favicon.ico",
+ "name": "Uberspace-Wiki",
+ "triggers": [
+ "uberspace"
+ ],
+ "regions": {
+ "default": "https://wiki.uberspace.de/start?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//res.cloudinary.com/airos/image/upload/announcement/favicon.ico",
+ "name": "Ubiquiti Forums",
+ "triggers": [
+ "ubiquiti"
+ ],
+ "regions": {
+ "default": "https://community.ubnt.com/t5/forums/searchpage/tab/message?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ubottu.com/favicon.ico",
+ "name": "Ubottu.com",
+ "triggers": [
+ "ubottu"
+ ],
+ "regions": {
+ "default": "http://ubottu.com/factoids.cgi?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ubuntronics.com/favicon.ico",
+ "name": "Ubuntronics",
+ "triggers": [
+ "ubuntronics"
+ ],
+ "regions": {
+ "default": "http://www.ubuntronics.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.ubuntu.com/v1/49a1a858-favicon-32x32.png",
+ "name": "Ubuntu",
+ "triggers": [
+ "ubuntu"
+ ],
+ "regions": {
+ "default": "https://www.ubuntu.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.ubuntu.com/v1/0f3c662c-ico_32px.png",
+ "name": "Ubuntu Apps Directory",
+ "triggers": [
+ "uapps"
+ ],
+ "regions": {
+ "default": "https://apps.ubuntu.com/cat/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.ubuntu.com/v1/49a1a858-favicon-32x32.png",
+ "name": "Ubuntu Developer",
+ "triggers": [
+ "udev"
+ ],
+ "regions": {
+ "default": "https://developer.ubuntu.com/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://help.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Documentation",
+ "triggers": [
+ "docubu"
+ ],
+ "regions": {
+ "default": "https://help.ubuntu.com/search.html?cof=FORID%3A9&cx=004599128559784038176%3Avj_p0xo-nng&ie=UTF-8&q={{{term}}}&sa=Search"
+ }
+ },
+ {
+ "favicon": "https://ubuntuforums.org/favicon.ico",
+ "name": "Ubuntu Forums",
+ "triggers": [
+ "ubuntuf",
+ "ubuntuforums"
+ ],
+ "regions": {
+ "default": "https://ubuntuforums.org/search.php?do=process&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://launchpad.net/@@/launchpad.png",
+ "name": "Ubuntu Launchpad Package Page",
+ "triggers": [
+ "upkg"
+ ],
+ "regions": {
+ "default": "https://launchpad.net/ubuntu/+source/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://manpages.ubuntu.com/assets/light/images/favicon.ico",
+ "name": "Ubuntu Manpages",
+ "triggers": [
+ "uman"
+ ],
+ "regions": {
+ "default": "http://manpages.ubuntu.com/cgi-bin/search.py?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QA/wD/AP gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AUTAw4w6sBlWAAABv1JREFUWMPFV1tMHNcZ/ua2MwssNlAZDAshBjdg1RjLtUsqlVaWrNLX1lFa2ZGa4kZVXp1GcVIpVR/y0FRKHdpKdVspUqRKTcVDSFLHdaMmjWqcui4GAjawXALsYljYncvO7MzOmfP3AXa02I7ZOq36S0dnd2bO b7/ev4D/J9FeIA1e7q7u483NzcfjkajNQDEQqFgrK6ujg8PD38IYPZ/QUA7ceLEU11dXT84duxYZ0dHB2praxFRFAiCgIBzZDIZzMzM4Nq1a6nx8fHfDg0N/QJA jMTeLSn5 lvnTz5ysnHHovEKiuhZ7MoFAoQRRGyokDZGpFIBNFoFKqmIZ1OY2hoCIODgz 7dOnSD/9jGz8UjwsAqvr7 z8cGxujbCZDYzdu0MTHH1NiepoW5ucpubxMa7dvU2Zjg0zDIMe2yfM8Yr5PnHMiIlpYWKCzZ89 omlaS9ngn29vFwBU/ j551cty6KZqSm6NTlJc4kELS4s0EoySem1NcpmMmSZJjmOQwXPI8YYbcJuF8YYnT9/3vtcTU3H9/v7y3J55QvnziUdx FTt27R/OwsLS0u0u1UitbX10nXdcpZFuXzefJ9n4IgoJ2Ec04DAwOuqqot zcV/HQ58 STb5qmuWnmpSVaXVmhjfV1MnSdbNsm13WJMUamadLc3Byl02kqR3zfp3PPPZe4E08q/XPs0KHTP37ppXOxykrIsgxN0xDRNKiqikgkAkVRIMsyLMvC9evXkc/nsbKyAs45ampq7quYKIroOHCgdurmzaqZROJy Lz0m8dPnfr5gY4OSJKEaEUFNE2DpqpQIxEokQgkSYIgCEgmk CcI5/PIwgCpFKpsuKrqbERp06ffgbAnrsIfO3IkW f6Our8xmDqqqbWqsqZEWBKEnb8rW6uhqGYcBxHNi2jUgksiM4ESEIAvT29uLxkyefvovAF3t6ntq7dy8kSYKqaVAUBaIoQhDujpl4PI7Ozk7IsoyGhgYcPXp054onCAiCALHqanQfOvTd4nO5GPn7Ozu/KggCZFmGKIo7btjW1ob9 /eDc15 2RUEcM7xha6uhwC0A0jIANAAHGxpawMRlQW urqKCxcuQFEUEBEOHz6Mvr6 HddJkgTOORrjcfR0dX3l6thYQgSAjtbW7tiuXSDOyyLAGINt23AcB47jwHXdsi1ARFAiEbS2tnaHLqiorq4TRRGcqGxz6roOVVXBOYfneWUTAADOOVRVjYUEOGOK53ngQVDWRkQEXdehaRo456EFgiCAIAgh0L0CmIhQKBTACgUhJJDPZg3LNOEzBrqPFYgIRATO TYCnueBcx4GZJFE6Siu930f XweuWw2FxJYXVmZWFtehvfIIwiCAJIkfSpwMZ8Nw0ChUAgtwBgLCZSmbzGzSrXPptNIJBKjYR24BYwujI4iZ9soFAr3BA CICTBGINhGDBNE4ZhwPM8BEEAxlg4F3 Xpqnv 3BdF3OTk5hIpa6UFqLVxOjoRGZjA7Ztb3NDsYAQ0baNLcuCZVnI5XJwXRe 74fvi6PULcUYyeo6JkZGFgFMb6uEc5OTr02PjSGbzd4zqoMgCDVijME0TeRyOViWFVqglETREqVpbds25qemMDE29nsAfBuBfxjGa8NDQ14ylYJlWQhKMkIUxdANRZBiDbBtGwXPC4GL7/lWTSnGE cci0tLuHLxIl1NJH5zFwEA6xMfffSTK 8g VkEo7jhK6QJGnbRkUQXdeRy VgWtY2zYuukyQptMBGJoPhy5fx1/feewWqOn/nWQAA Fc /9Pdb7zxzYZ9 45Eo1E0x OIRqMQRTEsOowx1NfXY3BwEASAOEdTUxM8zwsjXpIkaFt9hO/7sG0bf7l4EW /vrMRDr9IgC6Z0OyR1HoE13/c3529nu7m5rU6tpaaKoKZav9VhQl7AkaGhqwt6EB9fX1iMVim6eoqiIajaKqqgqqqkIURRiGgYtvv40/DAy4l0dHT0RkOcnud4DtragQqoDOr7e3W796 WUaGRmhtbU1cl037HaJiFzXJdM0KZvNkr7Vrvm v60NS6ZS9OtXX6VvHDyYF4FHd1VVSWWV2ta6OjEKtPfs2TP zBNP0J/eeoumpqcpnU6TbdvEGLtv/2c7Dv3tgw/o2TNn6EvNzQkJ6K5QFOlBLiYVbar6QntLy7NHjx Xu3t70dzWhpq6OsSqqqBFo6F7fN9HNpvF5Ogo/v7uu/jn /zm4uLv1yy7Rc1SdLdIKAHu5qpqgjPa2nVtDP1u3d/Jx6P72t GHUNTaiIhYDBAGWYWAjlcLi/DySKytLt3X9j8uO87utYsP W5dTCYAKoH2Xony5Vpa7BUmqISIQYGU874bJ2FUAMwDsnYA/y 24dF1xpjvmsuXfdk7Ltb4QGzcAAAAASUVORK5CYII=",
+ "name": "Ubuntu Manuals",
+ "triggers": [
+ "man"
+ ],
+ "regions": {
+ "default": "http://manpage.me/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Packages",
+ "triggers": [
+ "ubuntupack"
+ ],
+ "regions": {
+ "default": "https://packages.ubuntu.com/search?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Packages",
+ "triggers": [
+ "up"
+ ],
+ "regions": {
+ "default": "https://packages.ubuntu.com/search?keywords={{{term}}}&searchon=names"
+ }
+ },
+ {
+ "favicon": "https://packages.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Packages",
+ "triggers": [
+ "upackages"
+ ],
+ "regions": {
+ "default": "https://packages.ubuntu.com/search?keywords={{{term}}}&searchon=names&suite=all&section=all"
+ }
+ },
+ {
+ "favicon": "https://packages.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Packages Search",
+ "triggers": [
+ "puc"
+ ],
+ "regions": {
+ "default": "https://packages.ubuntu.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.ubuntu.com/v1/0f3c662c-ico_32px.png",
+ "name": "Ubuntu Software Center",
+ "triggers": [
+ "usc"
+ ],
+ "regions": {
+ "default": "https://apps.ubuntu.com/cat/search/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://forum.ubuntu-tr.net/favicon.ico",
+ "name": "Ubuntu Türkiye",
+ "triggers": [
+ "ubuntutr"
+ ],
+ "regions": {
+ "default": "https://forum.ubuntu-tr.net/index.php?action=search;q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static-cdn.ubuntu-de.org/img/favicon.ico",
+ "name": "Ubuntu Users Wiki",
+ "triggers": [
+ "uuwiki"
+ ],
+ "regions": {
+ "default": "https://ubuntuusers.de/search/?query={{{term}}}&area=wiki"
+ }
+ },
+ {
+ "favicon": "https://wiki.ubuntu.com/favicon.ico",
+ "name": "Ubuntu Wiki",
+ "triggers": [
+ "uwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.ubuntu.com/Home?action=fullsearch&context=180&value={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static-cdn.ubuntu-de.org/img/favicon.ico",
+ "name": "Ubuntuusers",
+ "triggers": [
+ "ubuntuusers",
+ "uude"
+ ],
+ "regions": {
+ "default": "https://ubuntuusers.de/search/?query={{{term}}}&area=all"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ubuntuusers.de",
+ "triggers": [
+ "uu"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?q=site%3Aubuntuusers.de+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "name": "Ubuntuusers.de Wiki",
+ "triggers": [
+ "uuw"
+ ],
+ "regions": {
+ "default": "https://startpage.com/do/search?keyword=site:wiki.ubuntuusers.de+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ubutabshop.com/favicon.ico",
+ "name": "ubutabshop.com",
+ "triggers": [
+ "uts"
+ ],
+ "regions": {
+ "default": "http://ubutabshop.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://www.udemy.com/favicon.ico",
+ "name": "Udemy",
+ "triggers": [
+ "udemy"
+ ],
+ "regions": {
+ "default": "https://www.udemy.com/courses/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://marijnhaverbeke.nl/favicon.ico",
+ "name": "UglifyJS",
+ "triggers": [
+ "uglifyjs"
+ ],
+ "regions": {
+ "default": "http://marijnhaverbeke.nl/uglifyjs?code_url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://uiba.co/favicon.ico",
+ "name": "Uiba",
+ "triggers": [
+ "uiba"
+ ],
+ "regions": {
+ "default": "http://uiba.co/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.uitmuntend.de/favicon.ico",
+ "name": "Uitmuntend",
+ "triggers": [
+ "uitm"
+ ],
+ "regions": {
+ "default": "http://www.uitmuntend.de/woerterbuch/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.uitzendinggemist.nl/favicon-16x16.png",
+ "name": "Uitzending Gemist",
+ "triggers": [
+ "uitgem"
+ ],
+ "regions": {
+ "default": "http://www.uitzendinggemist.nl/zoek?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//d2ytoq5yzwql2i.cloudfront.net/images/favicon.ico",
+ "name": "UK Companies House",
+ "triggers": [
+ "companieshouse"
+ ],
+ "regions": {
+ "default": "https://beta.companieshouse.gov.uk/search/companies?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.legislation.gov.uk/favicon.ico",
+ "name": "UK Legislation (Official Archive)",
+ "triggers": [
+ "uklaw"
+ ],
+ "regions": {
+ "default": "http://www.legislation.gov.uk/all?title={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.parliament.uk/favicon.ico",
+ "name": "UK Parliament",
+ "triggers": [
+ "ukp",
+ "ukparl"
+ ],
+ "regions": {
+ "default": "https://www.parliament.uk/search/results/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://patient.azureedge.net/gfx/icons/favicon.ico",
+ "name": "UK Patient Information Leaflets",
+ "triggers": [
+ "pils"
+ ],
+ "regions": {
+ "default": "http://patient.info/Search.asp?searchTerm={{{term}}}&collections=Condition_Leaflets"
+ }
+ },
+ {
+ "favicon": "https://uk.pcpartpicker.com/favicon-16x16.png",
+ "name": "uk.pcpartpicker.com",
+ "triggers": [
+ "ukppp"
+ ],
+ "regions": {
+ "default": "https://uk.pcpartpicker.com/search/?cc=uk&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ukcsgo.com/wp-content/uploads/2015/04/Favicon.png",
+ "name": "UKCSGO",
+ "triggers": [
+ "ukcsgo"
+ ],
+ "regions": {
+ "default": "http://ukcsgo.com/forums/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://ukutabs.com/uploads/2018/06/cropped-UkuWorld-icon-192x192.png?x27230",
+ "name": "Ukutabs",
+ "triggers": [
+ "uku"
+ ],
+ "regions": {
+ "default": "https://ukutabs.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ulabox.com/favicon-2.ico",
+ "name": "Ulabox",
+ "triggers": [
+ "ulabox"
+ ],
+ "regions": {
+ "default": "https://www.ulabox.com/busca?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.uline.com/favicon.ico",
+ "name": "Uline",
+ "triggers": [
+ "uline"
+ ],
+ "regions": {
+ "default": "https://www.uline.com/Product/AdvSearchResult?keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ulive.com/favicon.ico",
+ "name": "Ulive",
+ "triggers": [
+ "ulive"
+ ],
+ "regions": {
+ "default": "http://www.ulive.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://uloz.to/favicon.ico?v=3.300.192",
+ "name": "uloz.to",
+ "triggers": [
+ "uloz",
+ "ulozto"
+ ],
+ "regions": {
+ "default": "http://uloz.to/hledej?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.ulta.com/favicon.ico",
+ "name": "Ulta",
+ "triggers": [
+ "ulta"
+ ],
+ "regions": {
+ "default": "http://www.ulta.com/ulta/a/_/Ntt-{{{term}}}/Nty-1?Dy=1&ciSelector=searchResults"
+ }
+ },
+ {
+ "favicon": "//media.ufc.tv/ufc_system_assets/ufc_201805101522/images/favicon.ico",
+ "name": "Ultimate Fighting Championship",
+ "triggers": [
+ "ufc"
+ ],
+ "regions": {
+ "default": "http://ufc.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ultimategamer.club/favicon.ico?v=1515763542",
+ "name": "Ultimate Gamer Club",
+ "triggers": [
+ "ugc"
+ ],
+ "regions": {
+ "default": "http://ultimategamer.club/torrents-search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.ultimate-guitar.com/static/_img/bootstrap/ug/img/favicon.ico",
+ "name": "Ultimate Guitar",
+ "triggers": [
+ "gtabs",
+ "tabs",
+ "ug",
+ "ultimate-guitar",
+ "chords",
+ "ultimateguitar"
+ ],
+ "regions": {
+ "default": "https://www.ultimate-guitar.com/search.php?search_type=title&value={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.ultimate-guitar.com/static/_img/bootstrap/ug/img/favicon.ico",
+ "name": "Ultimate Guitar",
+ "triggers": [
+ "tabsb"
+ ],
+ "regions": {
+ "default": "https://www.ultimate-guitar.com/search.php?search_type=band&value={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.ultimate-guitar.com/static/_img/bootstrap/ug/img/favicon.ico",
+ "name": "UltimateGuitar.com",
+ "triggers": [
+ "btabs"
+ ],
+ "regions": {
+ "default": "https://www.ultimate-guitar.com/search.php?s={{{term}}}&w=songs"
+ }
+ },
+ {
+ "favicon": "http://japaneseverbconjugator.com/Images/UltraManHead.jpg",
+ "name": "Ultra Handy Japanese Verb Conjugator",
+ "triggers": [
+ "jaconj"
+ ],
+ "regions": {
+ "default": "http://japaneseverbconjugator.com/VerbDetails.asp?txtVerb={{{term}}}&Go=Conjugate"
+ }
+ },
+ {
+ "favicon": "http://www.ultralingua.com/sites/ultralingua.com/themes/ultheme/favicon.ico",
+ "name": "Ultralingua",
+ "triggers": [
+ "uif"
+ ],
+ "regions": {
+ "default": "http://www.ultralingua.com/onlinedictionary/dictionary#src_lang=Italian&dest_lang=French&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ultrastar-es.org/favicon.ico",
+ "name": "Ultrastar Espana",
+ "triggers": [
+ "ultrastares"
+ ],
+ "regions": {
+ "default": "http://ultrastar-es.org/en/canciones?busqueda={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ultratools.com/favicon.ico",
+ "name": "Ultratools",
+ "triggers": [
+ "asnumber"
+ ],
+ "regions": {
+ "default": "https://www.ultratools.com/tools/asnInfoResult?domainName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.uqm.stack.nl/favicon.ico",
+ "name": "Ultronomicon",
+ "triggers": [
+ "uq"
+ ],
+ "regions": {
+ "default": "http://wiki.uqm.stack.nl/script/index.php?search={{{term}}}&go=Go&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "//c41.ulu.so/rs/img/favicon.png",
+ "name": "uludağ sözlük",
+ "triggers": [
+ "uludagsozluk"
+ ],
+ "regions": {
+ "default": "http://www.uludagsozluk.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1yggf0lcx0ykm.cloudfront.net/favicon.a357275064d3.ico",
+ "name": "Ulule",
+ "triggers": [
+ "ul"
+ ],
+ "regions": {
+ "default": "https://www.ulule.com/discover/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.umart.com.au/newsite/animated_favicon.gif",
+ "name": "Umart Online",
+ "triggers": [
+ "umo"
+ ],
+ "regions": {
+ "default": "http://www.umart.com.au/newsite/search.php?type=0&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.umb.edu/favicon.gif",
+ "name": "UMass Boston",
+ "triggers": [
+ "umb"
+ ],
+ "regions": {
+ "default": "https://www.umb.edu/search?cx=001225130692263366863%3Auxj4oosyzxy&cof=FORID%3A11&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://untermportal.un.org/favicon.ico",
+ "name": "UN terminology search portal",
+ "triggers": [
+ "unterm"
+ ],
+ "regions": {
+ "default": "https://untermportal.un.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.un-spider.org/sites/default/files/images/favicon.ico",
+ "name": "UN-SPIDER Knowledge Portal",
+ "triggers": [
+ "unspider"
+ ],
+ "regions": {
+ "default": "http://www.un-spider.org/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/uncyclopedia/images/6/64/Favicon.ico/revision/latest?cb=20111002012029",
+ "name": "Uncyclopedia",
+ "triggers": [
+ "unwiki",
+ "uncyclopedia"
+ ],
+ "regions": {
+ "default": "http://uncyclopedia.wikia.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/undertale/images/6/64/Favicon.ico/revision/latest?cb=20160402033559",
+ "name": "Undertale wiki",
+ "triggers": [
+ "undertale"
+ ],
+ "regions": {
+ "default": "http://undertale.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://whc.unesco.org/favicon.ico",
+ "name": "UNESCO World Heritage Centre",
+ "triggers": [
+ "unescowhc"
+ ],
+ "regions": {
+ "default": "http://whc.unesco.org/en/search/?criteria={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.unfpa.org/sites/all/themes/unfpa_global/favicon.ico",
+ "name": "unfpa.org",
+ "triggers": [
+ "unfpa"
+ ],
+ "regions": {
+ "default": "https://www.unfpa.org/search/node/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://unicat.be/uniCatImages/favicon.ico",
+ "name": "Unicat",
+ "triggers": [
+ "unicat"
+ ],
+ "regions": {
+ "default": "http://unicat.be/uniCat?func=search&language=en&fromWeb=1&formQuery={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.unicef.org/themes/custom/unicef/assets/dist/images/icons/favicon.ico",
+ "name": "UNICEF",
+ "triggers": [
+ "unicef"
+ ],
+ "regions": {
+ "default": "https://www.unicef.org/search/search.php?q_en={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.mclean.net.nz/favicon.ico",
+ "name": "Unicode Character Finder",
+ "triggers": [
+ "ucf"
+ ],
+ "regions": {
+ "default": "http://www.mclean.net.nz/ucf/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fileformat.info/favicon.ico",
+ "name": "Unicode Character Search",
+ "triggers": [
+ "unicode",
+ "utf8"
+ ],
+ "regions": {
+ "default": "https://www.fileformat.info/info/unicode/char/search.htm?q={{{term}}}&preview=entity"
+ }
+ },
+ {
+ "favicon": "http://unicode.party/favicon.ico",
+ "name": "Unicode Party",
+ "triggers": [
+ "unicodeparty"
+ ],
+ "regions": {
+ "default": "http://unicode.party/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://unicode-table.com/i/favicons/favicon.ico",
+ "name": "Unicode Table",
+ "triggers": [
+ "unicodetable"
+ ],
+ "regions": {
+ "default": "http://unicode-table.com/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unicode-table.com/i/favicons/favicon.ico",
+ "name": "Unicode Table",
+ "triggers": [
+ "uct"
+ ],
+ "regions": {
+ "default": "https://unicode-table.com/ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.uniprot.org/favicon.ico",
+ "name": "UniprotKB",
+ "triggers": [
+ "uniprot"
+ ],
+ "regions": {
+ "default": "http://www.uniprot.org/uniprot/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.uniqlo.com/na-static/on/demandware.static/Sites-UniqloUS-Site/-/default/v1530652554069/../images/favicon.ico",
+ "name": "Uniqlo",
+ "triggers": [
+ "uniqlo"
+ ],
+ "regions": {
+ "default": "https://www.uniqlo.com/us/en/search/?q={{{term}}}&lang=default"
+ }
+ },
+ {
+ "favicon": "//r.library.unisa.edu.au/Res/2/img/favicon.ico",
+ "name": "UniSA Library Catalogue",
+ "triggers": [
+ "unisalib"
+ ],
+ "regions": {
+ "default": "http://search.library.unisa.edu.au/?query=any,contains,{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.un.org/templates/default/images/favicon.ico",
+ "name": "United Nations",
+ "triggers": [
+ "un"
+ ],
+ "regions": {
+ "default": "https://search.un.org/search?ie=utf8&site=un_org&output=xml_no_dtd&client=UN_Website_en&num=10&lr=lang_en&proxystylesheet=UN_Website_en&oe=utf8&q={{{term}}}&Submit=Go"
+ }
+ },
+ {
+ "favicon": "https://unity3d.com/profiles/unity3d/themes/unity/images/ui/favicons/favicon.png",
+ "name": "Unity",
+ "triggers": [
+ "unity"
+ ],
+ "regions": {
+ "default": "https://unity3d.com/search?gq={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://answers.unity3d.com/themes/thub/images/favicon.ico",
+ "name": "Unity Answers",
+ "triggers": [
+ "unityanswers"
+ ],
+ "regions": {
+ "default": "http://answers.unity3d.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.unity3d.com/StaticFilesManual/images/favicons/favicon.png",
+ "name": "Unity Manual",
+ "triggers": [
+ "unitym"
+ ],
+ "regions": {
+ "default": "https://docs.unity3d.com/Manual/30_search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.unity3d.com/Documentation/StaticFilesManual/images/favicons/favicon.png",
+ "name": "Unity Script Reference",
+ "triggers": [
+ "uscript"
+ ],
+ "regions": {
+ "default": "https://docs.unity3d.com/Documentation/ScriptReference/30_search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.unity3d.com/StaticFilesManual/images/favicons/favicon.png",
+ "name": "Unity Scripting Reference",
+ "triggers": [
+ "unitysr",
+ "usr"
+ ],
+ "regions": {
+ "default": "https://docs.unity3d.com/ScriptReference/30_search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unity3d.com/profiles/unity3d/themes/unity/images/ui/favicons/favicon.png",
+ "name": "Unity3D answers",
+ "triggers": [
+ "unityans"
+ ],
+ "regions": {
+ "default": "https://unity3d.com/search?refinement=answers&gq={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://docs.unity3d.com/StaticFilesManual/images/favicons/favicon.png",
+ "name": "Unity3D Scripting API",
+ "triggers": [
+ "unityapi"
+ ],
+ "regions": {
+ "default": "https://docs.unity3d.com/ScriptReference/30_search.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.ugr.es/sites/default/files/favicon.ico",
+ "name": "Universidad de Granada",
+ "triggers": [
+ "ugr"
+ ],
+ "regions": {
+ "default": "http://www.ugr.es/pages/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.unizar.es/profiles/unizarwww/themes/unizar01/favicon.ico",
+ "name": "Universidad de Zaragoza",
+ "triggers": [
+ "unizar"
+ ],
+ "regions": {
+ "default": "https://www.unizar.es/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://repositorio.unb.br/favicon.ico",
+ "name": "Universidade de Brasília / Repositório Institucional",
+ "triggers": [
+ "unbri"
+ ],
+ "regions": {
+ "default": "http://repositorio.unb.br/simple-search?query={{{term}}}&submit=Ir"
+ }
+ },
+ {
+ "favicon": "http://ubc.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "University of British Columbia Library",
+ "triggers": [
+ "ubclib"
+ ],
+ "regions": {
+ "default": "http://ubc.summon.serialssolutions.com/search?s.cmd=addFacetValueFilters%28ContentType%2CNewspaper+Article%3At%29&spellcheck=true&s.q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.cam.ac.uk/favicon.ico",
+ "name": "University of Cambridge",
+ "triggers": [
+ "cam"
+ ],
+ "regions": {
+ "default": "https://search.cam.ac.uk/web?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://catalog.lib.uchicago.edu/vufind/themes/phoenix/images/favicon.ico",
+ "name": "University of Chicago Library Catalog",
+ "triggers": [
+ "uc"
+ ],
+ "regions": {
+ "default": "https://catalog.lib.uchicago.edu/vufind/Search/Results?lookfor={{{term}}}&type=AllFields"
+ }
+ },
+ {
+ "favicon": "https://catalog.lib.uchicago.edu/vufind/themes/phoenix/images/favicon.ico",
+ "name": "University of Chicago Library Catalog",
+ "triggers": [
+ "uchi"
+ ],
+ "regions": {
+ "default": "https://catalog.lib.uchicago.edu/vufind/Search/Results?lookfor={{{term}}} &type=AllFields"
+ }
+ },
+ {
+ "favicon": "http://udallas.edu/favicon.ico",
+ "name": "University of Dallas",
+ "triggers": [
+ "uod"
+ ],
+ "regions": {
+ "default": "http://udallas.edu/searchresults.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.rug.nl/icon.ico",
+ "name": "University of Groningen",
+ "triggers": [
+ "ruggeo"
+ ],
+ "regions": {
+ "default": "http://www.rug.nl/search/?searchtext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.kent.ac.uk/pantheon/kent-theme-assets/assets/images/favicons/favicon.ico",
+ "name": "University of Kent",
+ "triggers": [
+ "uok"
+ ],
+ "regions": {
+ "default": "https://www.kent.ac.uk/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.uni-konstanz.de/suche/fileadmin/templates/relaunch/img/favicons/favicon_seeblau@32px.png",
+ "name": "University of Konstanz",
+ "triggers": [
+ "ukn"
+ ],
+ "regions": {
+ "default": "https://www.uni-konstanz.de/suche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://le.ac.uk/Assets/Favicons/favicon-128.png",
+ "name": "University of Leicester",
+ "triggers": [
+ "le"
+ ],
+ "regions": {
+ "default": "https://le.ac.uk/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.searchum.umd.edu/favicon.ico",
+ "name": "University of Maryland",
+ "triggers": [
+ "umd"
+ ],
+ "regions": {
+ "default": "http://www.searchum.umd.edu/search?site=UMCP&client=UMCP&proxystylesheet=UMCP&output=xml_no_dtd&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.unimelb.edu.au/favicon.ico",
+ "name": "University of Melbourne",
+ "triggers": [
+ "umelb"
+ ],
+ "regions": {
+ "default": "https://search.unimelb.edu.au/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://umich.edu/favicon.ico",
+ "name": "University of Michigan",
+ "triggers": [
+ "umich"
+ ],
+ "regions": {
+ "default": "https://umich.edu/search/keywords/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://search.umn.edu/favicon.ico",
+ "name": "University of Minnesota",
+ "triggers": [
+ "umn"
+ ],
+ "regions": {
+ "default": "https://search.umn.edu/tc/index.php?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.une.edu.au/__data/assets/file/0020/70607/favicon.ico?v=0.1.3",
+ "name": "University of New England (Australia)",
+ "triggers": [
+ "une"
+ ],
+ "regions": {
+ "default": "https://www.une.edu.au/search?collection=une-meta&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.uncg.edu/images/branding/product/ico/googleg_lodp.ico",
+ "name": "University of North Caroline at Greensboro",
+ "triggers": [
+ "uncg"
+ ],
+ "regions": {
+ "default": "http://search.uncg.edu/search?q={{{term}}}&site=default_collection&client=default_frontend&output=xml_no_dtd&proxystylesheet=default_frontend"
+ }
+ },
+ {
+ "favicon": "https://www.nottingham.ac.uk/favicon.ico",
+ "name": "University of Nottingham",
+ "triggers": [
+ "uon"
+ ],
+ "regions": {
+ "default": "https://www.nottingham.ac.uk/search.aspx?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://usq.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "University of Southern Queensland",
+ "triggers": [
+ "usq"
+ ],
+ "regions": {
+ "default": "https://usq.summon.serialssolutions.com/search?s.q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.surrey.ac.uk/themes/custom/surrey/favicon.ico",
+ "name": "University of Surrey",
+ "triggers": [
+ "uos"
+ ],
+ "regions": {
+ "default": "https://www.surrey.ac.uk/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://opac.library.usyd.edu.au/screens/favicon.ico",
+ "name": "University of Sydney Library",
+ "triggers": [
+ "usydlib"
+ ],
+ "regions": {
+ "default": "https://opac.library.usyd.edu.au/search/?searchtype=X&SORT=D&searcharg={{{term}}}&searchscope=4&submit=Submit"
+ }
+ },
+ {
+ "favicon": "http://www.uta.edu/_templates/_images/favicon/favicon-16x16.png",
+ "name": "University of Texas at Arlington",
+ "triggers": [
+ "uta"
+ ],
+ "regions": {
+ "default": "http://www.uta.edu/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.univie.ac.at/fileadmin/templates/Startseite/assets/favicon-uni.png",
+ "name": "University of Vienna",
+ "triggers": [
+ "univie"
+ ],
+ "regions": {
+ "default": "http://ufind.univie.ac.at/en/search.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.virginia.edu/sites/all/themes/custom/uva/favicon.ico",
+ "name": "University of Virginia",
+ "triggers": [
+ "uva"
+ ],
+ "regions": {
+ "default": "http://www.virginia.edu/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.lib.virginia.edu/images/favicon.ico",
+ "name": "University of Virginia Library",
+ "triggers": [
+ "uvalib",
+ "uvac"
+ ],
+ "regions": {
+ "default": "http://search.lib.virginia.edu/catalog?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://web.library.wisc.edu/a/favicon.ico",
+ "name": "University of Wisconsin Libraries",
+ "triggers": [
+ "uwlib"
+ ],
+ "regions": {
+ "default": "https://search.library.wisc.edu/search/catalog?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.fer.unizg.hr/_pub/themes_static/fer2016/default/icons/fer.ico",
+ "name": "University of Zagreb Faculty of Electrical Engineering and Computing",
+ "triggers": [
+ "fer"
+ ],
+ "regions": {
+ "default": "https://www.fer.unizg.hr/search?sq={{{term}}} &s_skip=0"
+ }
+ },
+ {
+ "favicon": "http://www.unimc.it/favicon.ico",
+ "name": "Università degli Studi di Macerata",
+ "triggers": [
+ "unimc"
+ ],
+ "regions": {
+ "default": "http://www.unimc.it/@@search?SearchableText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://suche.uni-regensburg.de/favicon.ico",
+ "name": "Universität Regensburg",
+ "triggers": [
+ "ur"
+ ],
+ "regions": {
+ "default": "http://suche.uni-regensburg.de/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://opac.ub.uni-muenchen.de/TouchPoint/default/images/favicon_ubm.ico",
+ "name": "Universitätsbibliothek der Ludwig-Maximilians-Universität (LMU) München",
+ "triggers": [
+ "lmu"
+ ],
+ "regions": {
+ "default": "https://opac.ub.uni-muenchen.de/TouchPoint/start.do?View=sunrise&Language=de&Query=-1=%22{{{term}}}%22"
+ }
+ },
+ {
+ "favicon": "https://katalog.ub.uni-freiburg.de/opac/themes/freiburg/images/icons/ub-freiburg.ico",
+ "name": "Universitätsbibliothek Freiburg",
+ "triggers": [
+ "ubfr"
+ ],
+ "regions": {
+ "default": "https://katalog.ub.uni-freiburg.de/opac/RDSIndex/Search?lookfor={{{term}}}&source=homepage"
+ }
+ },
+ {
+ "favicon": "http://www.ub.uni-heidelberg.de/favicon.ico",
+ "name": "Universitätsbibliothek Heidelberg",
+ "triggers": [
+ "ubhd"
+ ],
+ "regions": {
+ "default": "http://www.ub.uni-heidelberg.de/suche/suche.html?cx=009778813800417314295%3Af3s5sfjqeck&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&sa=Suche"
+ }
+ },
+ {
+ "favicon": "https://katalog.ub.uni-heidelberg.de/favicon.ico",
+ "name": "Universitätsbibliothek Heiedelberg OPAC",
+ "triggers": [
+ "heidi"
+ ],
+ "regions": {
+ "default": "https://katalog.ub.uni-heidelberg.de/cgi-bin/search.cgi?fsubmit=1&query= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hds.hebis.de/de/images/favi8.ico",
+ "name": "Universitätsbibliothek Kassel",
+ "triggers": [
+ "ubks"
+ ],
+ "regions": {
+ "default": "https://hds.hebis.de/ubks/Discover/EBSCO?lookfor={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://katalog.ub.uni-leipzig.de/fileadmin/Resources/Private/Layout_Images/favico.ico",
+ "name": "Universitätsbibliothek Leipzig",
+ "triggers": [
+ "ubl"
+ ],
+ "regions": {
+ "default": "https://katalog.ub.uni-leipzig.de/Search/Results?lookfor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalogue.bu.univ-paris8.fr/opac-tmpl/bootstrap/images/favicon.ico",
+ "name": "Université Paris 8 (Bibliothèque)",
+ "triggers": [
+ "bup8"
+ ],
+ "regions": {
+ "default": "http://catalogue.bu.univ-paris8.fr/cgi-bin/koha/opac-search.pl?idx=&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.eveuniversity.org/favicon.ico",
+ "name": "UniWiki",
+ "triggers": [
+ "uniwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.eveuniversity.org/index.php?title=Special%3ASearch&search={{{term}}}&button="
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/unix/img/favicon.ico?v=546c52892feb",
+ "name": "Unix & Linux (StackExchange)",
+ "triggers": [
+ "use"
+ ],
+ "regions": {
+ "default": "http://unix.stackexchange.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.unixtimestamp.org/favicon.ico",
+ "name": "Unix Timestamp",
+ "triggers": [
+ "time"
+ ],
+ "regions": {
+ "default": "http://www.unixtimestamp.org/?timestamp={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.UnmaskParasites.com/favicon.ico",
+ "name": "Unmask Parasites",
+ "triggers": [
+ "mask"
+ ],
+ "regions": {
+ "default": "http://www.UnmaskParasites.com/security-report/?page={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ftbwiki.org/images_local/favicon.png",
+ "name": "Unofficial Feed The Beast Wiki",
+ "triggers": [
+ "ftbwiki"
+ ],
+ "regions": {
+ "default": "http://ftbwiki.org/index.php?title=Special:Search&search={{{term}}}&fulltext=Search&profile=default"
+ }
+ },
+ {
+ "favicon": "https://unogs.com/favicon.ico?v=6",
+ "name": "uNoGS",
+ "triggers": [
+ "unogs"
+ ],
+ "regions": {
+ "default": "http://unogs.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.unomaha.edu/favicon.ico",
+ "name": "unomaha",
+ "triggers": [
+ "unomaha"
+ ],
+ "regions": {
+ "default": "https://www.unomaha.edu/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unpkg.com/favicon.ico",
+ "name": "unpkg",
+ "triggers": [
+ "unpkg"
+ ],
+ "regions": {
+ "default": "https://unpkg.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://answers.unrealengine.com/themes/epic-unreal/images/favicon.ico",
+ "name": "Unreal Engine 4 Answerhub",
+ "triggers": [
+ "uea"
+ ],
+ "regions": {
+ "default": "https://answers.unrealengine.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.unrealengine.com/favicon.ico",
+ "name": "Unreal Engine Documentation",
+ "triggers": [
+ "ue4docs",
+ "unrealengine"
+ ],
+ "regions": {
+ "default": "https://docs.unrealengine.com/latest/INT/Search/index.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.unscatter.com/favicon.ico",
+ "name": "Unscatter.com",
+ "triggers": [
+ "unscatter"
+ ],
+ "regions": {
+ "default": "http://www.unscatter.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.unseen64.net/wp-content/uploads/2016/01/unseen64-logo-social-300x300.png",
+ "name": "Unseen64",
+ "triggers": [
+ "unseen64"
+ ],
+ "regions": {
+ "default": "http://www.unseen64.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.unshorten.me/images/favicon.ico",
+ "name": "Unshorten.me",
+ "triggers": [
+ "unshorten"
+ ],
+ "regions": {
+ "default": "https://unshorten.me/s/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unsplash.com/favicon.ico",
+ "name": "Unsplash",
+ "triggers": [
+ "unspls"
+ ],
+ "regions": {
+ "default": "https://unsplash.com/search/photos/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://unsplash.com/favicon.ico",
+ "name": "Unsplash",
+ "triggers": [
+ "unspl",
+ "unsplash"
+ ],
+ "regions": {
+ "default": "https://unsplash.com/search?utf8=✓&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://untappd.akamaized.net/assets/favicon-16x16.png",
+ "name": "Untappd",
+ "triggers": [
+ "untappd"
+ ],
+ "regions": {
+ "default": "https://untappd.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://unvis.it/img/favicon.png",
+ "name": "Unvisit.me",
+ "triggers": [
+ "unv"
+ ],
+ "regions": {
+ "default": "http://unvis.it/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//h.imguol.com/favicon.ico",
+ "name": "Uol Jogos",
+ "triggers": [
+ "uoljogos"
+ ],
+ "regions": {
+ "default": "http://jogos.uol.com.br/busca/?busca={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.upcdatabase.com/favicon.ico",
+ "name": "UPC Database",
+ "triggers": [
+ "upc"
+ ],
+ "regions": {
+ "default": "http://www.upcdatabase.com/item/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Upcoming",
+ "triggers": [
+ "upcoming"
+ ],
+ "regions": {
+ "default": "http://upcoming.yahoo.com/search/?type=Events&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.uplabs.com/assets/logo/uplabs/icons/favicon-96x96-dc5d82576f00483952b98a77cf9f1f567a15c2c6ba4829b9f9b153ba085cc153.png",
+ "name": "UpLabs",
+ "triggers": [
+ "uplabs"
+ ],
+ "regions": {
+ "default": "http://www.uplabs.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.imgur.com/images/favicon-16x16.png",
+ "name": "Upload to imgur",
+ "triggers": [
+ "imgurul"
+ ],
+ "regions": {
+ "default": "https://imgur.com/api/upload/?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wwwapps.ups.com/favicon.ico",
+ "name": "UPS Tracking",
+ "triggers": [
+ "ups"
+ ],
+ "regions": {
+ "default": "https://wwwapps.ups.com/WebTracking/processInputRequest?tracknum={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.uptodate.com/sites/all/themes/uptodate/favicon.ico",
+ "name": "UpToDate",
+ "triggers": [
+ "uptodate"
+ ],
+ "regions": {
+ "default": "http://www.uptodate.com/contents/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stc.utdstc.com/favicon.ico",
+ "name": "Uptodown",
+ "triggers": [
+ "utd",
+ "uptodown"
+ ],
+ "regions": {
+ "default": "https://en.uptodown.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://urbaanisanakirja.com/static/icons/favicon.ico",
+ "name": "Urbaani Sanakirja",
+ "triggers": [
+ "urbaani"
+ ],
+ "regions": {
+ "default": "http://urbaanisanakirja.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/pw/favicon.ico",
+ "name": "Urban Comfort",
+ "triggers": [
+ "urbancomfort"
+ ],
+ "regions": {
+ "default": "http://urbancomfort.de/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.urbandictionary.com/favicon.ico",
+ "name": "Urban Dictionary",
+ "triggers": [
+ "urbandictionary",
+ "ud",
+ "urban",
+ "u"
+ ],
+ "regions": {
+ "default": "https://www.urbandictionary.com/define.php?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.urbanoutfitters.com/favicon.ico",
+ "name": "Urban Outfitters",
+ "triggers": [
+ "urbout"
+ ],
+ "regions": {
+ "default": "http://www.urbanoutfitters.com/fr/catalog/search.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forums.urealms.com/favicon.ico",
+ "name": "URealms Forums",
+ "triggers": [
+ "urealmsforums"
+ ],
+ "regions": {
+ "default": "https://forums.urealms.com/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.urealms.com/favicon.ico",
+ "name": "URealms Wiki",
+ "triggers": [
+ "urealms"
+ ],
+ "regions": {
+ "default": "https://wiki.urealms.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ureka.org/android-chrome-192x192.png?v=8jjbOBek3p",
+ "name": "Ureka: Earth Heart Communityure",
+ "triggers": [
+ "ureka"
+ ],
+ "regions": {
+ "default": "https://www.ureka.org/search?loader=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.urgente24.com/favicon.ico",
+ "name": "Urgente24",
+ "triggers": [
+ "u24"
+ ],
+ "regions": {
+ "default": "http://www.urgente24.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://urlquery.net/favicon.ico",
+ "name": "Urlquery",
+ "triggers": [
+ "urlquery"
+ ],
+ "regions": {
+ "default": "https://urlquery.net/search.php?q={{{term}}}&type=string&max=50"
+ }
+ },
+ {
+ "favicon": "http://www.urlvoid.com/favicon.ico",
+ "name": "Urlvoid",
+ "triggers": [
+ "urlvoid"
+ ],
+ "regions": {
+ "default": "http://www.urlvoid.com/scan/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://new.uschess.org/wp-content/uploads/2017/03/cropped-US_Chess_logo_icon-192x192.png",
+ "name": "US Chess Federation",
+ "triggers": [
+ "uschess"
+ ],
+ "regions": {
+ "default": "http://www.uschess.org/datapage/player-search.php?name={{{term}}}&state=ANY&ratingmin=&ratingmax=&order=N&rating=R&mode=Find"
+ }
+ },
+ {
+ "favicon": "https://www.epa.gov/sites/all/themes/epa/favicon.ico",
+ "name": "US Environmental Protection Agency",
+ "triggers": [
+ "epa"
+ ],
+ "regions": {
+ "default": "http://nlquery.epa.gov/epasearch/epasearch?querytext={{{term}}}&fld=&areaname=&typeofsearch=epa&areacontacts=http%3A%2F%2Fwww.epa.gov%2Fepahome%2Fcomments.htm&areasearchurl=&result_template=epafiles_default.xsl&filter=sample4filt.hts&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://search.usa.gov/sites/all/themes/usa/images/USA_Fav_Icon152_default.png",
+ "name": "US Government Image Search",
+ "triggers": [
+ "govimages"
+ ],
+ "regions": {
+ "default": "https://search.usa.gov/search/images?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.usa.gov/sites/all/themes/usa/images/USA_Fav_Icon152_default.png",
+ "name": "US Government Search",
+ "triggers": [
+ "gov"
+ ],
+ "regions": {
+ "default": "https://search.usa.gov/search?affiliate=usagov&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://patft.uspto.gov/favicon.ico",
+ "name": "US Patent Database Search",
+ "triggers": [
+ "patft"
+ ],
+ "regions": {
+ "default": "http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&Sect2=HITOFF&u=%2Fnetahtml%2FPTO%2Fsearch-adv.htm&r=0&f=S&l=50&d=PTXT&OS=&RS=%22{{{term}}}%22&Query=%22fabdeehc%22&TD=&Srch1=%22fabdeehc%22&NextList1=xxx"
+ }
+ },
+ {
+ "favicon": "https://www.gannett-cdn.com/sites/usatoday/images/favicon.png",
+ "name": "USA Today",
+ "triggers": [
+ "usatoday"
+ ],
+ "regions": {
+ "default": "https://www.usatoday.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://search.usa.gov/sites/all/themes/usa/images/USA_Fav_Icon152_default.png",
+ "name": "USA.gov",
+ "triggers": [
+ "usa"
+ ],
+ "regions": {
+ "default": "https://search.usa.gov/search?utf8=✓&affiliate=usagov&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.usal.es/files/favicon.jpg",
+ "name": "usal",
+ "triggers": [
+ "usal"
+ ],
+ "regions": {
+ "default": "http://www.usal.es/webusal/usal_buscador?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.usaspending.gov/img/favicon.ico",
+ "name": "usaspending.gov",
+ "triggers": [
+ "usaspending"
+ ],
+ "regions": {
+ "default": "https://www.usaspending.gov/search?form_fields=%7B%22search_term%22%3A%22{{{term}}}%22%7D"
+ }
+ },
+ {
+ "favicon": "http://www.usedvictoria.com/favicon.ico",
+ "name": "UsedVictoria",
+ "triggers": [
+ "usedvictoria"
+ ],
+ "regions": {
+ "default": "http://www.usedvictoria.com/classifieds/all?description={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.usenet-crawler.com/views/images/favicon.ico",
+ "name": "usenet-crawler",
+ "triggers": [
+ "usenet-crawler"
+ ],
+ "regions": {
+ "default": "https://www.usenet-crawler.com/search?val={{{term}}}&index=3"
+ }
+ },
+ {
+ "favicon": "http://www.userbenchmark.com/favicon.ico",
+ "name": "User Benchmark",
+ "triggers": [
+ "userbench"
+ ],
+ "regions": {
+ "default": "http://www.userbenchmark.com/Search?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://userstyles.org/ui/images/icons/favicon.png",
+ "name": "Userstyles",
+ "triggers": [
+ "userstyles"
+ ],
+ "regions": {
+ "default": "https://userstyles.org/styles/browse/all/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://userstyles.org/ui/images/icons/favicon.png",
+ "name": "userstyles.org",
+ "triggers": [
+ "ustyles"
+ ],
+ "regions": {
+ "default": "https://userstyles.org/styles/browse?search_terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://usite.hu/favicon.ico",
+ "name": "Usite.hu",
+ "triggers": [
+ "usite"
+ ],
+ "regions": {
+ "default": "http://usite.hu/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uslaw.link/favicon.ico",
+ "name": "uslaw.link",
+ "triggers": [
+ "uslaw"
+ ],
+ "regions": {
+ "default": "https://uslaw.link/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tools.usps.com/favicon.ico",
+ "name": "USPS",
+ "triggers": [
+ "usps"
+ ],
+ "regions": {
+ "default": "https://tools.usps.com/go/TrackConfirmAction?qtc_tLabels1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ut.no/favicon-16x16.png",
+ "name": "UT.no - Outdoors for all",
+ "triggers": [
+ "utno"
+ ],
+ "regions": {
+ "default": "http://ut.no/finn?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://le.utah.gov/images/favicon.ico",
+ "name": "Utah State Legislature",
+ "triggers": [
+ "utleg"
+ ],
+ "regions": {
+ "default": "http://le.utah.gov/solrsearch.jsp?request={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://utaitedb.net/Content/favicon.ico",
+ "name": "Utaite Database",
+ "triggers": [
+ "utaite"
+ ],
+ "regions": {
+ "default": "http://utaitedb.net/Search?filter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.utopia-game.com/favicon.ico",
+ "name": "Utopia Wikipedia",
+ "triggers": [
+ "utopia"
+ ],
+ "regions": {
+ "default": "http://wiki.utopia-game.com/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/ux/img/favicon.ico?v=2cad7f528393",
+ "name": "UX stackexchange",
+ "triggers": [
+ "ux"
+ ],
+ "regions": {
+ "default": "http://ux.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//v.gd/favicon.ico",
+ "name": "v.gd",
+ "triggers": [
+ "vgd"
+ ],
+ "regions": {
+ "default": "https://v.gd/create.php?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vagalume.com.br/favicon.ico",
+ "name": "Vagalume",
+ "triggers": [
+ "vagalume"
+ ],
+ "regions": {
+ "default": "http://www.vagalume.com.br/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vagas.com.br/assets/mundos/favicon_p-3ea28649297340d9a3265fcf9f19dae5.ico",
+ "name": "VAGAS.com.br",
+ "triggers": [
+ "vagas"
+ ],
+ "regions": {
+ "default": "https://www.vagas.com.br/vagas-de-{{{term}}}?"
+ }
+ },
+ {
+ "favicon": "http://www.vagonweb.cz/favicon.ico",
+ "name": "Vagonweb",
+ "triggers": [
+ "vagw"
+ ],
+ "regions": {
+ "default": "http://www.vagonweb.cz/razeni/razeni.php?jmeno={{{term}}}&najit=Suchen"
+ }
+ },
+ {
+ "favicon": "https://app.vagrantup.com/favicon-32x32.png",
+ "name": "Vagrant Cloud",
+ "triggers": [
+ "vagrant"
+ ],
+ "regions": {
+ "default": "https://app.vagrantup.com/boxes/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vajehyab.com/icn/favicon.ico",
+ "name": "Vajeh Yab",
+ "triggers": [
+ "vy"
+ ],
+ "regions": {
+ "default": "https://www.vajehyab.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vajehyab.com/icn/favicon.ico",
+ "name": "Vajehyab",
+ "triggers": [
+ "vajeh"
+ ],
+ "regions": {
+ "default": "https://vajehyab.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.vajje.com/img/favicon.ico)",
+ "name": "Vajje",
+ "triggers": [
+ "vajje"
+ ],
+ "regions": {
+ "default": "http://www.vajje.com/vajje/search/index?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://rsnijders.info/vakblog/images/favicon.ico",
+ "name": "Vakblog",
+ "triggers": [
+ "vakblog"
+ ],
+ "regions": {
+ "default": "http://rsnijders.info/vakblog/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://validator.nu/icon.png",
+ "name": "Validator.nu",
+ "triggers": [
+ "validatornu"
+ ],
+ "regions": {
+ "default": "https://validator.nu/?doc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.valkyrie-wow.ru/wp-content/uploads/2015/03/favicon.jpg",
+ "name": "Valkyrie WoW Db",
+ "triggers": [
+ "vwdb"
+ ],
+ "regions": {
+ "default": "http://db.valkyrie-wow.ru/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gawker.com/favicon.png",
+ "name": "Valleywag",
+ "triggers": [
+ "valleywag"
+ ],
+ "regions": {
+ "default": "http://valleywag.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.valoo-online.com/favicon.ico",
+ "name": "Valoo",
+ "triggers": [
+ "valoo"
+ ],
+ "regions": {
+ "default": "http://www.valoo-online.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://valuestockguide.com/wp-content/themes/minimum-pro/images/favicon.ico",
+ "name": "Value Stock Guide",
+ "triggers": [
+ "vsg"
+ ],
+ "regions": {
+ "default": "http://valuestockguide.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.valvesoftware.com/favicon.ico",
+ "name": "Valve Developer Community",
+ "triggers": [
+ "vdc"
+ ],
+ "regions": {
+ "default": "https://developer.valvesoftware.com/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://developer.valvesoftware.com/favicon.ico",
+ "name": "Valve Developer Wiki",
+ "triggers": [
+ "valve"
+ ],
+ "regions": {
+ "default": "https://developer.valvesoftware.com/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vandale.nl/sites/all/themes/vandale/favicon.ico",
+ "name": "Van Dale",
+ "triggers": [
+ "vandale"
+ ],
+ "regions": {
+ "default": "http://www.vandale.nl/opzoeken?pattern={{{term}}}&lang=nn"
+ }
+ },
+ {
+ "favicon": "http://www.yvr.ca/Areas/YVR/Content/images/favicons/favicon-128.png",
+ "name": "Vancouver Airport",
+ "triggers": [
+ "yvr"
+ ],
+ "regions": {
+ "default": "http://www.yvr.ca/en/search#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://viu.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "Vancouver Island University Library",
+ "triggers": [
+ "viul"
+ ],
+ "regions": {
+ "default": "http://viu.summon.serialssolutions.com/search?s.q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/65a4d89c994dadfbdfbf531bd11e514b?s=32",
+ "name": "vancouversun.com",
+ "triggers": [
+ "vsun"
+ ],
+ "regions": {
+ "default": "http://www.vancouversun.com/search/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vandale.nl/sites/all/themes/vandale/favicon.ico",
+ "name": "Vandale",
+ "triggers": [
+ "vdnf"
+ ],
+ "regions": {
+ "default": "http://www.vandale.nl/opzoeken?pattern={{{term}}}&lang=nf"
+ }
+ },
+ {
+ "favicon": "http://www.vandale.nl/sites/all/themes/vandale/favicon.ico",
+ "name": "Vandale français-néerlandais",
+ "triggers": [
+ "vdfn"
+ ],
+ "regions": {
+ "default": "http://www.vandale.nl/opzoeken?pattern={{{term}}}&lang=fn"
+ }
+ },
+ {
+ "favicon": "http://db.vanillagaming.org/favicon.ico",
+ "name": "Vanilla Gaming",
+ "triggers": [
+ "vag"
+ ],
+ "regions": {
+ "default": "http://db.vanillagaming.org/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pmcvariety.files.wordpress.com/2018/06/variety-favicon.png?w=128",
+ "name": "Variety",
+ "triggers": [
+ "variety"
+ ],
+ "regions": {
+ "default": "https://variety.com/results/#?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.varle.lt/static/varliuke2.ico",
+ "name": "Varlė",
+ "triggers": [
+ "varle"
+ ],
+ "regions": {
+ "default": "https://www.varle.lt/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.varusteleka.fi/media/favicons/favicon.ico",
+ "name": "Varusteleka",
+ "triggers": [
+ "leka"
+ ],
+ "regions": {
+ "default": "https://www.varusteleka.fi/fi/bestsearch/{{{term}}}?q=aieebgledbaf"
+ }
+ },
+ {
+ "favicon": "https://vaski.finna.fi/themes/custom/images/favicon.ico",
+ "name": "Vaski-kirjastot",
+ "triggers": [
+ "vaski"
+ ],
+ "regions": {
+ "default": "https://vaski.finna.fi/Search/Results?lookfor={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vat19.com/products/favicon.ico?v=2",
+ "name": "Vat19",
+ "triggers": [
+ "vat19"
+ ],
+ "regions": {
+ "default": "https://www.vat19.com/products/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vatera.hu/favicon.ico",
+ "name": "Vatera",
+ "triggers": [
+ "vatera"
+ ],
+ "regions": {
+ "default": "http://www.vatera.hu/listings/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vbox7.com/search/icons/192.png",
+ "name": "Vbox7",
+ "triggers": [
+ "vbox7"
+ ],
+ "regions": {
+ "default": "http://vbox7.com/search/?completed=0&vbox_q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://shop.vcp-san.at/favicon.ico",
+ "name": "VCP Sanitärfachhandel",
+ "triggers": [
+ "vcp"
+ ],
+ "regions": {
+ "default": "http://shop.vcp-san.at/index.php?main_page=advanced_search_result&search_in_description=1&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vecteezy.com/favicon.ico",
+ "name": "Vecteezy",
+ "triggers": [
+ "vecteezy"
+ ],
+ "regions": {
+ "default": "http://www.vecteezy.com/free-vector/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vector.me/static/images/favicon.ico",
+ "name": "VectorMe",
+ "triggers": [
+ "vector"
+ ],
+ "regions": {
+ "default": "http://vector.me/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "//www.vedabase.com/favicon.ico",
+ "name": "VedaBase",
+ "triggers": [
+ "vb"
+ ],
+ "regions": {
+ "default": "http://vedabase.com/en/search/site/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://static.veehd.com/favicon.ico",
+ "name": "VeeHD",
+ "triggers": [
+ "veehd"
+ ],
+ "regions": {
+ "default": "http://veehd.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://veekun.com/static/local/favicon.png",
+ "name": "Veekun Pokedex",
+ "triggers": [
+ "veekun"
+ ],
+ "regions": {
+ "default": "http://veekun.com/dex/lookup?lookup={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.nexternal.com/vegane/images/fav.ico",
+ "name": "Vegan Essentials",
+ "triggers": [
+ "vegess"
+ ],
+ "regions": {
+ "default": "https://store.veganessentials.com/categories.aspx?Keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.veganistan.se/sites/all/themes/veganistan_corolla/favicon.ico",
+ "name": "Veganistan",
+ "triggers": [
+ "veganistan"
+ ],
+ "regions": {
+ "default": "http://veganistan.se/search/innehall/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://find.vegas.com/favicon.ico",
+ "name": "Vegas",
+ "triggers": [
+ "vegas"
+ ],
+ "regions": {
+ "default": "http://find.vegas.com/search?entqr=1&output=xml_no_dtd&sort=date%3AD%3AL%3Ad1&entsp=0&client=vegas&ud=1&oe=UTF-8&ie=UTF-8&proxystylesheet=vegas&site=vegas&q={{{term}}}&btnG=%E2%8C%95"
+ }
+ },
+ {
+ "favicon": "http://vemringde.se/favicon.ico",
+ "name": "Vem ringde",
+ "triggers": [
+ "vem"
+ ],
+ "regions": {
+ "default": "http://vemringde.se/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vemo.it/favicon.ico",
+ "name": "Vemo.it forniture alberghiere",
+ "triggers": [
+ "vemo"
+ ],
+ "regions": {
+ "default": "http://www.vemo.it/cerca.php?prodotto={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://venturebeat.com/wp-content/themes/vb-news/img/favicon.ico",
+ "name": "VentureBeat",
+ "triggers": [
+ "venturebeat"
+ ],
+ "regions": {
+ "default": "http://venturebeat.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.veoh.com/favicon.ico",
+ "name": "Veoh",
+ "triggers": [
+ "veoh"
+ ],
+ "regions": {
+ "default": "http://www.veoh.com/search.html?type=&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.verb2verbe.com/favicon.ico",
+ "name": "verb2verbe.com",
+ "triggers": [
+ "v2ve"
+ ],
+ "regions": {
+ "default": "http://www.verb2verbe.com/EnglishConj.aspx?verb={{{term}}}&tail=&type=query"
+ }
+ },
+ {
+ "favicon": "http://www.verb2verbe.com/favicon.ico",
+ "name": "verb2verbe.com",
+ "triggers": [
+ "v2vf"
+ ],
+ "regions": {
+ "default": "http://www.verb2verbe.com/francais/FrenchConj.aspx?verb={{{term}}}&tail=&ref=0&type=query"
+ }
+ },
+ {
+ "favicon": "http://www.les-verbes.com/favicon.ico",
+ "name": "VERBES - Conjugaison française",
+ "triggers": [
+ "verbes"
+ ],
+ "regions": {
+ "default": "http://www.les-verbes.com/conjuguer.php?verbe={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.verbformen.de/favicon-16x16.png",
+ "name": "VerbFormen",
+ "triggers": [
+ "verben",
+ "vf"
+ ],
+ "regions": {
+ "default": "http://www.verbformen.de/konjugation/?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://verbix.com/favicon.ico",
+ "name": "Verbix",
+ "triggers": [
+ "verbix"
+ ],
+ "regions": {
+ "default": "http://verbix.com/find-verb/?verb={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.verbix.com/favicon.ico",
+ "name": "Verbix (English conjugation verb)",
+ "triggers": [
+ "verbixeng"
+ ],
+ "regions": {
+ "default": "http://www.verbix.com/webverbix/English/{{{term}}}r.html"
+ }
+ },
+ {
+ "favicon": "http://www.verbix.com/favicon.ico",
+ "name": "Verbix (Norwegian)",
+ "triggers": [
+ "noverbix"
+ ],
+ "regions": {
+ "default": "http://www.verbix.com/webverbix/go.php?D1=25&T1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.verbs.cat/templates/almeria/icons/terrassa.ico",
+ "name": "Verbs.cat",
+ "triggers": [
+ "verbcat"
+ ],
+ "regions": {
+ "default": "http://www.verbs.cat/ca/conjugacio.html?infinitive={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.verisure.se/resources/img/favicon/favicon.ico",
+ "name": "Verisure",
+ "triggers": [
+ "verisure"
+ ],
+ "regions": {
+ "default": "https://www.verisure.se/hidden/search-results.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.verkkokauppa.com/favicon.ico",
+ "name": "Verkkokauppa.com",
+ "triggers": [
+ "verkkis",
+ "verk",
+ "verkkokauppa"
+ ],
+ "regions": {
+ "default": "https://www.verkkokauppa.com/fi/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://veroot.com/favicon.ico",
+ "name": "Veroot",
+ "triggers": [
+ "veroot"
+ ],
+ "regions": {
+ "default": "http://veroot.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.versandapo.de/templates/versandapo_de/favicon.ico",
+ "name": "VersandApo",
+ "triggers": [
+ "versandapo"
+ ],
+ "regions": {
+ "default": "http://www.versandapo.de/article/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vertalen.nu/favicon.ico",
+ "name": "vertalen.nu",
+ "triggers": [
+ "vertalen"
+ ],
+ "regions": {
+ "default": "http://www.vertalen.nu/vertaal?van=nl&naar=en&vertaal={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vertalen.nu/favicon.ico",
+ "name": "Vertalen.nu",
+ "triggers": [
+ "vertalennu"
+ ],
+ "regions": {
+ "default": "http://www.vertalen.nu/vertaal?vertaal={{{term}}}&van=en&naar=nl"
+ }
+ },
+ {
+ "favicon": "http://www.verticalset.com/favicon.ico",
+ "name": "Vertical Set",
+ "triggers": [
+ "verticalset"
+ ],
+ "regions": {
+ "default": "http://www.verticalset.com/search#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vevo.com/nucleus/img/favicon.545dabec.ico",
+ "name": "Vevo",
+ "triggers": [
+ "vevo"
+ ],
+ "regions": {
+ "default": "https://www.vevo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vfrmagazine.net/favicon.ico",
+ "name": "VFRMagazine",
+ "triggers": [
+ "vfrmag"
+ ],
+ "regions": {
+ "default": "http://www.vfrmagazine.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vgcollect.com/assets/favicon.ico",
+ "name": "VGCollect",
+ "triggers": [
+ "vgcollect"
+ ],
+ "regions": {
+ "default": "http://vgcollect.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vgmdb.net/favicon.ico",
+ "name": "VGMdb",
+ "triggers": [
+ "vgmdb"
+ ],
+ "regions": {
+ "default": "https://vgmdb.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/vi/img/favicon.ico?v=b90df495f0e4",
+ "name": "Vi @ stackExchange",
+ "triggers": [
+ "viso"
+ ],
+ "regions": {
+ "default": "https://vi.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://viaf.org/viaf/images/viaf.ico",
+ "name": "VIAF (Virtual Internet Authority File)",
+ "triggers": [
+ "viaf"
+ ],
+ "regions": {
+ "default": "https://viaf.org/viaf/search?query=local.names+all+%22{{{term}}}%22&stylesheet=/viaf/xsl/results.xsl&sortKeys=holdingscount&maximumRecords=100"
+ }
+ },
+ {
+ "favicon": "http://www.viagogo.com/favicon.ico",
+ "name": "viagogo",
+ "triggers": [
+ "vgg"
+ ],
+ "regions": {
+ "default": "http://www.viagogo.com/searchResults.aspx?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.viagogo.co.uk/favicon.ico",
+ "name": "viagogo.co.uk",
+ "triggers": [
+ "vgguk"
+ ],
+ "regions": {
+ "default": "http://www.viagogo.co.uk/searchResults.aspx?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.viagogo.de/favicon.ico",
+ "name": "viagogo.de",
+ "triggers": [
+ "vggde"
+ ],
+ "regions": {
+ "default": "http://www.viagogo.de/searchResults.aspx?SearchText={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://olharvianadocastelo.com/favicon.ico",
+ "name": "Viana Mobile",
+ "triggers": [
+ "olharvianadocastelo"
+ ],
+ "regions": {
+ "default": "http://olharvianadocastelo.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://viaplay.com/favicon.ico",
+ "name": "Viaplay",
+ "triggers": [
+ "viaplay"
+ ],
+ "regions": {
+ "default": "https://viaplay.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.viasona.cat/icones/favicon.ico",
+ "name": "Viasona",
+ "triggers": [
+ "viasona"
+ ],
+ "regions": {
+ "default": "http://www.viasona.cat/cerca?que={{{term}}}&cerca="
+ }
+ },
+ {
+ "favicon": "https://vice-web-statics-cdn.vice.com/favicons/vice/favicon.ico",
+ "name": "Vice",
+ "triggers": [
+ "vice"
+ ],
+ "regions": {
+ "default": "https://www.vice.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://la.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Vicipaedia",
+ "triggers": [
+ "vici"
+ ],
+ "regions": {
+ "default": "https://la.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://secure.gravatar.com/blavatar/914bf41319b99c894a7864d3f072f6c6?s=32",
+ "name": "victorhckinthefreeworld",
+ "triggers": [
+ "vhck"
+ ],
+ "regions": {
+ "default": "https://victorhckinthefreeworld.wordpress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.victoria.ac.nz/__data/assets/file/0003/2928/favicon.ico",
+ "name": "Victoria University of Wellington",
+ "triggers": [
+ "vuw"
+ ],
+ "regions": {
+ "default": "http://www.victoria.ac.nz/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.data.vic.gov.au/favicon.ico",
+ "name": "Victorian Government Datasets",
+ "triggers": [
+ "datavicgov"
+ ],
+ "regions": {
+ "default": "https://www.data.vic.gov.au/data/dataset?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vid.me/assets/images/favicon/favicon-32x32.png?c=oNz1Lrrc",
+ "name": "vid me",
+ "triggers": [
+ "vidme",
+ "vm"
+ ],
+ "regions": {
+ "default": "https://vid.me/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vidal.fr/themes/main/default/front/imgs/favicon.ico?2",
+ "name": "VIDAL",
+ "triggers": [
+ "vidal"
+ ],
+ "regions": {
+ "default": "https://www.vidal.fr/recherche/index/q:{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.vidangel.com/static/favicon.ico",
+ "name": "VidAngel",
+ "triggers": [
+ "vidangel"
+ ],
+ "regions": {
+ "default": "http://www.vidangel.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.videodetective.com/favicon.ico",
+ "name": "Video Detective",
+ "triggers": [
+ "videodetective"
+ ],
+ "regions": {
+ "default": "http://www.videodetective.com/Search/Results?id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://videogames.pricecharting.com/images/apple-touch-icon-precomposed.png",
+ "name": "Video Game Price Charts",
+ "triggers": [
+ "vgpc"
+ ],
+ "regions": {
+ "default": "http://videogames.pricecharting.com/search?q={{{term}}}&submit=Go"
+ }
+ },
+ {
+ "favicon": "https://www.video2brain.com/de/favicon.ico",
+ "name": "video2brain",
+ "triggers": [
+ "v2b"
+ ],
+ "regions": {
+ "default": "https://www.video2brain.com/de/search.htm?search_entry={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.videoculinary.ru/wp-content/uploads/2016/01/cropped-dan-192x192.jpg",
+ "name": "videoculinary.ru",
+ "triggers": [
+ "videoculinary"
+ ],
+ "regions": {
+ "default": "http://www.videoculinary.ru/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cf.geekdo-static.com/icons/favicon.ico",
+ "name": "VideoGameGeek",
+ "triggers": [
+ "videogamegeek"
+ ],
+ "regions": {
+ "default": "https://videogamegeek.com/geeksearch.php?action=search&objecttype=videogameunified&q={{{term}}}&B1=Go"
+ }
+ },
+ {
+ "favicon": "http://videohive.net/favicon.ico",
+ "name": "VideoHive",
+ "triggers": [
+ "videohive"
+ ],
+ "regions": {
+ "default": "http://videohive.net/search?utf8=%E2%9C%93&term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tuil.webs.com/favicon.ico",
+ "name": "Videos - Fireburst",
+ "triggers": [
+ "fireburstvideos"
+ ],
+ "regions": {
+ "default": "http://tuil.webs.com/fireburst/video.htm?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://videosift.com/favicon.ico",
+ "name": "Videosift",
+ "triggers": [
+ "videosift"
+ ],
+ "regions": {
+ "default": "http://videosift.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.r.worldssl.net/img/favicon.png",
+ "name": "VidLii",
+ "triggers": [
+ "vidlii"
+ ],
+ "regions": {
+ "default": "https://www.vidlii.com/results?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vidozz.com/assets/favicon-d31825bcfaabb50fa2b3a7d6d105481e5def4edae0c50faab3ed2479858f9fe1.png",
+ "name": "Vidozz",
+ "triggers": [
+ "vidozz"
+ ],
+ "regions": {
+ "default": "https://vidozz.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//viewcomic.com/wp-content/uploads/2014/03/favicon1.ico",
+ "name": "viewcomic.com",
+ "triggers": [
+ "viewc"
+ ],
+ "regions": {
+ "default": "http://viewcomic.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vijesti.me/static/img/favicon.ico",
+ "name": "Vijesti Online",
+ "triggers": [
+ "vijesti"
+ ],
+ "regions": {
+ "default": "http://www.vijesti.me/trazi/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://0.viki.io/a/favicon-caaf3f02174dc2d1aabd648832a86bbe.ico",
+ "name": "Viki.com",
+ "triggers": [
+ "vik"
+ ],
+ "regions": {
+ "default": "https://www.viki.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Vikipedi",
+ "triggers": [
+ "wtr"
+ ],
+ "regions": {
+ "default": "https://tr.wikipedia.org/w/index.php?search={{{term}}}&title=%C3%96zel%3AAra&go=Git"
+ }
+ },
+ {
+ "favicon": "https://tr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Vikipedi (Turkish Wikipedia)",
+ "triggers": [
+ "vikipedi"
+ ],
+ "regions": {
+ "default": "https://tr.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://lt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Vikipedija (Wikipedia LT)",
+ "triggers": [
+ "wlt"
+ ],
+ "regions": {
+ "default": "https://lt.wikipedia.org/w/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eo.wiktionary.org/static/favicon/piece.ico",
+ "name": "Vikivortaro",
+ "triggers": [
+ "wteo"
+ ],
+ "regions": {
+ "default": "https://eo.wiktionary.org/w/index.php?search={{{term}}}&title=Speciala%C4%B5o%3ASer%C4%89i&go=Ek!"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/villains/images/6/64/Favicon.ico/revision/latest?cb=20170402183913",
+ "name": "Villains Wikia",
+ "triggers": [
+ "villain"
+ ],
+ "regions": {
+ "default": "http://villains.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vimawesome.com/static/favicon.ico",
+ "name": "Vim Awesome",
+ "triggers": [
+ "vimawesome",
+ "va",
+ "vimaw"
+ ],
+ "regions": {
+ "default": "http://vimawesome.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vim.org/images/vim_shortcut.ico",
+ "name": "Vim Scripts",
+ "triggers": [
+ "vimscripts"
+ ],
+ "regions": {
+ "default": "http://www.vim.org/scripts/script_search_results.php?keywords={{{term}}}&script_type=&order_by=rating&direction=descending&search=search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/vim/images/6/64/Favicon.ico/revision/latest?cb=20070606151428",
+ "name": "Vim Tips wiki",
+ "triggers": [
+ "vimw"
+ ],
+ "regions": {
+ "default": "http://vim.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vimdoc.sourceforge.net/images/vim_shortcut.ico",
+ "name": "Vimdoc",
+ "triggers": [
+ "vimdoc"
+ ],
+ "regions": {
+ "default": "http://vimdoc.sourceforge.net/search.php?search={{{term}}}&docs=help"
+ }
+ },
+ {
+ "favicon": "https://f.vimeocdn.com/images_v6/favicon.ico?DEV",
+ "name": "Vimeo",
+ "triggers": [
+ "vimeo"
+ ],
+ "regions": {
+ "default": "https://vimeo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://v.cdn.vine.co/w/32275367-assets/images/favicon.ico",
+ "name": "Vine",
+ "triggers": [
+ "vine"
+ ],
+ "regions": {
+ "default": "https://vine.co/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ving.no/StaticContent/web/common/img/favicon-00.ico",
+ "name": "Ving",
+ "triggers": [
+ "ving"
+ ],
+ "regions": {
+ "default": "http://www.ving.no/searchresult?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.viralclassifieds.com/favicon.ico",
+ "name": "viralclassifieds",
+ "triggers": [
+ "viralclassifieds"
+ ],
+ "regions": {
+ "default": "http://www.viralclassifieds.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ricerca.virgilio.it/common/img/favicon-16x16.png",
+ "name": "Virgilio",
+ "triggers": [
+ "vir"
+ ],
+ "regions": {
+ "default": "http://ricerca.virgilio.it/ricerca?qs={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://mail.virgilio.it/login/?q=fgbabkkailkbmk:",
+ "name": "Virgilio Mail",
+ "triggers": [
+ "virgiliomail"
+ ],
+ "regions": {
+ "default": "http://mail.virgilio.it/login/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "//www.assets.cms.vt.edu/images/favicon.ico",
+ "name": "Virginia Tech",
+ "triggers": [
+ "vtech"
+ ],
+ "regions": {
+ "default": "https://search.vt.edu/search/pages.html;sa=Search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.virustotal.com/ui-public/images/flag.png",
+ "name": "VirusTotal",
+ "triggers": [
+ "virustotal"
+ ],
+ "regions": {
+ "default": "https://www.virustotal.com/url/submission/?force=1&url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.virustotal.com/ui-public/images/flag.png",
+ "name": "VirusTotal",
+ "triggers": [
+ "virustotalfilesearch"
+ ],
+ "regions": {
+ "default": "https://www.virustotal.com/en/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://visualhunt.com/favicon.ico",
+ "name": "Visual Hunt",
+ "triggers": [
+ "visualh"
+ ],
+ "regions": {
+ "default": "https://visualhunt.com/search/instant/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://marketplace.visualstudio.com/favicon.ico",
+ "name": "Visual Studio Code Extensions",
+ "triggers": [
+ "vscode"
+ ],
+ "regions": {
+ "default": "https://marketplace.visualstudio.com/search?term={{{term}}}&target=VSCode&sortBy=Relevance"
+ }
+ },
+ {
+ "favicon": "http://www.yasiv.com/favicon.ico",
+ "name": "visual-youtube",
+ "triggers": [
+ "visual-youtube"
+ ],
+ "regions": {
+ "default": "http://www.yasiv.com/youtube#?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vtk.org/wp-content/uploads/2015/03/favi_vtk.png",
+ "name": "Visualization Toolkit (VTK) class documentation (devel)",
+ "triggers": [
+ "vtkcd"
+ ],
+ "regions": {
+ "default": "http://www.vtk.org/doc/nightly/html/class{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://visuwords.com/favicon.ico",
+ "name": "visuwords.com",
+ "triggers": [
+ "vis"
+ ],
+ "regions": {
+ "default": "http://visuwords.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.vivaolinux.com.br/favicon.png",
+ "name": "Viva o Linux",
+ "triggers": [
+ "vol"
+ ],
+ "regions": {
+ "default": "http://www.vivaolinux.com.br/busca/?cx=partner-pub-3535276187000580%3A4725058203&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&tipoBusca=0&siteurl=www.vivaolinux.com.br"
+ }
+ },
+ {
+ "favicon": "//a.vsstatic.com/common/favicon/favicon.ico",
+ "name": "Vivid Seats",
+ "triggers": [
+ "vs"
+ ],
+ "regions": {
+ "default": "http://www.vividseats.com/Search.action?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vk.com/images/icons/favicons/fav_logo.ico?8",
+ "name": "Vkontakte",
+ "triggers": [
+ "vk"
+ ],
+ "regions": {
+ "default": "https://vk.com/search?c[q]={{{term}}}&c[section]=auto"
+ }
+ },
+ {
+ "favicon": "https://vk.com/images/icons/favicons/fav_logo.ico?8",
+ "name": "Vkontakte video",
+ "triggers": [
+ "vkv"
+ ],
+ "regions": {
+ "default": "https://vk.com/video?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vlasisku.lojban.org/static/favicon-16.png",
+ "name": "Vlasisku",
+ "triggers": [
+ "vla",
+ "vlasisku"
+ ],
+ "regions": {
+ "default": "http://vlasisku.lojban.org/vlasisku/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://kb.vmware.com/resource/KM_Community_Favicon",
+ "name": "VMware Knowledge Base",
+ "triggers": [
+ "vmkb"
+ ],
+ "regions": {
+ "default": "https://kb.vmware.com/selfservice/search.do?usemicrosite=true&searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vndb.org/favicon.ico",
+ "name": "VNDB",
+ "triggers": [
+ "vndb"
+ ],
+ "regions": {
+ "default": "http://vndb.org/v/all?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://voat.co/favicon.ico",
+ "name": "Voat",
+ "triggers": [
+ "subverse"
+ ],
+ "regions": {
+ "default": "https://voat.co/search/findsubverse?q={{{term}}}&d=true"
+ }
+ },
+ {
+ "favicon": "https://searchvoat.co/favicon.ico",
+ "name": "Voat",
+ "triggers": [
+ "voat"
+ ],
+ "regions": {
+ "default": "https://searchvoat.co/?all={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://voat.co/favicon.ico",
+ "name": "Voat",
+ "triggers": [
+ "sv"
+ ],
+ "regions": {
+ "default": "https://voat.co/v/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.swahili.it/favicon.ico",
+ "name": "Vocabolario Italiano-Esperanto (Minnaja)",
+ "triggers": [
+ "iteo"
+ ],
+ "regions": {
+ "default": "http://www.swahili.it/glossword/index.php?a=term&d=2&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.vocab.com/images/favicons/favicon-16x16-uf6i7e.png",
+ "name": "Vocabulary",
+ "triggers": [
+ "vocabulary",
+ "vocab",
+ "whats"
+ ],
+ "regions": {
+ "default": "https://www.vocabulary.com/dictionary/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vocadb.net/Content/favicon.ico",
+ "name": "VocaDB",
+ "triggers": [
+ "vocadb"
+ ],
+ "regions": {
+ "default": "http://vocadb.net/Search?filter={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/vocaloid/images/6/64/Favicon.ico/revision/latest?cb=20151210061346",
+ "name": "Vocaloid Wiki",
+ "triggers": [
+ "vocaloid"
+ ],
+ "regions": {
+ "default": "http://vocaloid.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.voced.edu.au/sites/default/files/favicon32x32.png",
+ "name": "VOCED",
+ "triggers": [
+ "voced"
+ ],
+ "regions": {
+ "default": "http://www.voced.edu.au/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.voedingswaardetabel.nl/_lib/img/favicon.ico",
+ "name": "Voedingswaardetabel.nl",
+ "triggers": [
+ "voedingswaarde"
+ ],
+ "regions": {
+ "default": "http://www.voedingswaardetabel.nl/voedingswaarde/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vogue.co.uk/static/icons/favicon.ico",
+ "name": "Vogue.co.uk",
+ "triggers": [
+ "vogueuk"
+ ],
+ "regions": {
+ "default": "http://www.vogue.co.uk/search/default.aspx?Keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vogue.com/wp-content/config/favicons/favicon.ico",
+ "name": "Vogue.com",
+ "triggers": [
+ "vogue"
+ ],
+ "regions": {
+ "default": "http://www.vogue.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.voidlinux.eu/resources/assets/favicon.ico",
+ "name": "Void Linux Wiki",
+ "triggers": [
+ "voidwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.voidlinux.eu/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets-cdn.github.com/favicon.ico",
+ "name": "Void Packages",
+ "triggers": [
+ "xbps"
+ ],
+ "regions": {
+ "default": "https://github.com/voidlinux/void-packages/search?q[]=filename%3Atemplate+path%3A%2Fsrcpkgs&q[]={{{term}}}&s=indexed"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/voltron/images/6/64/Favicon.ico/revision/latest?cb=20160216090219",
+ "name": "Voltron Wiki",
+ "triggers": [
+ "voltron"
+ ],
+ "regions": {
+ "default": "http://voltron.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://volution.ro/favicon.ico",
+ "name": "Volution",
+ "triggers": [
+ "volution"
+ ],
+ "regions": {
+ "default": "http://volution.ro/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.volution.ro/favicon.ico",
+ "name": "Volution Wiki",
+ "triggers": [
+ "vw"
+ ],
+ "regions": {
+ "default": "http://wiki.volution.ro/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//static.anvelia.net/graph/steam/2014/img/icon.png",
+ "name": "Vossey.com",
+ "triggers": [
+ "vossey"
+ ],
+ "regions": {
+ "default": "http://www.vossey.com/recherche/index.php?ac=recherche&titre={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://voters.seandaylor.com/favicon.ico",
+ "name": "voters.seandaylor.com",
+ "triggers": [
+ "voters"
+ ],
+ "regions": {
+ "default": "http://voters.seandaylor.com/search/?firstName=&lastName={{{term}}}&phoneSearch=&birthSearch=&addressSearch=&zipSearch=&submit="
+ }
+ },
+ {
+ "favicon": "https://cdn.vox-cdn.com/uploads/hub/sbnu_logo_minimal/441/touch_icon_iphone_retina_1000_yellow.755.png",
+ "name": "Vox.com",
+ "triggers": [
+ "vox"
+ ],
+ "regions": {
+ "default": "http://www.vox.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vrijuit.nl/app/upload/css_39471/vu/images/favicon.ico",
+ "name": "Vrij Uit vakanties",
+ "triggers": [
+ "vrijuit"
+ ],
+ "regions": {
+ "default": "https://vrijuit.nl/algemeen/ListerPage.aspx?filter=search({{{term}}})"
+ }
+ },
+ {
+ "favicon": "http://vschart.com/favicon.gif",
+ "name": "vsChart.com",
+ "triggers": [
+ "vschart"
+ ],
+ "regions": {
+ "default": "http://vschart.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vatefaireconjuguer.com/favicon.ico",
+ "name": "VTFC - vatefaireconjuguer.com",
+ "triggers": [
+ "vtf"
+ ],
+ "regions": {
+ "default": "http://www.vatefaireconjuguer.com/conjugaison/verbe/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vtluug.org/w/favicon.png",
+ "name": "vtluug wiki",
+ "triggers": [
+ "vtluug"
+ ],
+ "regions": {
+ "default": "https://vtluug.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//x.vukajlija.com/favicon.ico",
+ "name": "Vukajlija",
+ "triggers": [
+ "vukajlija"
+ ],
+ "regions": {
+ "default": "http://vukajlija.com/pretraga/izraz?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vulgumtechus.com/favicon.ico",
+ "name": "Vulgum Techus",
+ "triggers": [
+ "vt"
+ ],
+ "regions": {
+ "default": "http://www.vulgumtechus.com/index.php?title=Spécial:Recherche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vulners.com/favicon.ico",
+ "name": "Vulners.com",
+ "triggers": [
+ "vulners"
+ ],
+ "regions": {
+ "default": "https://vulners.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.vwe.nl/App_Themes/VWE/favicon.ico",
+ "name": "VWE",
+ "triggers": [
+ "vwe"
+ ],
+ "regions": {
+ "default": "http://www.vwe.nl/zoeken_resultaten.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.vartoslo.no/media/uploads/2016/07/favicon.png",
+ "name": "VårtOslo",
+ "triggers": [
+ "vartoslo"
+ ],
+ "regions": {
+ "default": "https://www.vartoslo.no/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.w3schools.com/favicon.ico",
+ "name": "W3 Schools Tag",
+ "triggers": [
+ "w3stag"
+ ],
+ "regions": {
+ "default": "https://www.w3schools.com/tags/tag_{{{term}}}.asp"
+ }
+ },
+ {
+ "favicon": "https://validator.w3.org/nu/images/favicon.ico",
+ "name": "W3C Validator",
+ "triggers": [
+ "w3v"
+ ],
+ "regions": {
+ "default": "https://validator.w3.org/nu/?doc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://validator.w3.org/images/favicon.ico",
+ "name": "W3C Validator",
+ "triggers": [
+ "validate"
+ ],
+ "regions": {
+ "default": "https://validator.w3.org/check?uri={{{term}}}&charset=%28detect+automatically%29&doctype=Inline&group=0"
+ }
+ },
+ {
+ "favicon": "//assets.wad-archive.com/images/favicon.ico",
+ "name": "Wad Archive",
+ "triggers": [
+ "wad"
+ ],
+ "regions": {
+ "default": "http://www.wad-archive.com/search?o=d&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wadoku.de/img/touch-icon-144x144.png",
+ "name": "WaDoKu",
+ "triggers": [
+ "wadoku"
+ ],
+ "regions": {
+ "default": "http://www.wadoku.de/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://waffle.press/favicon.ico",
+ "name": "Waffle Press",
+ "triggers": [
+ "wafflepress"
+ ],
+ "regions": {
+ "default": "https://waffle.press/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wagingnonviolence.org/wp-content/themes/sink_wnv/favicon.ico",
+ "name": "Waging Nonviolence",
+ "triggers": [
+ "wnv"
+ ],
+ "regions": {
+ "default": "http://wagingnonviolence.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://28oa9i1t08037ue3m1l0i861-wpengine.netdna-ssl.com/wp-content/themes/waitbutwhy/images/favicon.ico",
+ "name": "Wait But Why",
+ "triggers": [
+ "waitbutwhy"
+ ],
+ "regions": {
+ "default": "http://waitbutwhy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//dfjml3xf3svvu.cloudfront.net/static/version3/favicon.ico",
+ "name": "Waitrose",
+ "triggers": [
+ "waitrose"
+ ],
+ "regions": {
+ "default": "http://www.waitrose.com/shop/HeaderSearchCmd?searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://social.wakoopa.com/favicon.ico",
+ "name": "Wakoopa",
+ "triggers": [
+ "wakoopa"
+ ],
+ "regions": {
+ "default": "http://social.wakoopa.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.walgreens.com/favicon.ico",
+ "name": "Walgreens",
+ "triggers": [
+ "wgs"
+ ],
+ "regions": {
+ "default": "http://www.walgreens.com/search/results.jsp?Ntt={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://www.walkscore.com/favicon.ico",
+ "name": "Walk Score",
+ "triggers": [
+ "walkscore"
+ ],
+ "regions": {
+ "default": "http://www.walkscore.com/score/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wallstreetoasis.com/sites/all/themes/Porto_sub/favicon.ico",
+ "name": "Wall Street Oasis Forums",
+ "triggers": [
+ "wso"
+ ],
+ "regions": {
+ "default": "http://www.wallstreetoasis.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://alpha.wallhaven.cc/favicon.ico",
+ "name": "wallhaven",
+ "triggers": [
+ "wallbase",
+ "wallhaven",
+ "wallheaven",
+ "wallh"
+ ],
+ "regions": {
+ "default": "http://alpha.wallhaven.cc/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://alpha.wallhaven.cc/favicon.ico",
+ "name": "Wallhaven Alpha",
+ "triggers": [
+ "walla"
+ ],
+ "regions": {
+ "default": "http://alpha.wallhaven.cc/wallpaper/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.alphacoders.com/icons/wallpaper/favicon.ico",
+ "name": "Wallpaper Abyss",
+ "triggers": [
+ "abyss"
+ ],
+ "regions": {
+ "default": "http://wall.alphacoders.com/search.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.walmart.com/favicon.ico",
+ "name": "WalMart",
+ "triggers": [
+ "walmart"
+ ],
+ "regions": {
+ "default": "https://www.walmart.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.walmart.ca/favicon.ico",
+ "name": "Walmart Canada",
+ "triggers": [
+ "walmartca"
+ ],
+ "regions": {
+ "default": "http://www.walmart.ca/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.walmart.com/favicon.ico",
+ "name": "Walmart US",
+ "triggers": [
+ "wus"
+ ],
+ "regions": {
+ "default": "https://www.walmart.com/search/?query={{{term}}}&country=US"
+ }
+ },
+ {
+ "favicon": "https://www.wandaloo.com/imgs/favicon.png",
+ "name": "wandaloo",
+ "triggers": [
+ "wnd"
+ ],
+ "regions": {
+ "default": "http://www.wandaloo.com/search-result.php?pg=1&q={{{term}}}&w=news&m=pertinence"
+ }
+ },
+ {
+ "favicon": "https://assets-fs.wnlimg.com/assets/favicon/favicon-192x192-ea0207910798f70538a7ab7b299f8e6e.png",
+ "name": "Wanelo",
+ "triggers": [
+ "wan",
+ "wanelo"
+ ],
+ "regions": {
+ "default": "http://wanelo.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.warthunder.com/favicon.ico",
+ "name": "War Thunder Wiki",
+ "triggers": [
+ "wtw"
+ ],
+ "regions": {
+ "default": "https://wiki.warthunder.com/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/warframe/images/6/64/Favicon.ico/revision/latest?cb=20141123165606",
+ "name": "Warframe",
+ "triggers": [
+ "warframe",
+ "wframe"
+ ],
+ "regions": {
+ "default": "http://warframe.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns14=1"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/warframe/images/6/64/Favicon.ico/revision/latest?cb=20141123165606",
+ "name": "WARFRAME Wiki",
+ "triggers": [
+ "wfen"
+ ],
+ "regions": {
+ "default": "http://warframe.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/warframe/images/6/64/Favicon.ico/revision/latest?cb=20141123165606",
+ "name": "WARFRAME Wiki",
+ "triggers": [
+ "wfwiki"
+ ],
+ "regions": {
+ "default": "http://warframe.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/warframe/images/6/64/Favicon.ico/revision/latest?cb=20141123165606",
+ "name": "WARFRAME Wiki",
+ "triggers": [
+ "wfw"
+ ],
+ "regions": {
+ "default": "http://warframe.wikia.com/wiki/Special:WikiaSearch?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/warframe/images/6/64/Favicon.ico/revision/latest?cb=20170211231431&path-prefix=de",
+ "name": "Warframe Wiki (DE)",
+ "triggers": [
+ "wfde"
+ ],
+ "regions": {
+ "default": "http://de.warframe.wikia.com/wiki/Spezial:Suche?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.wargaming.net/favicon.ico",
+ "name": "Wargaming.net Wiki",
+ "triggers": [
+ "wgw",
+ "wotwiki"
+ ],
+ "regions": {
+ "default": "http://wiki.wargaming.net/en/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.warpzone.ms/favicon.ico",
+ "name": "Warpzone e.V.",
+ "triggers": [
+ "wz"
+ ],
+ "regions": {
+ "default": "https://www.warpzone.ms/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://wiki.warpzone.ms/_media/wiki:favicon.ico",
+ "name": "Warpzone Wiki",
+ "triggers": [
+ "wzw"
+ ],
+ "regions": {
+ "default": "http://wiki.warpzone.ms/start?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wap.org/favicon.png",
+ "name": "Washington Apple Pi",
+ "triggers": [
+ "wap"
+ ],
+ "regions": {
+ "default": "https://www.wap.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://catalog.wccls.org/polaris//favicon.ico",
+ "name": "Washington County Cooperative Library Services",
+ "triggers": [
+ "wccls"
+ ],
+ "regions": {
+ "default": "http://catalog.wccls.org/polaris/search/searchresults.aspx?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.watchanimeon.com/favicon.ico",
+ "name": "Watch Anime On",
+ "triggers": [
+ "watchanime"
+ ],
+ "regions": {
+ "default": "http://www.watchanimeon.com/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.watchrecon.com/data/favicon-32.png",
+ "name": "Watch Recon",
+ "triggers": [
+ "recon"
+ ],
+ "regions": {
+ "default": "http://www.watchrecon.com/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://watchtvseries.se/favicon.ico",
+ "name": "Watch Series",
+ "triggers": [
+ "wts"
+ ],
+ "regions": {
+ "default": "http://watchtvseries.se/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wol.jw.org/icon/favicon.ico",
+ "name": "Watchtower Online Library",
+ "triggers": [
+ "watchtower"
+ ],
+ "regions": {
+ "default": "http://wol.jw.org/en/wol/qt/r1/lp-e?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wol.jw.org/icon/favicon.ico",
+ "name": "Watchtower Online Library",
+ "triggers": [
+ "wol"
+ ],
+ "regions": {
+ "default": "http://wol.jw.org/wol/finder?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wol.jw.org/icon/favicon.ico",
+ "name": "Watchtower Online Library (Swedish)",
+ "triggers": [
+ "wolsv"
+ ],
+ "regions": {
+ "default": "https://wol.jw.org/wol/finder?wtlocale=Z&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://watchvideo.us/favicon.ico",
+ "name": "Watchvideo.us",
+ "triggers": [
+ "watchvideo"
+ ],
+ "regions": {
+ "default": "http://watchvideo.us/?op=search&k={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.waterstones.com/1.4.39/img/touch-icon-180x180.png",
+ "name": "Waterstones",
+ "triggers": [
+ "waterstones"
+ ],
+ "regions": {
+ "default": "https://www.waterstones.com/books/search/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.watson.ch/favicon-live.ico",
+ "name": "Watson",
+ "triggers": [
+ "watson"
+ ],
+ "regions": {
+ "default": "https://www.watson.ch/u/search?#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//a.wattpad.com/favicon.ico",
+ "name": "Wattpad",
+ "triggers": [
+ "wattpad"
+ ],
+ "regions": {
+ "default": "https://www.wattpad.com/stories/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wave.webaim.org/favicon.ico",
+ "name": "WAVE",
+ "triggers": [
+ "wave"
+ ],
+ "regions": {
+ "default": "http://wave.webaim.org/report#/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://web.archive.org/static/images/archive.ico",
+ "name": "Wayback Machine",
+ "triggers": [
+ "save"
+ ],
+ "regions": {
+ "default": "https://web.archive.org/save/*/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wayfair.com/favicon.ico",
+ "name": "Wayfair",
+ "triggers": [
+ "wayfair"
+ ],
+ "regions": {
+ "default": "http://www.wayfair.com/keyword.php?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wayfair.ca/favicon.ico",
+ "name": "Wayfair.ca",
+ "triggers": [
+ "wayfairca"
+ ],
+ "regions": {
+ "default": "https://www.wayfair.ca/keyword.php?keyword={{{term}}}&command=dosearch&new_keyword_search=true"
+ }
+ },
+ {
+ "favicon": "https://wayne.edu/favicon.ico",
+ "name": "Wayne State University",
+ "triggers": [
+ "wsu"
+ ],
+ "regions": {
+ "default": "https://wayne.edu/search/?q={{{term}}}&type=all"
+ }
+ },
+ {
+ "favicon": "http://d3kwtionx0p7im.cloudfront.net/images/icons/favicon.png",
+ "name": "WBUR",
+ "triggers": [
+ "wbur"
+ ],
+ "regions": {
+ "default": "http://www.wbur.org/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://waapt.wiki.tropi.us/favicon.ico",
+ "name": "We Are All Pokémon Trainers Wiki",
+ "triggers": [
+ "waapt"
+ ],
+ "regions": {
+ "default": "https://waapt.wiki.tropi.us/wiki/Special:Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.whicdn.com/assets/favicon-16x16-b1c9367da5af0c3eeee0dfa05ccd35e3.png",
+ "name": "We Heart It",
+ "triggers": [
+ "weheartit"
+ ],
+ "regions": {
+ "default": "https://weheartit.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.weasyl.com/static/images/favicon.png",
+ "name": "Weasyl",
+ "triggers": [
+ "wzl"
+ ],
+ "regions": {
+ "default": "https://www.weasyl.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d2hhjsu0v3gh4o.cloudfront.net/favicon.ico",
+ "name": "Weather For You",
+ "triggers": [
+ "weathforyou"
+ ],
+ "regions": {
+ "default": "https://www.weatherforyou.com/reports/index.php?forecast=zandh&pands={{{term}}}&Submit=Get+Weather"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAATlBMVEUAAABJeMtJdsxJeMtLeNNJd8tJd8tId8tJd8tJbdtJd8v////s8fqPq99hidP6 /7Y4vSrwed0mNdpkNVSfs7y9fzK2PC1yOqGpd19ntop3f42AAAACnRSTlMAkNQrBfO9lfEHLoJd6wAAAHxJREFUGNNlT9sWwyAIA9HWYWvduuv// gksKflJUZOSCCDcColsZDjsmpgzdALxGgv1cV fL63YcTTD33fto6HEIOvx00BpmTUj10diYrRs03AVKnGaDxOo2oWpMSSRBwpn99S8ZR3OMWLdYR4Mcqz gkV1SmzBnjqv/O/dTkITFmWAYMAAAAASUVORK5CYII=",
+ "name": "Weather Spark",
+ "triggers": [
+ "weatherspark"
+ ],
+ "regions": {
+ "default": "https://weatherspark.com/#!dashboard;q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://icons.wxug.com/favicon.png",
+ "name": "Weather Underground",
+ "triggers": [
+ "wunderground",
+ "wg"
+ ],
+ "regions": {
+ "default": "http://www.wunderground.com/cgi-bin/findweather/getForecast?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://icons.wxug.com/favicon.png",
+ "name": "Weather Underground",
+ "triggers": [
+ "wu"
+ ],
+ "regions": {
+ "default": "http://www.wunderground.com/cgi-bin/findweather/hdfForecast?query={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.weather.com/weather/assets/favicon.1acd6ad0f84c999b39c434f6bda4e29f.ico",
+ "name": "Weather.com",
+ "triggers": [
+ "weather"
+ ],
+ "regions": {
+ "default": "http://www.weather.com/search/enhancedlocalsearch?where={{{term}}}&loctypes=1/5/9/11/13/19/&from=hdr"
+ }
+ },
+ {
+ "favicon": "https://www.weatherbug.com/img/favicon-32x32.png",
+ "name": "WeatherBug",
+ "triggers": [
+ "weatherbug"
+ ],
+ "regions": {
+ "default": "https://www.weatherbug.com/weather-forecast/now/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.webdesignerdepot.com/cdn-origin/uploads/2017/12/cropped-favicon-192x192.png",
+ "name": "Web Designer Depot",
+ "triggers": [
+ "webdesignerdepot"
+ ],
+ "regions": {
+ "default": "http://www.webdesignerdepot.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.mywot.com/favicon.ico",
+ "name": "Web of Trust",
+ "triggers": [
+ "weboftrust",
+ "mywot",
+ "wot"
+ ],
+ "regions": {
+ "default": "https://www.mywot.com/en/scorecard/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://docs.webplatform.org/favicon.ico",
+ "name": "Web Platform",
+ "triggers": [
+ "web",
+ "wpf"
+ ],
+ "regions": {
+ "default": "https://docs.webplatform.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.websecgeeks.com/favicon.ico",
+ "name": "Web Security Geeks",
+ "triggers": [
+ "websecgeeks.com"
+ ],
+ "regions": {
+ "default": "http://websecgeeks.com/?s={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://web2py.com/init/static/images/favicon.ico",
+ "name": "Web2Py",
+ "triggers": [
+ "web2py"
+ ],
+ "regions": {
+ "default": "http://web2py.com/books/default/search/29?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://webbco.us/WebbCo2015.png",
+ "name": "Webb Companies USA",
+ "triggers": [
+ "webbco"
+ ],
+ "regions": {
+ "default": "http://webbco.us/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://webbco.weebly.com/favicon.ico",
+ "name": "WebbCo",
+ "triggers": [
+ "webbcoweebly"
+ ],
+ "regions": {
+ "default": "https://webbco.weebly.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webcams.travel/icons/favicon.ico",
+ "name": "webcams.travel",
+ "triggers": [
+ "webcams"
+ ],
+ "regions": {
+ "default": "http://www.webcams.travel/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.webcitation.org/favicon.ico",
+ "name": "WebCitation",
+ "triggers": [
+ "webcite"
+ ],
+ "regions": {
+ "default": "https://www.webcitation.org/query?url={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.webcomponents.org/assets/favicon-16x16.png",
+ "name": "webcomponents.org",
+ "triggers": [
+ "webcomponents"
+ ],
+ "regions": {
+ "default": "https://www.webcomponents.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webforditas.hu/images/favicon.ico",
+ "name": "Webfordítás de-hu",
+ "triggers": [
+ "wfdehu"
+ ],
+ "regions": {
+ "default": "http://www.webforditas.hu/szotar.php?S={{{term}}}&l1=de&l2=hu"
+ }
+ },
+ {
+ "favicon": "http://www.webforditas.hu/images/favicon.ico",
+ "name": "Webfordítás en-hu",
+ "triggers": [
+ "wfenhu"
+ ],
+ "regions": {
+ "default": "http://www.webforditas.hu/szotar.php?S={{{term}}}&l1=en&l2=hu"
+ }
+ },
+ {
+ "favicon": "http://www.webforditas.hu/images/favicon.ico",
+ "name": "Webfordítás hu-de",
+ "triggers": [
+ "wfhude"
+ ],
+ "regions": {
+ "default": "http://www.webforditas.hu/szotar.php?S={{{term}}}&l1=hu&l2=de"
+ }
+ },
+ {
+ "favicon": "http://www.webforditas.hu/images/favicon.ico",
+ "name": "Webfordítás hu-en",
+ "triggers": [
+ "wfhuen"
+ ],
+ "regions": {
+ "default": "http://www.webforditas.hu/szotar.php?S= {{{term}}}&l1=hu&l2=en"
+ }
+ },
+ {
+ "favicon": "//cdn.webhallen.com/favicon-16x16.png",
+ "name": "Webhallen",
+ "triggers": [
+ "webhallen"
+ ],
+ "regions": {
+ "default": "http://www.webhallen.com/sok/?Text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webitext.com/favicon.ico",
+ "name": "WeBiText",
+ "triggers": [
+ "wbt"
+ ],
+ "regions": {
+ "default": "http://webitext.com/bin/webitext.cgi?sl=en&tl=fr&mnuc=all%3Agc.ca&uss=&dlg=search&mock=&ul=fr&kiv=&term={{{term}}}&submit_button=Chercher"
+ }
+ },
+ {
+ "favicon": "https://bugs.webkit.org/images/favicon.ico",
+ "name": "WebKit Bugzilla",
+ "triggers": [
+ "wkb"
+ ],
+ "regions": {
+ "default": "https://bugs.webkit.org/buglist.cgi?quicksearch={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://weblio.hs.llnwd.net/e7/img/favicon/www.ico",
+ "name": "Weblio",
+ "triggers": [
+ "weblioj",
+ "weblio"
+ ],
+ "regions": {
+ "default": "http://www.weblio.jp/content/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://weblio.hs.llnwd.net/e7/img/favicon/thesaurus.ico",
+ "name": "Weblio",
+ "triggers": [
+ "webliot"
+ ],
+ "regions": {
+ "default": "http://thesaurus.weblio.jp/content/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://weblio.hs.llnwd.net/e7/img/favicon/ejje.ico",
+ "name": "weblio 英和辞典",
+ "triggers": [
+ "weblioe"
+ ],
+ "regions": {
+ "default": "http://ejje.weblio.jp/content/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.webmd.com/dtmcms/live/webmd/consumer_assets/site_images/favicon/webmd.ico",
+ "name": "WebMD",
+ "triggers": [
+ "webmd"
+ ],
+ "regions": {
+ "default": "http://www.webmd.com/search/search_results/default.aspx?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webmineral.com/favicon.ico",
+ "name": "Webmineral",
+ "triggers": [
+ "webmin"
+ ],
+ "regions": {
+ "default": "http://webmineral.com/cgi-bin/search/search.pl?sitesearch=&Terms={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://passport.webmoney.ru/favicon.ico",
+ "name": "WebMoney Transfer",
+ "triggers": [
+ "wmid"
+ ],
+ "regions": {
+ "default": "https://passport.webmoney.ru/asp/CertView.asp?wmid={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webos-internals.org/favicon.ico",
+ "name": "WebOS Internals",
+ "triggers": [
+ "wosi"
+ ],
+ "regions": {
+ "default": "http://www.webos-internals.org/index.php?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "//sites/webosnation.com/themes/webosnation/favicon-webos.ico",
+ "name": "webOS Nation",
+ "triggers": [
+ "wosn"
+ ],
+ "regions": {
+ "default": "http://www.webosnation.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webqc.org/favicon.ico",
+ "name": "WebQC.org",
+ "triggers": [
+ "molw"
+ ],
+ "regions": {
+ "default": "http://www.webqc.org/mmcalc.php?compound={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://jhg-traunreut.de/templates/jhg-traunreut/favicon.ico",
+ "name": "Website des JHG-Traunreut",
+ "triggers": [
+ "jhg"
+ ],
+ "regions": {
+ "default": "http://jhg-traunreut.de/index.php?q={{{term}}}&option=com_finder&view=search"
+ }
+ },
+ {
+ "favicon": "http://www.websitedown.info/favicon.ico",
+ "name": "Website Down",
+ "triggers": [
+ "websitedown",
+ "wd"
+ ],
+ "regions": {
+ "default": "http://www.websitedown.info/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://gizoogle.net/favicon.ico",
+ "name": "Website Tranzizzle",
+ "triggers": [
+ "tranz"
+ ],
+ "regions": {
+ "default": "http://gizoogle.net/tranzizzle.php?search={{{term}}}&se=Go+Git+Dis+Shiznit"
+ }
+ },
+ {
+ "favicon": "http://www.websmartboomer.com/templates/rt_hexeris/favicon.ico",
+ "name": "Websmartboomer",
+ "triggers": [
+ "boom"
+ ],
+ "regions": {
+ "default": "http://www.websmartboomer.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://websta.me/assets/img/favicon.ico",
+ "name": "Websta",
+ "triggers": [
+ "websta"
+ ],
+ "regions": {
+ "default": "http://websta.me/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://web.stagram.com/favicon.ico",
+ "name": "Webstagram",
+ "triggers": [
+ "webstagram"
+ ],
+ "regions": {
+ "default": "http://web.stagram.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webstatsdomain.com/favicon.ico",
+ "name": "webstatsdomain",
+ "triggers": [
+ "webstats"
+ ],
+ "regions": {
+ "default": "http://www.webstatsdomain.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://webstersdictionary1828.com/websters.ico?v=1",
+ "name": "Webster's Dictionary 1828 - Online Edition",
+ "triggers": [
+ "owd"
+ ],
+ "regions": {
+ "default": "http://webstersdictionary1828.com/Dictionary/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webstore.com/favicon-16x16.png",
+ "name": "Webstore",
+ "triggers": [
+ "webstore"
+ ],
+ "regions": {
+ "default": "http://www.webstore.com/search.php?option=basic_search&basic_search={{{term}}}&form_basic_search=Search"
+ }
+ },
+ {
+ "favicon": "http://www.webtender.com/favicon.ico",
+ "name": "Webtender",
+ "triggers": [
+ "bartender"
+ ],
+ "regions": {
+ "default": "http://www.webtender.com/cgi-bin/search?name={{{term}}}&show=15&verbose=on"
+ }
+ },
+ {
+ "favicon": "http://www.webupd8.org/favicon.ico",
+ "name": "WebUpd8",
+ "triggers": [
+ "webupd8"
+ ],
+ "regions": {
+ "default": "http://www.webupd8.org/search?q=+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.webutations.org/favicon.ico",
+ "name": "Webutation",
+ "triggers": [
+ "webutation"
+ ],
+ "regions": {
+ "default": "http://www.webutations.org/go/review/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webwarper.net/favicon.ico",
+ "name": "WebWarper.com",
+ "triggers": [
+ "webwarper"
+ ],
+ "regions": {
+ "default": "http://webwarper.net/ww/~av/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webxicon.org/static/sanakirja_img/en/favicon.ico?1414356562",
+ "name": "webxicon",
+ "triggers": [
+ "webxicon"
+ ],
+ "regions": {
+ "default": "http://webxicon.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webxicon.org/static/sanakirja_img/en/favicon.ico?1414356562",
+ "name": "Webxicon -> English",
+ "triggers": [
+ "webxiconen"
+ ],
+ "regions": {
+ "default": "http://webxicon.org/search.php?l=-1&l2=3&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webxicon.org/static/sanakirja_img/en/favicon.ico?1414356562",
+ "name": "Webxicon -> Finnish",
+ "triggers": [
+ "webxiconsu",
+ "webxiconfi"
+ ],
+ "regions": {
+ "default": "http://webxicon.org/search.php?l=-1&l2=17&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://webxicon.org/static/sanakirja_img/en/favicon.ico?1414356562",
+ "name": "Webxicon -> Swedish",
+ "triggers": [
+ "webxiconsv",
+ "webxiconse"
+ ],
+ "regions": {
+ "default": "http://webxicon.org/search.php?l=-1&l2=15&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://storage.weeronline.cloud/cookies/favicon.ico",
+ "name": "Weeronline",
+ "triggers": [
+ "weeronline"
+ ],
+ "regions": {
+ "default": "http://www.weeronline.nl/Go/Search/SearchResults?searchCriteria={{{term}}}&pageIndex=0&searchAction=WeatherInformation"
+ }
+ },
+ {
+ "favicon": "http://weezerpedia.com/favicon.ico",
+ "name": "Weezerpedia",
+ "triggers": [
+ "weezer"
+ ],
+ "regions": {
+ "default": "http://weezerpedia.com/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wegenwiki.nl/favicon.png",
+ "name": "Wegenwiki",
+ "triggers": [
+ "wwiki"
+ ],
+ "regions": {
+ "default": "https://www.wegenwiki.nl/index.php?search={{{term}}}&title=Speciaal%3AZoeken"
+ }
+ },
+ {
+ "favicon": "http://www.wegmans.com/etc/designs/wegmans/images/favicons.ico/favicon-16x16.png",
+ "name": "Wegmans",
+ "triggers": [
+ "wegmans"
+ ],
+ "regions": {
+ "default": "http://www.wegmans.com/webapp/wcs/stores/servlet/SearchResults?topsearch=true&Ne=5&Ntt={{{term}}}&Ntk=All&langId=-1&storeId=10052&Ntx=mode+MatchAllPartial&N=0&catalogId=10002&fromHeader=true&Nty=1"
+ }
+ },
+ {
+ "favicon": "https://resources.wehkamp.nl/2.11.1/images/favicon/favicon-228.png",
+ "name": "Wehkamp",
+ "triggers": [
+ "wehkamp"
+ ],
+ "regions": {
+ "default": "http://www.wehkamp.nl/Winkelen/SearchOverview.aspx?N=186&Nty=1&Ntk=ART&VIEW=Grid&Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/nightvale/images/6/64/Favicon.ico/revision/latest?cb=20160609105931",
+ "name": "Welcome To Night Vale Wiki",
+ "triggers": [
+ "nvwiki"
+ ],
+ "regions": {
+ "default": "http://nightvale.wikia.com/wiki/Special:Search?search= {{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.weltfussball.de/favicon.ico",
+ "name": "weltfussball.de",
+ "triggers": [
+ "wfdep"
+ ],
+ "regions": {
+ "default": "http://www.weltfussball.de/suche/?q={{{term}}}&kind=1"
+ }
+ },
+ {
+ "favicon": "http://www.weltfussball.de/favicon.ico",
+ "name": "weltfussball.de",
+ "triggers": [
+ "wfdet"
+ ],
+ "regions": {
+ "default": "http://www.weltfussball.de/suche/?q={{{term}}}&kind=2"
+ }
+ },
+ {
+ "favicon": "https://wlw.cdn.warpcache.net/wlw_assets/images/favicons/favicon.a674b256.ico",
+ "name": "Wer liefert was",
+ "triggers": [
+ "wlw"
+ ],
+ "regions": {
+ "default": "https://www.wlw.de/search?suchbegriff={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.werstreamt.es/favicon.ico",
+ "name": "WerStreamt.es",
+ "triggers": [
+ "werstreamt"
+ ],
+ "regions": {
+ "default": "https://www.werstreamt.es/filme-serien?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wesleyseminary.edu/wp-content/themes/WesleySem_Genisis_Child/images/favicon.ico",
+ "name": "Wesley Theological Seminary",
+ "triggers": [
+ "wsem"
+ ],
+ "regions": {
+ "default": "https://www.wesleyseminary.edu/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wesleyan.summon.serialssolutions.com/android-chrome-196x196.png",
+ "name": "Wesleyan Library OneSearch",
+ "triggers": [
+ "wes1",
+ "weslib"
+ ],
+ "regions": {
+ "default": "http://wesleyan.summon.serialssolutions.com/search?utf8=✓&s.q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wesleyan.edu/resources/img/favicon.ico",
+ "name": "Wesleyan University",
+ "triggers": [
+ "wesu"
+ ],
+ "regions": {
+ "default": "http://www.wesleyan.edu/search/search-results.html?cx=001254463385620737445%3Anbar83le1bc&cof=FORID%3A11&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.westelm.com/weimgs/ab/images/i/201826/0023/images/favicon.ico",
+ "name": "West Elm",
+ "triggers": [
+ "westelm"
+ ],
+ "regions": {
+ "default": "http://www.westelm.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://a.next.westlaw.com/Version2/images/favicon.ico?v=18.06.0",
+ "name": "WestlawNext",
+ "triggers": [
+ "wln"
+ ],
+ "regions": {
+ "default": "https://a.next.westlaw.com/Search/Results.html?query={{{term}}}&jurisdiction=ALLCASES"
+ }
+ },
+ {
+ "favicon": "http://search.wtsbooks.com/favicon.ico",
+ "name": "Westminster Bookstore",
+ "triggers": [
+ "wtsbooks"
+ ],
+ "regions": {
+ "default": "http://search.wtsbooks.com/?FullText={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "http://boilerinvasion.org/favicon.ico",
+ "name": "Westside Boiler Invasion",
+ "triggers": [
+ "wbi"
+ ],
+ "regions": {
+ "default": "http://boilerinvasion.org/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wetter.de/favicon.ico",
+ "name": "wetter.de",
+ "triggers": [
+ "wetterde"
+ ],
+ "regions": {
+ "default": "https://www.wetter.de/suche.html?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cs3.wettercomassets.com/wcomv5/images/icons/favicon/favicon.ico",
+ "name": "wetter.de",
+ "triggers": [
+ "wetter"
+ ],
+ "regions": {
+ "default": "https://www.wetter.com/suche/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://st.wetteronline.de/dr/1.1.2/images/logo/favicon.ico",
+ "name": "WetterOnline",
+ "triggers": [
+ "wo"
+ ],
+ "regions": {
+ "default": "http://www.wetteronline.de/wetter/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wh40k.lexicanum.com/favicon.ico",
+ "name": "WH40k Lexicanum",
+ "triggers": [
+ "lexicanum"
+ ],
+ "regions": {
+ "default": "http://wh40k.lexicanum.com/mediawiki/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.whatdotheyknow.com/assets/favicon-16x16-e38ba65468d18740d207daf98636545a4131fa37a2d3a6bc251c055f2d1d07f2.png",
+ "name": "What Do They Know",
+ "triggers": [
+ "wdtk"
+ ],
+ "regions": {
+ "default": "https://www.whatdotheyknow.com/search/{{{term}}}/all"
+ }
+ },
+ {
+ "favicon": "https://whatismyipaddress.com/favicon.ico",
+ "name": "What is my IP Address",
+ "triggers": [
+ "iplookup"
+ ],
+ "regions": {
+ "default": "https://whatismyipaddress.com/search-results?cx=partner-pub-2377419349862372%3At35o8u-g9e6&cof=FORID%3A9&ie=ISO-8859-1&q={{{term}}}&sa=Search&ref=whatismyipaddress.com%2F&ss=843j80035j10"
+ }
+ },
+ {
+ "favicon": "http://whatreallyhappened.com/sites/default/files/defaultWRH_favicon.ico",
+ "name": "What Really Happened",
+ "triggers": [
+ "wrh"
+ ],
+ "regions": {
+ "default": "http://whatreallyhappened.com/search/node/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whatthefuckshouldilistentorightnow.com/favicon.ico",
+ "name": "What the fuck should I listen to right now",
+ "triggers": [
+ "wtl"
+ ],
+ "regions": {
+ "default": "http://whatthefuckshouldilistentorightnow.com/artist.php?artist={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.whatsmydns.net/favicon.ico",
+ "name": "What's My DNS",
+ "triggers": [
+ "wmdns"
+ ],
+ "regions": {
+ "default": "https://www.whatsmydns.net/#A/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whatcms.org/themes/what_scss/favicon.ico",
+ "name": "WhatCMS",
+ "triggers": [
+ "whatcms"
+ ],
+ "regions": {
+ "default": "http://whatcms.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whatis.techtarget.com/favicon.ico",
+ "name": "WhatIs.com",
+ "triggers": [
+ "whatis"
+ ],
+ "regions": {
+ "default": "http://whatis.techtarget.com/wsearchResults/1,290214,sid9,00.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://whatismyipaddress.com/favicon.ico",
+ "name": "WhatIsMyIPAddress.com",
+ "triggers": [
+ "ip"
+ ],
+ "regions": {
+ "default": "https://whatismyipaddress.com/ip/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wheretowatch.com/favicon.ico",
+ "name": "Where To Watch",
+ "triggers": [
+ "wheretowatch"
+ ],
+ "regions": {
+ "default": "https://www.wheretowatch.com/search?term={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.getwhichit.com/favicon.png",
+ "name": "Whichit",
+ "triggers": [
+ "whichit"
+ ],
+ "regions": {
+ "default": "https://www.getwhichit.com/whichitapp.html#!/Search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://forums.whirlpool.net.au/skin/image/whirlpool-2015-favicon-32.png",
+ "name": "Whirlpool Forums",
+ "triggers": [
+ "whirlpool"
+ ],
+ "regions": {
+ "default": "https://forums.whirlpool.net.au/forum/?action=search&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.whisky.de/fileadmin/Resources/Public/Icons/favicon.ico",
+ "name": "whisky DE",
+ "triggers": [
+ "whiskyde"
+ ],
+ "regions": {
+ "default": "https://www.whisky.de/shop/index.php?&cl=search&searchparam={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.archives.nd.edu/favicon.ico",
+ "name": "Whitaker's Latin",
+ "triggers": [
+ "lat"
+ ],
+ "regions": {
+ "default": "http://www.archives.nd.edu/cgi-bin/wordz.pl?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.whitepages.com/common/images/favicon.ico",
+ "name": "whitepages",
+ "triggers": [
+ "phone"
+ ],
+ "regions": {
+ "default": "https://www.whitepages.com/phone/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.whitepages.com/common/images/favicon.ico",
+ "name": "Whitepages",
+ "triggers": [
+ "rphone"
+ ],
+ "regions": {
+ "default": "https://www.whitepages.com/phone/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.whitetailproperties.com/favicon.ico",
+ "name": "Whitetail Properties",
+ "triggers": [
+ "whitetailproperties"
+ ],
+ "regions": {
+ "default": "https://www.whitetailproperties.com/hunting-land/filtered-search?search_mode=all&keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whitewatersearch.com/favicon.ico",
+ "name": "Whitewater Search Engine",
+ "triggers": [
+ "whitewater",
+ "ww"
+ ],
+ "regions": {
+ "default": "http://whitewatersearch.com/results.html?cx=006899615286270000925:1lwcuzq3w-i&cof=FORID:9&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whocalled.us/favicon.ico",
+ "name": "Who Called Us",
+ "triggers": [
+ "wcu"
+ ],
+ "regions": {
+ "default": "http://whocalled.us/lookup/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.whoishostingthis.com/favicon.ico",
+ "name": "Who Is Hosting This?",
+ "triggers": [
+ "whohosts",
+ "hosting",
+ "wiht"
+ ],
+ "regions": {
+ "default": "http://www.whoishostingthis.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://whosampled.com/static/images/favicon.ico",
+ "name": "Who Sampled",
+ "triggers": [
+ "whosampled"
+ ],
+ "regions": {
+ "default": "http://whosampled.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.who.is/favicon.ico",
+ "name": "who.is",
+ "triggers": [
+ "who"
+ ],
+ "regions": {
+ "default": "https://www.who.is/whois/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://whocallsme.com/favicon.ico",
+ "name": "WhoCallsMe",
+ "triggers": [
+ "wcm"
+ ],
+ "regions": {
+ "default": "http://whocallsme.com/nb/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.whois.com/images/favicon.ico",
+ "name": "Whois.com",
+ "triggers": [
+ "whois.com"
+ ],
+ "regions": {
+ "default": "http://www.whois.com/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.whoisbg.com/favicon.ico",
+ "name": "whoisbg.com",
+ "triggers": [
+ "whoisbg"
+ ],
+ "regions": {
+ "default": "http://www.whoisbg.com/?domain={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wholefoodsmarket.com/favicon.ico",
+ "name": "Whole Foods Recipes",
+ "triggers": [
+ "wfm"
+ ],
+ "regions": {
+ "default": "https://www.wholefoodsmarket.com/site_search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.whosampled.com/static/images/favicon.ico",
+ "name": "whosampled",
+ "triggers": [
+ "sampled"
+ ],
+ "regions": {
+ "default": "http://www.whosampled.com/search/artists/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.whoscored.com/favicon.ico",
+ "name": "WhoScored",
+ "triggers": [
+ "whoscored"
+ ],
+ "regions": {
+ "default": "http://www.whoscored.com/Search/?t={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wictionary",
+ "triggers": [
+ "wictionary",
+ "wt",
+ "wikt",
+ "wiktionary"
+ ],
+ "regions": {
+ "default": "https://en.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wsgf.org/sites/all/themes/sky/favicon.ico",
+ "name": "Widescreen Gaming Forum",
+ "triggers": [
+ "wsgf"
+ ],
+ "regions": {
+ "default": "http://www.wsgf.org/mgl?title_op=contains&game_name={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wiggle.co.uk/favicon.ico",
+ "name": "wiggle",
+ "triggers": [
+ "wiggle"
+ ],
+ "regions": {
+ "default": "http://www.wiggle.co.uk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "WiiLord95",
+ "triggers": [
+ "wl95"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/user/WiiLord95/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://es.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wikcionario",
+ "triggers": [
+ "wiktes"
+ ],
+ "regions": {
+ "default": "https://es.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://es.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wikcionario",
+ "triggers": [
+ "wtes"
+ ],
+ "regions": {
+ "default": "https://es.wiktionary.org/w/index.php?search={{{term}}}&button=&title=Especial%3ABuscar"
+ }
+ },
+ {
+ "favicon": "https://pt.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wikcionário (PT)",
+ "triggers": [
+ "wiktpt"
+ ],
+ "regions": {
+ "default": "https://pt.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://br.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wikeriadur",
+ "triggers": [
+ "wiktbr"
+ ],
+ "regions": {
+ "default": "https://br.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki-aventurica.de/favicon.ico",
+ "name": "Wiki Aventurica",
+ "triggers": [
+ "dsa"
+ ],
+ "regions": {
+ "default": "http://wiki-aventurica.de/wiki/index.php?title=Spezial:Suche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikicanaan.org/wiki/lib/tpl/lisps/images/favicon.ico",
+ "name": "Wiki Canaan",
+ "triggers": [
+ "wcanaan"
+ ],
+ "regions": {
+ "default": "http://www.wikicanaan.org/wiki/bienvenue?do=search&id={{{term}}}&fulltext=Recherche"
+ }
+ },
+ {
+ "favicon": "https://wiki.jvflux.com/favicon.ico",
+ "name": "Wiki de JV Flux",
+ "triggers": [
+ "wjvf"
+ ],
+ "regions": {
+ "default": "https://wiki.jvflux.com/index.php?title=Spécial:Recherche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.piratenpartei.de/favicon.ico",
+ "name": "Wiki der Piratenpartei Deutschland",
+ "triggers": [
+ "piratenwiki"
+ ],
+ "regions": {
+ "default": "https://wiki.piratenpartei.de/Spezial:Suche?search={{{term}}}&fulltext=Suchen"
+ }
+ },
+ {
+ "favicon": "http://www.wiki-goettingen.de/favicon.ico",
+ "name": "Wiki Göttingen",
+ "triggers": [
+ "goettingen"
+ ],
+ "regions": {
+ "default": "http://www.wiki-goettingen.de/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.libsdl.org/favicon.ico",
+ "name": "Wiki LibSDL2",
+ "triggers": [
+ "sdl"
+ ],
+ "regions": {
+ "default": "https://wiki.libsdl.org/CategoryAPI?action=fullsearch&context=180&value={{{term}}}&titlesearch=Titles"
+ }
+ },
+ {
+ "favicon": "http://wikirhymer.com/apple-touch-icon.png",
+ "name": "Wiki Rhymer",
+ "triggers": [
+ "wrhymer",
+ "wikirhymer"
+ ],
+ "regions": {
+ "default": "http://wikirhymer.com/words/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikisummaries.org/favicon.ico",
+ "name": "Wiki Summaries",
+ "triggers": [
+ "wikisum"
+ ],
+ "regions": {
+ "default": "http://www.wikisummaries.org/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://wiki.archlinux.de/favicon.ico",
+ "name": "wiki.archlinux.de",
+ "triggers": [
+ "awde"
+ ],
+ "regions": {
+ "default": "https://wiki.archlinux.de/index.php?title=Spezial%3ASuche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.splunk.com/favicon.ico",
+ "name": "wiki.splunk.com",
+ "triggers": [
+ "wiki.splunk"
+ ],
+ "regions": {
+ "default": "http://wiki.splunk.com/Special:SplunkSearch/wiki?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wiki.vg/favicon.ico",
+ "name": "wiki.vg",
+ "triggers": [
+ "wikivg"
+ ],
+ "regions": {
+ "default": "http://wiki.vg/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wiki2.org/s/favicon-32x32.png",
+ "name": "WIKI2",
+ "triggers": [
+ "w2"
+ ],
+ "regions": {
+ "default": "https://en.wiki2.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fr.wiki2.org/s/favicon-32x32.png",
+ "name": "WIKI2 Fr",
+ "triggers": [
+ "w2fr"
+ ],
+ "regions": {
+ "default": "https://fr.wiki2.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.wikia.nocookie.net/qube-assets/f2/3228/favicons/favicon.ico?v=f79c2ddbe3ef547dcc8c4889e266e5c4bf7acdba",
+ "name": "Wikia",
+ "triggers": [
+ "wikia"
+ ],
+ "regions": {
+ "default": "http://www.wikia.com/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/answers/images/6/64/Favicon.ico/revision/latest?cb=20130628201032",
+ "name": "WikiAnswers",
+ "triggers": [
+ "wikianswers"
+ ],
+ "regions": {
+ "default": "http://answers.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search&ns0=1&ns112=1&ns500=1&ns502=1"
+ }
+ },
+ {
+ "favicon": "https://www.wikiarms.com/favicon.ico?v153",
+ "name": "WikiArms",
+ "triggers": [
+ "wikiarms"
+ ],
+ "regions": {
+ "default": "http://www.wikiarms.com/guns?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wikiart.org/Content/images/favicon.ico",
+ "name": "WikiArt",
+ "triggers": [
+ "wikiart"
+ ],
+ "regions": {
+ "default": "http://wikiart.org/en/search/{{{term}}}/1"
+ }
+ },
+ {
+ "favicon": "http://www.wiki-aventurica.de/favicon.ico",
+ "name": "WikiAventurica (de)",
+ "triggers": [
+ "wia"
+ ],
+ "regions": {
+ "default": "http://www.wiki-aventurica.de/index.php?title=Spezial:Suche&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikiaves.com.br//favicon.ico",
+ "name": "WikiAves",
+ "triggers": [
+ "wikiaves"
+ ],
+ "regions": {
+ "default": "http://www.wikiaves.com.br//doku.php?&do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Wikibooks",
+ "triggers": [
+ "wb"
+ ],
+ "regions": {
+ "default": "http://en.wikibooks.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Wikibooks",
+ "triggers": [
+ "wikibooks"
+ ],
+ "regions": {
+ "default": "http://en.wikibooks.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Wikibooks De",
+ "triggers": [
+ "wbde"
+ ],
+ "regions": {
+ "default": "https://de.wikibooks.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Wikibooks JP",
+ "triggers": [
+ "wbj"
+ ],
+ "regions": {
+ "default": "https://ja.wikibooks.org/w/index.php?search={{{term}}}&title=特別%3A検索&go=表示"
+ }
+ },
+ {
+ "favicon": "https://ml.wikibooks.org/static/favicon/wikibooks.ico",
+ "name": "Wikibooks Malayalam",
+ "triggers": [
+ "wbml"
+ ],
+ "regions": {
+ "default": "https://ml.wikibooks.org/wiki/special:search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wikibound.info/w/favicon.ico",
+ "name": "WikiBound",
+ "triggers": [
+ "wikibound"
+ ],
+ "regions": {
+ "default": "https://wikibound.info/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://wikicfp.com/cfp/images/wikicfp.ico",
+ "name": "WikiCFP",
+ "triggers": [
+ "cfp"
+ ],
+ "regions": {
+ "default": "http://wikicfp.com/cfp/servlet/tool.search?q={{{term}}}&year=f"
+ }
+ },
+ {
+ "favicon": "https://www.wikidata.org/static/favicon/wikidata.ico",
+ "name": "Wikidata",
+ "triggers": [
+ "wdt"
+ ],
+ "regions": {
+ "default": "https://www.wikidata.org/w/index.php?title=Special%3ASearch&search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "https://www.wikidata.org/static/favicon/wikidata.ico",
+ "name": "Wikidata",
+ "triggers": [
+ "wikidata"
+ ],
+ "regions": {
+ "default": "https://www.wikidata.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://wikidevi.com/favicon.ico",
+ "name": "WikiDevi",
+ "triggers": [
+ "wikidevi"
+ ],
+ "regions": {
+ "default": "https://wikidevi.com/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/es.pokemon/images/6/64/Favicon.ico/revision/latest?cb=20180219144911",
+ "name": "WikiDex",
+ "triggers": [
+ "wikidex"
+ ],
+ "regions": {
+ "default": "http://es.pokemon.wikia.com/wiki/Especial:Buscar?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/es.pokemon/images/6/64/Favicon.ico/revision/latest?cb=20180219144911",
+ "name": "Wikidex",
+ "triggers": [
+ "wdx"
+ ],
+ "regions": {
+ "default": "http://es.pokemon.wikia.com/wiki/WikiDex={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/es.pokemon/images/6/64/Favicon.ico/revision/latest?cb=20180219144911",
+ "name": "WikiDex",
+ "triggers": [
+ "wdex"
+ ],
+ "regions": {
+ "default": "http://es.pokemon.wikia.com/wiki/Especial:Buscar?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikifeet.com/favicon.ico",
+ "name": "wikiFeet",
+ "triggers": [
+ "wfeet"
+ ],
+ "regions": {
+ "default": "http://www.wikifeet.com/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikihow.com/favicon.ico",
+ "name": "wikiHow",
+ "triggers": [
+ "wh",
+ "wikihow"
+ ],
+ "regions": {
+ "default": "https://www.wikihow.com/wikiHowTo?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikihow.com/favicon.ico",
+ "name": "wikiHow",
+ "triggers": [
+ "whow"
+ ],
+ "regions": {
+ "default": "https://www.wikihow.com/Special:LSearch?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wikihow.com/favicon.ico",
+ "name": "wikiHow",
+ "triggers": [
+ "whw"
+ ],
+ "regions": {
+ "default": "https://wikihow.com/wikiHowTo?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://es.wikihow.com/favicon.ico",
+ "name": "wikiHow Español",
+ "triggers": [
+ "whowes"
+ ],
+ "regions": {
+ "default": "https://es.wikihow.com/wikiHowTo?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fr.wikihow.com/favicon.ico",
+ "name": "wikiHow France",
+ "triggers": [
+ "whfr"
+ ],
+ "regions": {
+ "default": "https://fr.wikihow.com/wikiHowTo?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wikiindex.org/favicon.ico",
+ "name": "WikiIndex",
+ "triggers": [
+ "wikiindex"
+ ],
+ "regions": {
+ "default": "http://wikiindex.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.wikileaks.org/favicon.ico",
+ "name": "WikiLeaks",
+ "triggers": [
+ "wikileaks",
+ "wl"
+ ],
+ "regions": {
+ "default": "https://search.wikileaks.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikilengua.org/skins/favicon.ico",
+ "name": "Wikilengua del español",
+ "triggers": [
+ "wikilengua"
+ ],
+ "regions": {
+ "default": "http://www.wikilengua.org/index.php/Especial:Buscar?search={{{term}}}&fulltext=Buscar"
+ }
+ },
+ {
+ "favicon": "https://sc.wklcdn.com/favicon.ico?v=3",
+ "name": "Wikiloc",
+ "triggers": [
+ "wkl"
+ ],
+ "regions": {
+ "default": "https://www.wikiloc.com/wikiloc/find.do?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sc.wklcdn.com/favicon.ico?v=3",
+ "name": "Wikiloc",
+ "triggers": [
+ "wikiloc"
+ ],
+ "regions": {
+ "default": "http://www.wikiloc.com/wikiloc/find.do?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sc.wklcdn.com/favicon.ico?v=3",
+ "name": "Wikiloc French",
+ "triggers": [
+ "wlfr"
+ ],
+ "regions": {
+ "default": "http://fr.wikiloc.com/wikiloc/find.do?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikimapia.org/favicon.ico?660",
+ "name": "Wikimapia",
+ "triggers": [
+ "wikimapia"
+ ],
+ "regions": {
+ "default": "http://www.wikimapia.org/#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://commons.wikimedia.org/static/favicon/commons.ico",
+ "name": "Wikimedia Commons",
+ "triggers": [
+ "commons",
+ "wikic"
+ ],
+ "regions": {
+ "default": "https://commons.wikimedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://commons.wikimedia.org/static/favicon/commons.ico",
+ "name": "Wikimedia Commons",
+ "triggers": [
+ "wmc"
+ ],
+ "regions": {
+ "default": "https://commons.wikimedia.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://commons.wikimedia.org/static/favicon/commons.ico",
+ "name": "Wikimedia Commons",
+ "triggers": [
+ "wim"
+ ],
+ "regions": {
+ "default": "http://commons.wikimedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://commons.wikimedia.org/static/favicon/commons.ico",
+ "name": "Wikimedia Commons Category",
+ "triggers": [
+ "wmcc"
+ ],
+ "regions": {
+ "default": "https://commons.wikimedia.org/w/index.php?search={{{term}}}&ns14=1"
+ }
+ },
+ {
+ "favicon": "http://incubator.wikimedia.org/static/favicon/incubator.ico",
+ "name": "Wikimedia Incubator",
+ "triggers": [
+ "winc"
+ ],
+ "regions": {
+ "default": "http://incubator.wikimedia.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://meta.wikimedia.org/static/favicon/community.ico",
+ "name": "Wikimedia Meta-Wiki",
+ "triggers": [
+ "wmeta"
+ ],
+ "regions": {
+ "default": "http://meta.wikimedia.org/w/index.php?title=Special%3ASearch&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://phab.wmfusercontent.org/file/data/ylbeoktf43zmd3loe435/PHID-FILE-ahr5qqrmgg3kjvzhpv4k/favicon",
+ "name": "Wikimedia Phabricator installation",
+ "triggers": [
+ "wmphab"
+ ],
+ "regions": {
+ "default": "https://phabricator.wikimedia.org/search/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wikimoon.org/favicon.ico",
+ "name": "WikiMoon",
+ "triggers": [
+ "wikimoon"
+ ],
+ "regions": {
+ "default": "http://wikimoon.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikinews.org/static/favicon/wikinews.ico",
+ "name": "Wikinews",
+ "triggers": [
+ "wn"
+ ],
+ "regions": {
+ "default": "https://en.wikinews.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikinews.org/static/favicon/wikinews.ico",
+ "name": "Wikinews",
+ "triggers": [
+ "wikinews"
+ ],
+ "regions": {
+ "default": "http://en.wikinews.org/w/index.php?title=Special%3ASearch&redirs=0&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikipaintings.org/Content/images/favicon.ico",
+ "name": "wikipaintings",
+ "triggers": [
+ "wikipaintings",
+ "wikipainting"
+ ],
+ "regions": {
+ "default": "http://www.wikipaintings.org/en/search/{{{term}}}/1"
+ }
+ },
+ {
+ "favicon": "http://de.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia",
+ "triggers": [
+ "wikide"
+ ],
+ "regions": {
+ "default": "http://de.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://ro.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "wikipedia",
+ "triggers": [
+ "wro"
+ ],
+ "regions": {
+ "default": "https://ro.wikipedia.org/w/index.php?search={{{term}}}&title=Special%3AC%C4%83utare"
+ }
+ },
+ {
+ "favicon": "https://eu.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia",
+ "triggers": [
+ "weu"
+ ],
+ "regions": {
+ "default": "https://eu.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia",
+ "triggers": [
+ "module"
+ ],
+ "regions": {
+ "default": "https://en.wikipedia.org/wiki/Module:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia",
+ "triggers": [
+ "wi",
+ "w-es",
+ "wikispecies"
+ ],
+ "regions": {
+ "default": "https://en.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia",
+ "triggers": [
+ "we"
+ ],
+ "regions": {
+ "default": "http://en.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "wikipedia",
+ "triggers": [
+ "wk"
+ ],
+ "regions": {
+ "default": "https://en.wikipedia.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://bg.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (BG)",
+ "triggers": [
+ "wbg"
+ ],
+ "regions": {
+ "default": "https://bg.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (BR)",
+ "triggers": [
+ "w.br",
+ "wikibr",
+ "wikipt"
+ ],
+ "regions": {
+ "default": "https://pt.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ca.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (CA)",
+ "triggers": [
+ "wca"
+ ],
+ "regions": {
+ "default": "https://ca.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cs.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (cs)",
+ "triggers": [
+ "cswiki"
+ ],
+ "regions": {
+ "default": "http://cs.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cs.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (Cs)",
+ "triggers": [
+ "wcs"
+ ],
+ "regions": {
+ "default": "https://cs.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cy.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (CY)",
+ "triggers": [
+ "wcy"
+ ],
+ "regions": {
+ "default": "https://cy.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://da.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (DA)",
+ "triggers": [
+ "wda"
+ ],
+ "regions": {
+ "default": "http://da.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://de.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (DE)",
+ "triggers": [
+ "wde",
+ "w.de",
+ "wiki.de",
+ "wge"
+ ],
+ "regions": {
+ "default": "https://de.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://da.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (DK)",
+ "triggers": [
+ "wdk"
+ ],
+ "regions": {
+ "default": "https://da.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (English)",
+ "triggers": [
+ "wikien"
+ ],
+ "regions": {
+ "default": "https://en.wikipedia.org/w/index.php?search={{{term}}}&title=Special:Search"
+ }
+ },
+ {
+ "favicon": "http://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (English)",
+ "triggers": [
+ "w.en"
+ ],
+ "regions": {
+ "default": "http://en.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eo.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (EO)",
+ "triggers": [
+ "weo"
+ ],
+ "regions": {
+ "default": "http://eo.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://es.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (ES)",
+ "triggers": [
+ "wes"
+ ],
+ "regions": {
+ "default": "http://es.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://fr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (FR)",
+ "triggers": [
+ "wfr"
+ ],
+ "regions": {
+ "default": "http://fr.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://fr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (FR)",
+ "triggers": [
+ "wpfr",
+ "wikipedia-fr"
+ ],
+ "regions": {
+ "default": "https://fr.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://el.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (GR)",
+ "triggers": [
+ "wgr"
+ ],
+ "regions": {
+ "default": "https://el.wikipedia.org/wiki/Special:Search?search={{{term}}} &go=Go&go=Go&go=Go"
+ }
+ },
+ {
+ "favicon": "https://he.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (HE)",
+ "triggers": [
+ "whe"
+ ],
+ "regions": {
+ "default": "https://he.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://hi.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (HI)",
+ "triggers": [
+ "whi"
+ ],
+ "regions": {
+ "default": "http://hi.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://id.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (ID)",
+ "triggers": [
+ "wid"
+ ],
+ "regions": {
+ "default": "https://id.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://it.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (IT)",
+ "triggers": [
+ "wit"
+ ],
+ "regions": {
+ "default": "http://it.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://ja.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (JA)",
+ "triggers": [
+ "wja"
+ ],
+ "regions": {
+ "default": "http://ja.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://ko.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (KO)",
+ "triggers": [
+ "wko"
+ ],
+ "regions": {
+ "default": "https://ko.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://lv.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (LV)",
+ "triggers": [
+ "wlv"
+ ],
+ "regions": {
+ "default": "https://lv.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ml.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (Malayalam)",
+ "triggers": [
+ "wml"
+ ],
+ "regions": {
+ "default": "https://ml.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (PL)",
+ "triggers": [
+ "wpl"
+ ],
+ "regions": {
+ "default": "http://pl.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://pt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (PT)",
+ "triggers": [
+ "wpt"
+ ],
+ "regions": {
+ "default": "http://pt.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://ru.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (RU)",
+ "triggers": [
+ "wru"
+ ],
+ "regions": {
+ "default": "https://ru.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sco.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (Scots)",
+ "triggers": [
+ "wsco"
+ ],
+ "regions": {
+ "default": "http://sco.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://simple.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (Simple English)",
+ "triggers": [
+ "wsimple"
+ ],
+ "regions": {
+ "default": "https://simple.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (SL)",
+ "triggers": [
+ "wsl"
+ ],
+ "regions": {
+ "default": "http://sl.wikipedia.org/w/index.php?title=Special%3ASearch&profile=default&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sv.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (SV)",
+ "triggers": [
+ "wsv"
+ ],
+ "regions": {
+ "default": "http://sv.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://uk.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (UK)",
+ "triggers": [
+ "wuk"
+ ],
+ "regions": {
+ "default": "http://uk.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://vo.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (VO)",
+ "triggers": [
+ "wvo"
+ ],
+ "regions": {
+ "default": "http://vo.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zh.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia (ZH)",
+ "triggers": [
+ "wzh"
+ ],
+ "regions": {
+ "default": "http://zh.wikipedia.org/w/wiki.phtml?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://id.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Bahasa Indonesia",
+ "triggers": [
+ "wikiid"
+ ],
+ "regions": {
+ "default": "https://id.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://br.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Brezhoneg",
+ "triggers": [
+ "wbr"
+ ],
+ "regions": {
+ "default": "https://br.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ca.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "wikipedia catalana",
+ "triggers": [
+ "wcat"
+ ],
+ "regions": {
+ "default": "https://ca.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://de.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Deutschland",
+ "triggers": [
+ "wikipediade"
+ ],
+ "regions": {
+ "default": "http://de.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eu.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Euskaraz (in Basque)",
+ "triggers": [
+ "weus"
+ ],
+ "regions": {
+ "default": "https://eu.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia French",
+ "triggers": [
+ "wikifr"
+ ],
+ "regions": {
+ "default": "https://fr.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hu.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Hungary",
+ "triggers": [
+ "whu"
+ ],
+ "regions": {
+ "default": "https://hu.wikipedia.org/w/index.php?search={{{term}}}&button=&title=Speci%C3%A1lis%3AKeres%C3%A9s"
+ }
+ },
+ {
+ "favicon": "https://it.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia in Italiano",
+ "triggers": [
+ "wikipediait"
+ ],
+ "regions": {
+ "default": "https://it.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia in Japanese",
+ "triggers": [
+ "wj"
+ ],
+ "regions": {
+ "default": "https://ja.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://is.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia IS",
+ "triggers": [
+ "wis"
+ ],
+ "regions": {
+ "default": "https://is.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.m.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Mobile",
+ "triggers": [
+ "wkm"
+ ],
+ "regions": {
+ "default": "https://en.m.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.m.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia mobile",
+ "triggers": [
+ "wm"
+ ],
+ "regions": {
+ "default": "http://en.m.wikipedia.org/wiki?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nn.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Nynorsk",
+ "triggers": [
+ "wnn"
+ ],
+ "regions": {
+ "default": "https://nn.wikipedia.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://pl.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Polska",
+ "triggers": [
+ "wiki.pl"
+ ],
+ "regions": {
+ "default": "https://pl.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://simple.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Simple",
+ "triggers": [
+ "wikisimple"
+ ],
+ "regions": {
+ "default": "https://simple.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://tt.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Tatar",
+ "triggers": [
+ "wtt"
+ ],
+ "regions": {
+ "default": "https://tt.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Templates",
+ "triggers": [
+ "template"
+ ],
+ "regions": {
+ "default": "https://en.wikipedia.org/wiki/Template:{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vi.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Vietnamese",
+ "triggers": [
+ "vnwiki"
+ ],
+ "regions": {
+ "default": "https://vi.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://vi.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia Vietnamese",
+ "triggers": [
+ "wiki-vn"
+ ],
+ "regions": {
+ "default": "https://vi.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://se.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia – Friddje diehtosátnegirji",
+ "triggers": [
+ "wse"
+ ],
+ "regions": {
+ "default": "http://se.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://fi.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia-FI",
+ "triggers": [
+ "wi-fi"
+ ],
+ "regions": {
+ "default": "http://fi.wikipedia.org/w/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://sco.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedia-sco",
+ "triggers": [
+ "wikisco"
+ ],
+ "regions": {
+ "default": "https://sco.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "wikipedia.org Band Discography",
+ "triggers": [
+ "wdg"
+ ],
+ "regions": {
+ "default": "http://en.wikipedia.org/w/index.php?title=Special:Search&search={{{term}}}+discography&go=Go"
+ }
+ },
+ {
+ "favicon": "http://hr.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipedija",
+ "triggers": [
+ "whr"
+ ],
+ "regions": {
+ "default": "http://hr.wikipedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i2.wp.com/wikipediocracy.com/wp-content/uploads/2017/11/logo.png?fit=68,68",
+ "name": "Wikipediocracy (blog)",
+ "triggers": [
+ "wikipediocracy"
+ ],
+ "regions": {
+ "default": "http://wikipediocracy.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sk.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Wikipédia Slovenčina",
+ "triggers": [
+ "wsk"
+ ],
+ "regions": {
+ "default": "https://sk.wikipedia.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "WikiQuote",
+ "triggers": [
+ "wq"
+ ],
+ "regions": {
+ "default": "https://en.wikiquote.org/w/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "https://en.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "Wikiquote",
+ "triggers": [
+ "wikiquote"
+ ],
+ "regions": {
+ "default": "https://en.wikiquote.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "WikiQuote",
+ "triggers": [
+ "quotes"
+ ],
+ "regions": {
+ "default": "http://en.wikiquote.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://es.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "Wikiquote Español",
+ "triggers": [
+ "wqes"
+ ],
+ "regions": {
+ "default": "https://es.wikiquote.org/w/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "Wikiquote German",
+ "triggers": [
+ "wqde"
+ ],
+ "regions": {
+ "default": "https://de.wikiquote.org/w/index.php?search={{{term}}}&title=Spezial%3ASuche"
+ }
+ },
+ {
+ "favicon": "https://it.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "WikiQuote Italian",
+ "triggers": [
+ "wqit"
+ ],
+ "regions": {
+ "default": "https://it.wikiquote.org/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://pl.wikiquote.org/static/favicon/wikiquote.ico",
+ "name": "Wikiquote Polish",
+ "triggers": [
+ "wqpl"
+ ],
+ "regions": {
+ "default": "https://pl.wikiquote.org/w/index.php?search={{{term}}}&title=Specjalna:Szukaj&go=Przejdź"
+ }
+ },
+ {
+ "favicon": "https://wikirby.com/w/favicon.ico",
+ "name": "Wikirby",
+ "triggers": [
+ "wikirby"
+ ],
+ "regions": {
+ "default": "https://wikirby.com/w/index.php?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://simpsonswiki.com/favicon.ico",
+ "name": "Wikisimpsons",
+ "triggers": [
+ "siw"
+ ],
+ "regions": {
+ "default": "http://simpsonswiki.com/w/index.php?title=Special%3ASearch&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://en.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Wikisource",
+ "triggers": [
+ "wikisource"
+ ],
+ "regions": {
+ "default": "https://en.wikisource.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://en.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Wikisource",
+ "triggers": [
+ "ws"
+ ],
+ "regions": {
+ "default": "https://en.wikisource.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://fr.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Wikisource (FR)",
+ "triggers": [
+ "wsfr"
+ ],
+ "regions": {
+ "default": "https://fr.wikisource.org/w/index.php?search={{{term}}}&title=Sp%C3%A9cial%3ARecherche&go=Lire"
+ }
+ },
+ {
+ "favicon": "https://zh.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Wikisource (ZH)",
+ "triggers": [
+ "wszh"
+ ],
+ "regions": {
+ "default": "https://zh.wikisource.org/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wikisource.org/static/favicon/wikisource.ico",
+ "name": "Wikisource Deutsch",
+ "triggers": [
+ "wsde"
+ ],
+ "regions": {
+ "default": "https://de.wikisource.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wiki.com/favicon.ico",
+ "name": "WikiSpaces",
+ "triggers": [
+ "wikisearch"
+ ],
+ "regions": {
+ "default": "http://www.wiki.com/results1.htm?cx=009420061493499222400%3Ae8sof1xaq-u&q={{{term}}}&btnG=Wiki+Search&cof=GIMP%3A009900%3BT%3A000000%3BALC%3AFF9900%3BGFNT%3AB0B0B0%3BLC%3A003F7D%3BBGC%3AFFFFFF%3BVLC%3A666666%3BGALT%3A36A200%3BFORID%3A9%3B&as_q=on"
+ }
+ },
+ {
+ "favicon": "https://species.wikimedia.org/static/favicon/wikispecies.ico",
+ "name": "Wikispecies",
+ "triggers": [
+ "wspec",
+ "wks",
+ "wksp"
+ ],
+ "regions": {
+ "default": "https://species.wikimedia.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wikitionary",
+ "triggers": [
+ "wtionary"
+ ],
+ "regions": {
+ "default": "https://en.wiktionary.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "http://www.toxicology.wikispaces.net/_/55v9k02z/i/logo-16.png",
+ "name": "WikiTox",
+ "triggers": [
+ "wikitox"
+ ],
+ "regions": {
+ "default": "http://curriculum.toxicology.wikispaces.net/search/view/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wikitravel.org/favicon.ico",
+ "name": "Wikitravel",
+ "triggers": [
+ "wikit",
+ "wikitravel"
+ ],
+ "regions": {
+ "default": "http://wikitravel.org/en/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/metroid/images/6/64/Favicon.ico/revision/latest?cb=20080613043441",
+ "name": "Wikitroid",
+ "triggers": [
+ "wikitroid"
+ ],
+ "regions": {
+ "default": "http://metroid.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikiversity.org/static/favicon/wikiversity.ico",
+ "name": "Wikiversity",
+ "triggers": [
+ "wikiversity"
+ ],
+ "regions": {
+ "default": "https://en.wikiversity.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://en.wikiversity.org/static/favicon/wikiversity.ico",
+ "name": "Wikiversity",
+ "triggers": [
+ "wvers"
+ ],
+ "regions": {
+ "default": "http://en.wikiversity.org/w/index.php?search={{{term}}}&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://en.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage",
+ "triggers": [
+ "wikivoyage"
+ ],
+ "regions": {
+ "default": "http://en.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage",
+ "triggers": [
+ "wv"
+ ],
+ "regions": {
+ "default": "https://en.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Deutsch)",
+ "triggers": [
+ "wikivoyagede"
+ ],
+ "regions": {
+ "default": "https://de.wikivoyage.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://en.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (English)",
+ "triggers": [
+ "wven"
+ ],
+ "regions": {
+ "default": "https://en.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://en.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (English)",
+ "triggers": [
+ "wikivoyageen"
+ ],
+ "regions": {
+ "default": "https://en.wikivoyage.org/w/index.php?search={{{term}}}&title=Special%3ASearch&go=Go"
+ }
+ },
+ {
+ "favicon": "https://es.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Español)",
+ "triggers": [
+ "wikivoyagees"
+ ],
+ "regions": {
+ "default": "https://es.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://fr.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (français)",
+ "triggers": [
+ "wikivoyagefr"
+ ],
+ "regions": {
+ "default": "https://fr.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://it.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Italiano)",
+ "triggers": [
+ "wikivoyageit"
+ ],
+ "regions": {
+ "default": "https://it.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://nl.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Netherlands)",
+ "triggers": [
+ "wikivoyagenl"
+ ],
+ "regions": {
+ "default": "https://nl.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://pl.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Polski)",
+ "triggers": [
+ "wikivoyagepl"
+ ],
+ "regions": {
+ "default": "https://pl.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://pt.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (português)",
+ "triggers": [
+ "wikivoyagept"
+ ],
+ "regions": {
+ "default": "https://pt.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://ro.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Română)",
+ "triggers": [
+ "wikivoyagero"
+ ],
+ "regions": {
+ "default": "https://ro.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://sv.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Svenska)",
+ "triggers": [
+ "wikivoyagesv"
+ ],
+ "regions": {
+ "default": "https://sv.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://vi.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Tiếng Việt)",
+ "triggers": [
+ "wikivoyagevi"
+ ],
+ "regions": {
+ "default": "https://vi.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://el.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Ελληνικά)",
+ "triggers": [
+ "wikivoyageel"
+ ],
+ "regions": {
+ "default": "https://el.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://ru.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Русский)",
+ "triggers": [
+ "wikivoyageru"
+ ],
+ "regions": {
+ "default": "https://ru.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://uk.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (Українська)",
+ "triggers": [
+ "wikivoyageuk"
+ ],
+ "regions": {
+ "default": "https://uk.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://he.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (עברית)",
+ "triggers": [
+ "wikivoyagehe"
+ ],
+ "regions": {
+ "default": "https://he.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://zh.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage (中文)",
+ "triggers": [
+ "wikivoyagezh"
+ ],
+ "regions": {
+ "default": "https://zh.wikivoyage.org/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://de.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Deutsch",
+ "triggers": [
+ "wvde"
+ ],
+ "regions": {
+ "default": "https://de.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://es.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage español",
+ "triggers": [
+ "wves"
+ ],
+ "regions": {
+ "default": "https://es.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fr.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Français",
+ "triggers": [
+ "wvfr"
+ ],
+ "regions": {
+ "default": "https://fr.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://it.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Italiano",
+ "triggers": [
+ "wvit"
+ ],
+ "regions": {
+ "default": "https://it.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://nl.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Nederlands",
+ "triggers": [
+ "wvnl"
+ ],
+ "regions": {
+ "default": "https://nl.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pt.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Português",
+ "triggers": [
+ "wvpt"
+ ],
+ "regions": {
+ "default": "https://pt.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ru.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Russian",
+ "triggers": [
+ "wvru"
+ ],
+ "regions": {
+ "default": "https://ru.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://sv.wikivoyage.org/static/favicon/wikivoyage.ico",
+ "name": "Wikivoyage Svenska",
+ "triggers": [
+ "wvsv"
+ ],
+ "regions": {
+ "default": "https://sv.wikivoyage.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wikivs.com/favicon.ico",
+ "name": "WikiVS",
+ "triggers": [
+ "wikivs"
+ ],
+ "regions": {
+ "default": "http://www.wikivs.com/index.php?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.wikiwand.com/favicon.ico",
+ "name": "WikiWand",
+ "triggers": [
+ "wikiwand",
+ "wwen"
+ ],
+ "regions": {
+ "default": "https://www.wikiwand.com/en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikiwand.com/favicon.ico",
+ "name": "Wikiwand",
+ "triggers": [
+ "wwfr"
+ ],
+ "regions": {
+ "default": "https://www.wikiwand.com/fr/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikiwand.com/favicon.ico",
+ "name": "WikiWand en Español",
+ "triggers": [
+ "wwes"
+ ],
+ "regions": {
+ "default": "https://www.wikiwand.com/es/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikiwand.com/favicon.ico",
+ "name": "WikiWand in Chinese",
+ "triggers": [
+ "wwzh"
+ ],
+ "regions": {
+ "default": "https://www.wikiwand.com/zh/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wikiwand.com/favicon.ico",
+ "name": "WikiWand in Dutch",
+ "triggers": [
+ "wwnl"
+ ],
+ "regions": {
+ "default": "https://www.wikiwand.com/nl/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://publicwww.com/images/favicon7/favicon.ico",
+ "name": "WikiWikiWeb",
+ "triggers": [
+ "www"
+ ],
+ "regions": {
+ "default": "https://publicwww.com/websites/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://nl.wiktionary.org/static/favicon/piece.ico",
+ "name": "WikiWoordenboek",
+ "triggers": [
+ "wtnl"
+ ],
+ "regions": {
+ "default": "https://nl.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://it.wiktionary.org/static/favicon/piece.ico",
+ "name": "wikizionario",
+ "triggers": [
+ "wikizionario"
+ ],
+ "regions": {
+ "default": "https://it.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://el.m.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wikrionary(GR)",
+ "triggers": [
+ "wiktgr"
+ ],
+ "regions": {
+ "default": "https://el.m.wiktionary.org/wiki{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wiktionary",
+ "triggers": [
+ "wtla"
+ ],
+ "regions": {
+ "default": "https://en.wiktionary.org/wiki/{{{term}}}#Latin"
+ }
+ },
+ {
+ "favicon": "http://en.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wiktionary",
+ "triggers": [
+ "wten"
+ ],
+ "regions": {
+ "default": "http://en.wiktionary.org/w/index.php?search={{{term}}}&button=&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://en.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wiktionary",
+ "triggers": [
+ "wikten"
+ ],
+ "regions": {
+ "default": "http://en.wiktionary.org/wiki/Special:Search?search={{{term}}}&go=Define"
+ }
+ },
+ {
+ "favicon": "http://it.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary",
+ "triggers": [
+ "wtit"
+ ],
+ "regions": {
+ "default": "http://it.wiktionary.org/w/index.php?search={{{term}}}&title=Speciale%3ARicerca"
+ }
+ },
+ {
+ "favicon": "https://cs.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wiktionary (Czech)",
+ "triggers": [
+ "wtcz"
+ ],
+ "regions": {
+ "default": "https://cs.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Deutsch)",
+ "triggers": [
+ "wtde"
+ ],
+ "regions": {
+ "default": "https://de.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://fi.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Finnish)",
+ "triggers": [
+ "wtfi"
+ ],
+ "regions": {
+ "default": "https://fi.wiktionary.org/w/index.php?search={{{term}}}&title=Toiminnot%3AHaku"
+ }
+ },
+ {
+ "favicon": "https://fr.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Français)",
+ "triggers": [
+ "wifr",
+ "fr.wiktionary",
+ "wiktfr"
+ ],
+ "regions": {
+ "default": "https://fr.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hi.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Hindi)",
+ "triggers": [
+ "wth"
+ ],
+ "regions": {
+ "default": "https://hi.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://hu.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (hu)",
+ "triggers": [
+ "wikthu"
+ ],
+ "regions": {
+ "default": "https://hu.wiktionary.org/w/index.php?search={{{term}}}&title=Speci%C3%A1lis%3AKeres%C3%A9s"
+ }
+ },
+ {
+ "favicon": "https://it.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Italian)",
+ "triggers": [
+ "wkit"
+ ],
+ "regions": {
+ "default": "https://it.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ja.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Japan)",
+ "triggers": [
+ "wiktja",
+ "wtja"
+ ],
+ "regions": {
+ "default": "https://ja.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://no.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (Norwegian)",
+ "triggers": [
+ "wtno"
+ ],
+ "regions": {
+ "default": "https://no.wiktionary.org/wiki/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pl.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (PL)",
+ "triggers": [
+ "wtpl"
+ ],
+ "regions": {
+ "default": "https://pl.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pt.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (portuguese)",
+ "triggers": [
+ "wtpt"
+ ],
+ "regions": {
+ "default": "http://pt.wiktionary.org/w/index.php?title=Especial%3APesquisar&profile=default&search={{{term}}}&fulltext=Search&searchengineselect=mediawiki"
+ }
+ },
+ {
+ "favicon": "https://ru.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (RU)",
+ "triggers": [
+ "wiktru",
+ "wikru"
+ ],
+ "regions": {
+ "default": "https://ru.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sv.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary (SV)",
+ "triggers": [
+ "wtsv"
+ ],
+ "regions": {
+ "default": "http://sv.wiktionary.org/w/index.php?search={{{term}}}&button=&title=Special%3AS%C3%B6k"
+ }
+ },
+ {
+ "favicon": "https://fr.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary french",
+ "triggers": [
+ "wtfr"
+ ],
+ "regions": {
+ "default": "https://fr.wiktionary.org/wiki/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://de.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary German",
+ "triggers": [
+ "wktde"
+ ],
+ "regions": {
+ "default": "http://de.wiktionary.org/w/index.php?search= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://en.m.wiktionary.org/static/favicon/wiktionary/en.ico",
+ "name": "Wiktionary Mobile",
+ "triggers": [
+ "wtm"
+ ],
+ "regions": {
+ "default": "https://en.m.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vi.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary tiếng Việt",
+ "triggers": [
+ "wtvi"
+ ],
+ "regions": {
+ "default": "https://vi.wiktionary.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://el.m.wiktionary.org/static/favicon/piece.ico",
+ "name": "Wiktionary(GR)",
+ "triggers": [
+ "witgr",
+ "Λεξικό"
+ ],
+ "regions": {
+ "default": "https://el.m.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wildflower.org/wp-content/uploads/2016/11/icon-regular.png",
+ "name": "Wildflower Center",
+ "triggers": [
+ "flower"
+ ],
+ "regions": {
+ "default": "http://www.wildflower.org/plants/search.php?search_field={{{term}}}&newsearch=true"
+ }
+ },
+ {
+ "favicon": "http://www.wilko.com/_ui/addons/wlkstorefrontaddon/responsive/common/images/favicon.ico",
+ "name": "wilko",
+ "triggers": [
+ "wilko"
+ ],
+ "regions": {
+ "default": "http://www.wilko.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cache.willhaben.at/img/icon/favicon.ico",
+ "name": "Willhaben",
+ "triggers": [
+ "willhaben"
+ ],
+ "regions": {
+ "default": "http://www.willhaben.at/iad/kaufen-und-verkaufen/marktplatz?keyword={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://www.williams-sonoma.com/wsimgs/rk/images/i/201827/0005/images/favicon.ico",
+ "name": "Williams-Sonoma",
+ "triggers": [
+ "williamssonoma"
+ ],
+ "regions": {
+ "default": "http://www.williams-sonoma.com/search/results.html?words={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wimp.com/favicon.ico",
+ "name": "wimp.com",
+ "triggers": [
+ "wimp"
+ ],
+ "regions": {
+ "default": "http://www.wimp.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://win.geld-met.nl/favicon.ico",
+ "name": "Win Geld Met",
+ "triggers": [
+ "staatsloterijtrekkingsuitslag"
+ ],
+ "regions": {
+ "default": "http://win.geld-met.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.winbeta.org/favicon-16x16.png",
+ "name": "WinBeta",
+ "triggers": [
+ "winbeta"
+ ],
+ "regions": {
+ "default": "http://www.winbeta.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wind.gr/wind/images/favicon.ico;wa58d95f5469f36466",
+ "name": "Wind",
+ "triggers": [
+ "wind"
+ ],
+ "regions": {
+ "default": "https://www.wind.gr/search?_dyncharset=utf-8&Dy=1&Ntt={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.windowparts.co.uk/media/favicon/default/favicon.ico",
+ "name": "WindowParts",
+ "triggers": [
+ "windowparts"
+ ],
+ "regions": {
+ "default": "http://www.windowparts.co.uk/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dev.windows.com/favicon.ico",
+ "name": "Windows Developer Feedback",
+ "triggers": [
+ "windev"
+ ],
+ "regions": {
+ "default": "https://wpdev.uservoice.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.microsoft.com/favicon.ico",
+ "name": "Windows Phone",
+ "triggers": [
+ "windowsphone"
+ ],
+ "regions": {
+ "default": "https://www.microsoft.com/en-us/search/result.aspx?q={{{term}}}&form=apps"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Windows Phone 7 Marketplace",
+ "triggers": [
+ "wp7"
+ ],
+ "regions": {
+ "default": "https://www.windowsphone.com/en-US/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Windows Phone 7 Marketplace France",
+ "triggers": [
+ "wp7fr"
+ ],
+ "regions": {
+ "default": "https://www.windowsphone.com/fr-FR/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.microsoft.com/favicon.ico?v2",
+ "name": "Windows Store",
+ "triggers": [
+ "winstore"
+ ],
+ "regions": {
+ "default": "http://windows.microsoft.com/en-us/windows/search#q={{{term}}}&s=Store"
+ }
+ },
+ {
+ "favicon": "https://dl.winehq.org/share/images/winehq_logo_16.png",
+ "name": "Wine AppDB",
+ "triggers": [
+ "wine"
+ ],
+ "regions": {
+ "default": "https://winehq.org/search?cx=partner-pub-0971840239976722%3Aw9sqbcsxtyf&cof=FORID%3A10&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.winechatty.com/wp-content/uploads/2015/08/20134704/cropped-LOGO-onlyv3_512px-192x192.png",
+ "name": "WineChatty",
+ "triggers": [
+ "winechatty"
+ ],
+ "regions": {
+ "default": "https://winechatty.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://dl.winehq.org/share/images/winehq_logo_16.png",
+ "name": "WineHQ",
+ "triggers": [
+ "winehq"
+ ],
+ "regions": {
+ "default": "https://www.winehq.org/search/?cx=partner-pub-0971840239976722:w9sqbcsxtyf&cof=FORID:10&ie=UTF-8&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dl.winehq.org/share/images/winehq_logo_16.png",
+ "name": "WineHQ AppDB",
+ "triggers": [
+ "appdb"
+ ],
+ "regions": {
+ "default": "https://www.winehq.org/search?cx=partner-pub-0971840239976722%3Aw9sqbcsxtyf&cof=FORID%3A10&ie=UTF-8&q={{{term}}}&siteurl=appdb.winehq.org%2F&ref=www.winehq.org%2Fsearch%2F%3Fcx%3Dpartner-pub-0971840239976722%253Aw9sqbcsxtyf%26cof%3DFORID%253A10%26ie%3DUTF-8%26q%3Dsomething&ss=674j114846j5"
+ }
+ },
+ {
+ "favicon": "https://i.wfcdn.de/5/favicon.ico",
+ "name": "WinFuture",
+ "triggers": [
+ "winfu"
+ ],
+ "regions": {
+ "default": "http://winfuture.de/suche/?cx=001589123709424097799%3Asbdrzmcykc8&cof=FORID%3A11&ie=ISO-8859-1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wink.com/people/nm/bbcbcd/wink-logo-icon",
+ "name": "Wink",
+ "triggers": [
+ "wink"
+ ],
+ "regions": {
+ "default": "http://wink.com/people/nm/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://www.wired.com/favicon.ico",
+ "name": "Wired",
+ "triggers": [
+ "wired"
+ ],
+ "regions": {
+ "default": "https://www.wired.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiringa.nl/favicon.ico",
+ "name": "Wiringa Technische Groothandel",
+ "triggers": [
+ "wiringa"
+ ],
+ "regions": {
+ "default": "https://wiringa.nl/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://main.cdn.wish.com/d07545eb2b86/img/ic_launcher_wish.png",
+ "name": "Wish",
+ "triggers": [
+ "wish"
+ ],
+ "regions": {
+ "default": "https://www.wish.com/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wissen.de/sites/all/themes/wissen/favicon.ico",
+ "name": "wissen.de",
+ "triggers": [
+ "wissen"
+ ],
+ "regions": {
+ "default": "http://www.wissen.de/wissensserver/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wjec.co.uk/application/themes/WjecCbac/favicon.ico?v=2",
+ "name": "WJEC",
+ "triggers": [
+ "wjec"
+ ],
+ "regions": {
+ "default": "http://www.wjec.co.uk/search/pf_search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media.wnyc.org/static/img/favicon_wnyc.ico?_=1530664547",
+ "name": "WNYC",
+ "triggers": [
+ "wnyc"
+ ],
+ "regions": {
+ "default": "https://www.wnyc.org/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.woerterbuch.info/favicon.ico",
+ "name": "woerterbuch.info",
+ "triggers": [
+ "woerterbuch"
+ ],
+ "regions": {
+ "default": "http://www.woerterbuch.info/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wolframalpha.com/favicon.ico",
+ "name": "WolframAlpha integration",
+ "triggers": [
+ "integral"
+ ],
+ "regions": {
+ "default": "https://www.wolframalpha.com/input/?i=integral+{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://m.wolframalpha.com/favicon.ico",
+ "name": "WolframAlpha Mobile",
+ "triggers": [
+ "wam"
+ ],
+ "regions": {
+ "default": "https://m.wolframalpha.com/input/?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wolframalpha.com/favicon.ico",
+ "name": "Wolfram|Alpha",
+ "triggers": [
+ "walpha",
+ "alpha",
+ "wra",
+ "wolframalpha",
+ "wa",
+ "wolfram"
+ ],
+ "regions": {
+ "default": "https://www.wolframalpha.com/input/?i={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wolnemedia.net/favicon.ico",
+ "name": "Wolne Media",
+ "triggers": [
+ "wme"
+ ],
+ "regions": {
+ "default": "http://wolnemedia.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://resize.rbl.ms/simage/https://assets.rbl.ms/17400998/2000x.png/32,32/N31/5GOAUtuLyute/img.png",
+ "name": "Wonkette",
+ "triggers": [
+ "wonkette"
+ ],
+ "regions": {
+ "default": "http://wonkette.com/?s={{{term}}}&submit="
+ }
+ },
+ {
+ "favicon": "https://static.wwbw.com/img/brand/mobile-wwbw/favicon.ico?vId=ecmd-2018.6.2-0e-wwbw&cb=2",
+ "name": "WoodwindsBrasswinds",
+ "triggers": [
+ "wwbw"
+ ],
+ "regions": {
+ "default": "http://www.wwbw.com/Search/Default.aspx?src={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/starwars/images/6/64/Favicon.ico/revision/latest?cb=20150514050108",
+ "name": "Wookieepedia",
+ "triggers": [
+ "swwiki"
+ ],
+ "regions": {
+ "default": "http://starwars.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/starwars/images/6/64/Favicon.ico/revision/latest?cb=20150514050108",
+ "name": "Wookiepedia",
+ "triggers": [
+ "starwars"
+ ],
+ "regions": {
+ "default": "http://starwars.wikia.com/wiki/Special:Search?search={{{term}}}&go=&fulltext=Search "
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/starwars/images/6/64/Favicon.ico/revision/latest?cb=20150514050108",
+ "name": "Wookiepedia",
+ "triggers": [
+ "wookie"
+ ],
+ "regions": {
+ "default": "http://starwars.wikia.com/wiki/Special:Search?search={{{term}}}&go=&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://www.woorden.org/favicon.png",
+ "name": "Woorden.org",
+ "triggers": [
+ "woord"
+ ],
+ "regions": {
+ "default": "http://www.woorden.org/woord/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://woordenlijst.org/sites/woordenlijst/themes/custom/taalunie_subtheme/img/icon/favicon-16x16.png",
+ "name": "Woordenlijst",
+ "triggers": [
+ "woordenlijst"
+ ],
+ "regions": {
+ "default": "http://woordenlijst.org/zoek/?q={{{term}}}&w=w"
+ }
+ },
+ {
+ "favicon": "http://www.wooroll.com/favicon.ico",
+ "name": "Wooroll",
+ "triggers": [
+ "wooroll"
+ ],
+ "regions": {
+ "default": "http://www.wooroll.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wordinfo.info/favicon.ico",
+ "name": "Word Information",
+ "triggers": [
+ "wordinfo"
+ ],
+ "regions": {
+ "default": "http://wordinfo.info/results?searchString={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://media-azeroth.cursecdn.com/avatars/476/448/634910775213454669.png",
+ "name": "Word of Warcraft Database - WOWDB",
+ "triggers": [
+ "wowdb"
+ ],
+ "regions": {
+ "default": "http://www.wowdb.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wresconj",
+ "wrspconj"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/conj/ESverbs.aspx?v={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wrenpl"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enpl/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wrsven"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/sven/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wrensp",
+ "wordreference"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/es/translation.asp?tranword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wrfren",
+ "wrfe"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/fren/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference",
+ "triggers": [
+ "wrplen"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/plen/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference Definicion",
+ "triggers": [
+ "esdef",
+ "wre",
+ "wres"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/definicion/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference EN-IT",
+ "triggers": [
+ "wrei"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enit/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference English to Portuguese",
+ "triggers": [
+ "wrep"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/pten/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference IT-EN",
+ "triggers": [
+ "wrie",
+ "writen"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/iten/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference Portuguese to English",
+ "triggers": [
+ "wrpe"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enpt/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Word Reference Sinonimos",
+ "triggers": [
+ "essin",
+ "sinonimo",
+ "wrss",
+ "wressin"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/sinonimos/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordfun.ca/favicon.ico",
+ "name": "WordFun crossword solver",
+ "triggers": [
+ "crossword"
+ ],
+ "regions": {
+ "default": "http://www.wordfun.ca/words/fw?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordiq.com/favicon.ico",
+ "name": "WordIQ",
+ "triggers": [
+ "wiq"
+ ],
+ "regions": {
+ "default": "http://www.wordiq.com/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wordnetweb.princeton.edu/favicon.ico",
+ "name": "WordNet",
+ "triggers": [
+ "wordnet"
+ ],
+ "regions": {
+ "default": "http://wordnetweb.princeton.edu/perl/webwn?s={{{term}}}&sub=Search+WordNet&o2=&o0=1&o7=&o5=&o1=1&o6=&o4=&o3=&h="
+ }
+ },
+ {
+ "favicon": "https://www.wordnik.com/img/favicon.png",
+ "name": "Wordnik",
+ "triggers": [
+ "word"
+ ],
+ "regions": {
+ "default": "https://www.wordnik.com/words?myWord={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wordnik.com/img/favicon.png",
+ "name": "Wordnik",
+ "triggers": [
+ "wordnik"
+ ],
+ "regions": {
+ "default": "https://www.wordnik.com/words/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress Code Reference",
+ "triggers": [
+ "wpdev"
+ ],
+ "regions": {
+ "default": "https://developer.wordpress.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress Codex",
+ "triggers": [
+ "codex"
+ ],
+ "regions": {
+ "default": "https://codex.wordpress.org/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wpackagist.org/favicon.png",
+ "name": "WordPress Packagist",
+ "triggers": [
+ "wpackagist"
+ ],
+ "regions": {
+ "default": "https://wpackagist.org/search?q={{{term}}}&type=any&search="
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress Plugin Directory",
+ "triggers": [
+ "wpp",
+ "wpplugs"
+ ],
+ "regions": {
+ "default": "https://wordpress.org/plugins/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/wordpress/img/favicon.ico?v=254234ed340f",
+ "name": "WordPress StackExchange",
+ "triggers": [
+ "wpse"
+ ],
+ "regions": {
+ "default": "http://wordpress.stackexchange.com/search?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://wpcom.files.wordpress.com/2017/11/cropped-wordpress.png?w=192",
+ "name": "WordPress.com",
+ "triggers": [
+ "wpblog"
+ ],
+ "regions": {
+ "default": "https://{{{term}}}.wordpress.com/"
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress.org",
+ "triggers": [
+ "wordpress",
+ "wp"
+ ],
+ "regions": {
+ "default": "https://wordpress.org/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress.org Plugins",
+ "triggers": [
+ "wpplugins"
+ ],
+ "regions": {
+ "default": "https://wordpress.org/extend/plugins/search.php?q={{{term}}}&sort="
+ }
+ },
+ {
+ "favicon": "//s.w.org/favicon.ico?2",
+ "name": "WordPress.org Themes",
+ "triggers": [
+ "wpthemes"
+ ],
+ "regions": {
+ "default": "https://wordpress.org/extend/themes/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Wordreference",
+ "triggers": [
+ "wrse"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enes/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrenes"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/redirect/translation.aspx?w={{{term}}}&dict=enes"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wresen"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/es/en/translation.asp?spen={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrenpt"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enpt/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrespt"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/espt/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrenfr",
+ "wenfr",
+ "wref"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enfr/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Wordreference",
+ "triggers": [
+ "wdr"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/es/translation.asp?tranword={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Wordreference",
+ "triggers": [
+ "wresfr",
+ "wrsf"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/esfr/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrdeen"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/deen/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Wordreference",
+ "triggers": [
+ "wrfres"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/fres/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference",
+ "triggers": [
+ "wrpten"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/pten/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference (EN)",
+ "triggers": [
+ "wrn",
+ "wren",
+ "wr"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/definition/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference (IT definition)",
+ "triggers": [
+ "writ"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/definizione/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference en->de",
+ "triggers": [
+ "wrende"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/ende/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "Wordreference en->it",
+ "triggers": [
+ "wrenit"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/enit/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "wordreference english to greek translation",
+ "triggers": [
+ "wrengr"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/engr/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "wordreference greek to english translation",
+ "triggers": [
+ "wrgren"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/gren/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "wordreference.com",
+ "triggers": [
+ "fconj"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/conj/FRverbs.aspx?v={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordReference.com English Synonyms",
+ "triggers": [
+ "wrensyn"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/thesaurus/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordreference.com/favicons/favicon.ico",
+ "name": "WordRefrence",
+ "triggers": [
+ "wrfrconj"
+ ],
+ "regions": {
+ "default": "http://www.wordreference.com/conj/FRverbs.aspx?v={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wordwebonline.com/favicon.ico",
+ "name": "WordWeb Online",
+ "triggers": [
+ "wordweb"
+ ],
+ "regions": {
+ "default": "http://www.wordwebonline.com/search.pl?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.workcircle.com/favicon.ico",
+ "name": "Workcircle",
+ "triggers": [
+ "workcircle"
+ ],
+ "regions": {
+ "default": "http://www.workcircle.com/jobs/?search=1&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.world-art.ru/favicon.ico",
+ "name": "World Art",
+ "triggers": [
+ "worldart"
+ ],
+ "regions": {
+ "default": "http://www.world-art.ru/search.php?public_search={{{term}}}&global_sector=all"
+ }
+ },
+ {
+ "favicon": "https://www.worldatlas.com/favicon.ico",
+ "name": "World Atlas",
+ "triggers": [
+ "worldatlas"
+ ],
+ "regions": {
+ "default": "http://www.worldatlas.com/header_final/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.worldcat.org/favicon.ico",
+ "name": "World Cat Identities",
+ "triggers": [
+ "wci"
+ ],
+ "regions": {
+ "default": "https://www.worldcat.org/identities/find?fullName={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.worldcubeassociation.org/assets/android-touch-icon-cd86a75d658e8fd7b7c99dd760ef4c3b41ef03b90c3d27575eb691c95d4d5a42.png",
+ "name": "World Cube Association Championships",
+ "triggers": [
+ "wcach"
+ ],
+ "regions": {
+ "default": "https://www.worldcubeassociation.org/competitions?utf8=%E2%9C%93&region={{{term}}}&search=&state=present&year=all+years&display=list"
+ }
+ },
+ {
+ "favicon": "http://www.worldofboardgames.com/favicon.ico",
+ "name": "World of Boardgames",
+ "triggers": [
+ "wob"
+ ],
+ "regions": {
+ "default": "http://www.worldofboardgames.com/webshop-sok.php?searchString={{{term}}}&search=S%F6k"
+ }
+ },
+ {
+ "favicon": "https://www.wog.ch/favicon-32x32.png",
+ "name": "World of Games",
+ "triggers": [
+ "wogch"
+ ],
+ "regions": {
+ "default": "https://www.wog.ch/index.cfm/search/type/Games/term/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.worldofspectrum.org/favicon.ico",
+ "name": "World of Spectrum",
+ "triggers": [
+ "wos",
+ "worldofspectrum"
+ ],
+ "regions": {
+ "default": "http://www.worldofspectrum.org/infoseek.cgi?regexp={{{term}}}&model=any&loadpics=3&fast=on"
+ }
+ },
+ {
+ "favicon": "https://worldofwarcraft.com/favicon.ico",
+ "name": "world of warcraft",
+ "triggers": [
+ "world of warcraft.com"
+ ],
+ "regions": {
+ "default": "https://worldofwarcraft.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://worldofwarcraft.com/favicon.ico",
+ "name": "World of Warcraft",
+ "triggers": [
+ "wow"
+ ],
+ "regions": {
+ "default": "https://worldofwarcraft.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://world4search.readsicp.org/favicon.ico",
+ "name": "world4search",
+ "triggers": [
+ "w4s"
+ ],
+ "regions": {
+ "default": "http://world4search.readsicp.org/q/prog/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sstatic.net/Sites/worldbuilding/img/favicon.ico?v=8ce2027d3849",
+ "name": "worldbuilding.stackexchange.com",
+ "triggers": [
+ "worldbuilding"
+ ],
+ "regions": {
+ "default": "http://worldbuilding.stackexchange.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.worldcat.org/favicon.ico",
+ "name": "WorldCat",
+ "triggers": [
+ "closebook"
+ ],
+ "regions": {
+ "default": "https://www.worldcat.org/search?qt=worldcat_org_bks&q={{{term}}}&fq=dt%3Abks"
+ }
+ },
+ {
+ "favicon": "http://worldcatmobile.org/favicon.ico",
+ "name": "WorldCat Mobile Web",
+ "triggers": [
+ "worldcatm"
+ ],
+ "regions": {
+ "default": "http://worldcatmobile.org/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.worldcat.org/favicon.ico",
+ "name": "WorldCat.org",
+ "triggers": [
+ "worldcat"
+ ],
+ "regions": {
+ "default": "https://www.worldcat.org/search?qt=worldcat_org_all&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.worldfootball.net/favicon.ico",
+ "name": "WorldFootball",
+ "triggers": [
+ "wfootball"
+ ],
+ "regions": {
+ "default": "http://www.worldfootball.net/search/?q=search&kind=1{{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.worldswithoutend.com/favicon.ico",
+ "name": "Worlds Without End",
+ "triggers": [
+ "scifi"
+ ],
+ "regions": {
+ "default": "http://www.worldswithoutend.com/searchwwe.asp?st={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.worldswithoutend.com/favicon.ico",
+ "name": "Worlds Without End",
+ "triggers": [
+ "wwend"
+ ],
+ "regions": {
+ "default": "http://www.worldswithoutend.com/searchwwe.asp?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wormbase.org/favicon.ico",
+ "name": "Wormbase",
+ "triggers": [
+ "worm"
+ ],
+ "regions": {
+ "default": "http://www.wormbase.org/species/c_elegans/gene/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://worms2d.info/favicon.ico",
+ "name": "Worms Knowledge Base",
+ "triggers": [
+ "worms"
+ ],
+ "regions": {
+ "default": "http://worms2d.info/?title=Special%3ASearch&search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "https://www.wort-suchen.de/t/word_grabber_base/img/bookmarker/icon-196x196.png",
+ "name": "Wort suchen",
+ "triggers": [
+ "wort"
+ ],
+ "regions": {
+ "default": "https://www.wort-suchen.de/kreuzwortraetsel-hilfe/loesungen/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://worthmonkey.com/favicon.ico",
+ "name": "Worth Monkey",
+ "triggers": [
+ "worth"
+ ],
+ "regions": {
+ "default": "http://worthmonkey.com/#/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://corpora.uni-leipzig.de/public/images/favicon.ico",
+ "name": "Wortschatz Uni Leipzig",
+ "triggers": [
+ "wul",
+ "wortschatz"
+ ],
+ "regions": {
+ "default": "http://corpora.uni-leipzig.de/de/res?corpusId=deu_newscrawl_2011&word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wortvogel.de/wp-content/themes/hot-stuff-web-development/assets/images/icons/favicon-16x16.png",
+ "name": "Wortvogel",
+ "triggers": [
+ "wortvogel"
+ ],
+ "regions": {
+ "default": "http://wortvogel.de/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wotif.com/favicon.ico",
+ "name": "Wotif",
+ "triggers": [
+ "wotif"
+ ],
+ "regions": {
+ "default": "http://www.wotif.com/search/TextSearch?searchTerms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d9me64que7cqs.cloudfront.net/images/favicon-cb34a003c6f2f637ee8f4f7b406f3b9b120b918c04cabec7f03a760e708977ea9689a1c638f4396def8dce7b202cd007eae91946cc3c4a578aa8b5694226cfc6.ico",
+ "name": "WOW Armory",
+ "triggers": [
+ "wowarmory"
+ ],
+ "regions": {
+ "default": "http://us.battle.net/wow/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d9me64que7cqs.cloudfront.net/images/favicon-cb34a003c6f2f637ee8f4f7b406f3b9b120b918c04cabec7f03a760e708977ea9689a1c638f4396def8dce7b202cd007eae91946cc3c4a578aa8b5694226cfc6.ico",
+ "name": "WOW Armory (EU)",
+ "triggers": [
+ "wowarmoryeu"
+ ],
+ "regions": {
+ "default": "http://eu.battle.net/wow/en/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wowhead.com/favicon.ico",
+ "name": "Wowhead",
+ "triggers": [
+ "wowh",
+ "wowhead"
+ ],
+ "regions": {
+ "default": "http://www.wowhead.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://de.wowhead.com/favicon.ico",
+ "name": "Wowhead german",
+ "triggers": [
+ "wowheadde"
+ ],
+ "regions": {
+ "default": "http://de.wowhead.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/wowpedia/6/64/Favicon.ico?version=61735aeaaade96b967c6a67a2ac43c18",
+ "name": "Wowpedia",
+ "triggers": [
+ "wowpedia"
+ ],
+ "regions": {
+ "default": "http://www.wowpedia.org/index.php?title=Special:Search&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wowprogress.com/favicon.ico",
+ "name": "WoWProgress",
+ "triggers": [
+ "wowprogress"
+ ],
+ "regions": {
+ "default": "https://www.wowprogress.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/wowwiki/images/6/64/Favicon.ico/revision/latest?cb=20160330035356",
+ "name": "WoWWiki",
+ "triggers": [
+ "wowwiki"
+ ],
+ "regions": {
+ "default": "http://www.wowwiki.com/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.woxikon.com/favicon.ico?v2",
+ "name": "Woxicon",
+ "triggers": [
+ "wox"
+ ],
+ "regions": {
+ "default": "http://www.woxikon.com/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://synonyme.woxikon.de/favicon.ico?v2",
+ "name": "Woxikon",
+ "triggers": [
+ "woxikon",
+ "wxd"
+ ],
+ "regions": {
+ "default": "http://synonyme.woxikon.de/synonyme/{{{term}}}.php"
+ }
+ },
+ {
+ "favicon": "http://wpplugindirectory.org/wp-content/themes/wpplugindirectory/favicon.ico",
+ "name": "WP Plugin Directory",
+ "triggers": [
+ "wpd"
+ ],
+ "regions": {
+ "default": "http://wpplugindirectory.org/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wpzen.pl/wp-content/uploads/2013/05/cropped-wpzen-logo-kwadrat02-192x192.png",
+ "name": "WPzen",
+ "triggers": [
+ "wpzen"
+ ],
+ "regions": {
+ "default": "http://wpzen.pl/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wtatennis.com/sites/default/files/logo_0.png",
+ "name": "WTA Tennis",
+ "triggers": [
+ "wta"
+ ],
+ "regions": {
+ "default": "http://www.wtatennis.com/search/query/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wttr.in/favicon.ico",
+ "name": "wttr",
+ "triggers": [
+ "wttr.in",
+ "wttr"
+ ],
+ "regions": {
+ "default": "http://wttr.in/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.wumingfoundation.com/favicon.ico",
+ "name": "Wu Ming Foundation",
+ "triggers": [
+ "wuming"
+ ],
+ "regions": {
+ "default": "http://www.wumingfoundation.com/giap/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wunderlist.com/site/images/favicon.ico",
+ "name": "Wunderlist",
+ "triggers": [
+ "wunderlist"
+ ],
+ "regions": {
+ "default": "https://www.wunderlist.com/#/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wurmpedia.com/favicon.ico",
+ "name": "Wurmpedia",
+ "triggers": [
+ "wurm"
+ ],
+ "regions": {
+ "default": "http://wurmpedia.com/index.php?search={{{term}}}&fulltext=Search&title=Special%3ASearch"
+ }
+ },
+ {
+ "favicon": "http://www.wurmweb.at/wp-content/themes/fastwp-cc-child/favicon.ico",
+ "name": "wurmweb",
+ "triggers": [
+ "wurmweb"
+ ],
+ "regions": {
+ "default": "http://www.wurmweb.at/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.worldwildlife.org/favicon.ico",
+ "name": "WWF",
+ "triggers": [
+ "wwf"
+ ],
+ "regions": {
+ "default": "https://www.worldwildlife.org/species/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wwoof.net/wp-content/uploads/2016/12/cropped-WWOOF_FoWO_world_only_500px-192x192.png",
+ "name": "Wwoof.net",
+ "triggers": [
+ "wwoof"
+ ],
+ "regions": {
+ "default": "http://www.wwoof.net/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://www.amazon.in/favicon.ico",
+ "name": "www.amazon.in",
+ "triggers": [
+ "ai"
+ ],
+ "regions": {
+ "default": "https://www.amazon.in/s/ref=nb_sb_noss?tag=duc21-21&url=search-alias%3Daps&field-keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://eleymcqueen.blogspot.com/favicon.ico",
+ "name": "www.eleymcqueen.blogspot.in",
+ "triggers": [
+ "eley"
+ ],
+ "regions": {
+ "default": "https://eleymcqueen.blogspot.in/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://epcdn-vz.azureedge.net/static/images/favicon/favicon.ico",
+ "name": "www.europages.de",
+ "triggers": [
+ "ep"
+ ],
+ "regions": {
+ "default": "https://everipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//cdn.fcglcdn.com/brainbees/images/FC_favicon_01.ico",
+ "name": "www.firstcry.com",
+ "triggers": [
+ "firstcry"
+ ],
+ "regions": {
+ "default": "http://www.firstcry.com/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.gandhi.com.mx/media/favicon/default/favico_1.png",
+ "name": "www.gandhi.com.mx",
+ "triggers": [
+ "gdhimx"
+ ],
+ "regions": {
+ "default": "http://www.gandhi.com.mx/catalogsearch/result/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.sechenovclinic.ru/local/templates/next_design/favicon.ico",
+ "name": "www.sechenovclinic.ru",
+ "triggers": [
+ "sechenovclinic"
+ ],
+ "regions": {
+ "default": "http://www.sechenovclinic.ru/search/index.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.spiegel.de/favicon.ico",
+ "name": "www.spiegel.de",
+ "triggers": [
+ "spiegel"
+ ],
+ "regions": {
+ "default": "http://www.spiegel.de/suche/index.html?suchbegriff= {{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.thalia.de/favicon.ico",
+ "name": "www.thalia.de",
+ "triggers": [
+ "thalia"
+ ],
+ "regions": {
+ "default": "https://www.thalia.de/suche?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.torrent9.biz/favicon.ico",
+ "name": "www.torrent9.biz",
+ "triggers": [
+ "t9"
+ ],
+ "regions": {
+ "default": "http://www.torrent9.biz/search_torrent/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://www.vapeoildirect.co.uk/wp-content/uploads/2016/12/cropped-Favicon-4-1-192x192.png",
+ "name": "www.vapeoildirect.co.uk",
+ "triggers": [
+ "vape"
+ ],
+ "regions": {
+ "default": "http://www.vapeoildirect.co.uk/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.weltbild.de/favicon.ico",
+ "name": "www.weltbild.de",
+ "triggers": [
+ "weltbild"
+ ],
+ "regions": {
+ "default": "https://www.weltbild.de/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure-skin.ztat.net/s/xk1/zalando/img/MAIN/zalando.ico",
+ "name": "www.zalando.de",
+ "triggers": [
+ "z",
+ "zalandode"
+ ],
+ "regions": {
+ "default": "https://www.zalando.de/katalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://nihongo.monash.edu/cgi-bin/favicon.ico",
+ "name": "WWWJDIC",
+ "triggers": [
+ "wwwjdic"
+ ],
+ "regions": {
+ "default": "http://nihongo.monash.edu/cgi-bin/wwwjdic?1MUE{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://docs.wxwidgets.org/favicon.ico",
+ "name": "wxWidgets Documentation",
+ "triggers": [
+ "wxw"
+ ],
+ "regions": {
+ "default": "http://docs.wxwidgets.org/trunk/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://wycliffepyre.com/wp-content/uploads/2016/09/favicon.png",
+ "name": "Wycliffe Pyre",
+ "triggers": [
+ "wypy"
+ ],
+ "regions": {
+ "default": "http://wycliffepyre.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wykop.pl/static/wykoppl7/img/favicon-160x160.png",
+ "name": "Wykop.pl",
+ "triggers": [
+ "wkp"
+ ],
+ "regions": {
+ "default": "https://www.wykop.pl/szukaj/{{{term}}}/?"
+ }
+ },
+ {
+ "favicon": "https://www.wykop.pl/static/wykoppl7/img/favicon-160x160.png",
+ "name": "Wykop.pl",
+ "triggers": [
+ "wy"
+ ],
+ "regions": {
+ "default": "https://www.wykop.pl/szukaj/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.wykop.pl/static/wykoppl7/img/favicon-160x160.png",
+ "name": "Wykop.pl",
+ "triggers": [
+ "wykop"
+ ],
+ "regions": {
+ "default": "https://www.wykop.pl/szukaj/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://woerterbuchnetz.de/favicon.ico",
+ "name": "Wörterbuchnetz",
+ "triggers": [
+ "woerterbuchnetz"
+ ],
+ "regions": {
+ "default": "http://woerterbuchnetz.de/cgi-bin/WBNetz/startGlobalSearch.tcl?stichwort={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://x264.me/favicon.ico",
+ "name": "x264.me",
+ "triggers": [
+ "x264"
+ ],
+ "regions": {
+ "default": "https://x264.me/browse.php?search={{{term}}}&incldead=0&xtype=0&stype=0"
+ }
+ },
+ {
+ "favicon": "http://ref.x86asm.net/favicon.ico",
+ "name": "x86 Opcode & Instruction Reference",
+ "triggers": [
+ "x86"
+ ],
+ "regions": {
+ "default": "http://ref.x86asm.net/geek.html#{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://developer.xamarin.com/favicon.ico",
+ "name": "Xamarin developer",
+ "triggers": [
+ "xamarin"
+ ],
+ "regions": {
+ "default": "https://developer.xamarin.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://us.v-cdn.net/5019960/uploads/favicon_ecb9955f17d3dd40c9055edf5be4d7b3.ico",
+ "name": "Xamarin Forums",
+ "triggers": [
+ "xamarinforums"
+ ],
+ "regions": {
+ "default": "https://forums.xamarin.com/search?Search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.xanga.com/favicon.ico",
+ "name": "Xanga",
+ "triggers": [
+ "xanga"
+ ],
+ "regions": {
+ "default": "http://search.xanga.com/searchsite.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://assets.xbox.com/xbcservicewebwww-1806-26171-0-0-main-rolling/shell/images/favicon.ico",
+ "name": "Xbox",
+ "triggers": [
+ "xbox"
+ ],
+ "regions": {
+ "default": "http://www.xbox.com/en-GB/Search?q={{{term}}}#All"
+ }
+ },
+ {
+ "favicon": "http://xboxdvr.com/assets/android-icon-845bfd3611dfffbc9184ff44eb69f301.png",
+ "name": "Xbox DVR",
+ "triggers": [
+ "dvr"
+ ],
+ "regions": {
+ "default": "http://xboxdvr.com/gamer/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xbytes.li/favicon.ico",
+ "name": "xBytes",
+ "triggers": [
+ "xbytes"
+ ],
+ "regions": {
+ "default": "http://www.xbytes.li/browse.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//forum-lw-1.xda-cdn.com/images/2015/favicons/favicon-16x16.png",
+ "name": "XDA Developers",
+ "triggers": [
+ "xdadev",
+ "xdaf",
+ "xda"
+ ],
+ "regions": {
+ "default": "https://forum.xda-developers.com/sitesearch.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "XE",
+ "triggers": [
+ "xe"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "xe",
+ "triggers": [
+ "gbp2usd"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=GBP&To=USD"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "xe",
+ "triggers": [
+ "usd2gbp"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=USD&To=GBP"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "XE (AUD2EUR)",
+ "triggers": [
+ "AUD2EUR"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=AUD&To=EUR"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "XE (AUD2GBP)",
+ "triggers": [
+ "AUD2GDP"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=AUD&To=GBP"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "XE (AUD2USD)",
+ "triggers": [
+ "aud2usd"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=AUD&To=USD"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "Xe.com",
+ "triggers": [
+ "usd2cop"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?From=USD&To=COP&Amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "Xe.com",
+ "triggers": [
+ "eur2usd"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?From=EUR&To=USD&Amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "Xe.com",
+ "triggers": [
+ "usd2eur"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?From=USD&To=EUR&Amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "Xe.com",
+ "triggers": [
+ "cop2usd"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?From=COP&To=USD&Amount={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xe.com/favicon.ico",
+ "name": "xe.com",
+ "triggers": [
+ "gbp2eur"
+ ],
+ "regions": {
+ "default": "http://www.xe.com/currencyconverter/convert/?Amount={{{term}}}&From=GBP&To=EUR"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/xenoblade/images/6/64/Favicon.ico/revision/latest?cb=20120311010004",
+ "name": "Xenoblade Wiki",
+ "triggers": [
+ "xenoblade"
+ ],
+ "regions": {
+ "default": "http://xenoblade.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.xfce-look.org/favicon.ico",
+ "name": "Xfce-Look",
+ "triggers": [
+ "xfce-look"
+ ],
+ "regions": {
+ "default": "https://www.xfce-look.org/search?projectSearchText={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.xgn.nl/favicon.ico",
+ "name": "XGN",
+ "triggers": [
+ "xgn"
+ ],
+ "regions": {
+ "default": "https://www.xgn.nl/zoeken/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//img.alicdn.com/tfs/TB1qP4zgY5YBuNjSspoXXbeNFXa-550-550.png",
+ "name": "Xiami",
+ "triggers": [
+ "xiami"
+ ],
+ "regions": {
+ "default": "http://www.xiami.com/search?key={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.xing.com/assets/frontend_minified/img/shared/xing_r1.ico",
+ "name": "Xing.de",
+ "triggers": [
+ "xing"
+ ],
+ "regions": {
+ "default": "https://www.xing.com/app/search?op=combined;keywords={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://search.news.cn/favicon.ico",
+ "name": "Xinhuanet",
+ "triggers": [
+ "xinhua"
+ ],
+ "regions": {
+ "default": "http://search.news.cn/language/search.jspa?id=en&t=1&t1=0&ss=&ct=&n1={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://xivdb.com/favicon-16x16.png",
+ "name": "XIV:DB",
+ "triggers": [
+ "xiv",
+ "xivdb"
+ ],
+ "regions": {
+ "default": "http://xivdb.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://xkcd.com/s/919f27.ico",
+ "name": "XKCD Number",
+ "triggers": [
+ "xkcdn"
+ ],
+ "regions": {
+ "default": "https://xkcd.com/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.xkcdb.com/favicon.ico",
+ "name": "XKCDB: The #xkcd quotes database",
+ "triggers": [
+ "xkcdb"
+ ],
+ "regions": {
+ "default": "http://www.xkcdb.com/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://xmpp.org/icons/favicon-16x16.png",
+ "name": "XMPP Extensions",
+ "triggers": [
+ "xep"
+ ],
+ "regions": {
+ "default": "https://xmpp.org/extensions/xep-{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "https://forum.xojo.com/favicon.ico",
+ "name": "Xojo Forum",
+ "triggers": [
+ "xojo",
+ "xf"
+ ],
+ "regions": {
+ "default": "https://forum.xojo.com/conversations/all?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://xpresate.com.mx/favicon.ico",
+ "name": "Xpresate",
+ "triggers": [
+ "xpresate"
+ ],
+ "regions": {
+ "default": "http://xpresate.com.mx/busqueda.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.xrel.to/favicon.ico",
+ "name": "xRel",
+ "triggers": [
+ "xrel"
+ ],
+ "regions": {
+ "default": "https://www.xrel.to/search.html?xrel_search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.xwiki.org/xwiki/resources/icons/xwiki/favicon.svg",
+ "name": "XWiki",
+ "triggers": [
+ "xwiki"
+ ],
+ "regions": {
+ "default": "http://www.xwiki.org/xwiki/bin/view/Main/Search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://xxl.no/favicon.ico",
+ "name": "XXL.no",
+ "triggers": [
+ "xxl"
+ ],
+ "regions": {
+ "default": "https://xxl.no/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://img-hws.y8.com/assets/y8/favicon-bbe12bfef74c2df2549976cea58ab563413321d756246b64c4ba941d55118b56.ico",
+ "name": "Y8",
+ "triggers": [
+ "y8"
+ ],
+ "regions": {
+ "default": "http://www.y8.com/search?utf8=%E2%9C%93&kind=game&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ya-market.org/sites/all/themes/app_theme/favicon.ico",
+ "name": "Ya Market",
+ "triggers": [
+ "yamarket"
+ ],
+ "regions": {
+ "default": "https://ya-market.org/products?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yabla.vo.llnwd.net/media.yabla.com/images/favicon.ico",
+ "name": "Yabla Chinese",
+ "triggers": [
+ "yabla"
+ ],
+ "regions": {
+ "default": "https://chinese.yabla.com/chinese-english-pinyin-dictionary.php?define={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://search.yacy.net/favicon.ico",
+ "name": "yacy",
+ "triggers": [
+ "yacy"
+ ],
+ "regions": {
+ "default": "http://search.yacy.net/yacysearch.html?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo",
+ "triggers": [
+ "yv"
+ ],
+ "regions": {
+ "default": "https://video.search.yahoo.com/search/video?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yahoo.com/favicon.ico",
+ "name": "Yahoo Finance",
+ "triggers": [
+ "yf",
+ "yfinance",
+ "yahoofinance"
+ ],
+ "regions": {
+ "default": "https://finance.yahoo.com/quote/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yahoo.com/favicon.ico",
+ "name": "Yahoo Finance Australia",
+ "triggers": [
+ "yahoofinau"
+ ],
+ "regions": {
+ "default": "https://au.finance.yahoo.com/q?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo German",
+ "triggers": [
+ "yde"
+ ],
+ "regions": {
+ "default": "https://de.yahoo.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo Images",
+ "triggers": [
+ "awimg"
+ ],
+ "regions": {
+ "default": "http://images.search.yahoo.com/search/images;_ylt=A0PDoS1.milPyVkAh7OJzbkF?p={{{term}}}&fr=alltheweb&ei=utf-8&n=30&x=wrt&y=Search"
+ }
+ },
+ {
+ "favicon": "https://search.yahoo.co.jp/favicon.ico",
+ "name": "Yahoo Japan",
+ "triggers": [
+ "yj",
+ "yjp"
+ ],
+ "regions": {
+ "default": "https://search.yahoo.co.jp/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dic.search.yahoo.co.jp/favicon.ico",
+ "name": "Yahoo Jisho",
+ "triggers": [
+ "yjisho"
+ ],
+ "regions": {
+ "default": "http://dic.search.yahoo.co.jp/search?ei=UTF-8&p={{{term}}}&fr=dic&stype=prefix"
+ }
+ },
+ {
+ "favicon": "https://maps.yahoo.com/favicon.ico",
+ "name": "Yahoo Maps",
+ "triggers": [
+ "ym"
+ ],
+ "regions": {
+ "default": "https://maps.yahoo.com/#q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maps.yahoo.com/favicon.ico",
+ "name": "Yahoo Maps",
+ "triggers": [
+ "ymaps"
+ ],
+ "regions": {
+ "default": "https://maps.yahoo.com/#q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://dic.search.yahoo.co.jp/favicon.ico",
+ "name": "Yahoo Search Japan",
+ "triggers": [
+ "yahoojdic"
+ ],
+ "regions": {
+ "default": "http://dic.search.yahoo.co.jp/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.yahoo.com/favicon.ico",
+ "name": "Yahoo!",
+ "triggers": [
+ "yahoo",
+ "y"
+ ],
+ "regions": {
+ "default": "https://search.yahoo.com/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://answers.yahoo.com/favicon.ico",
+ "name": "Yahoo! Answers",
+ "triggers": [
+ "answer"
+ ],
+ "regions": {
+ "default": "https://answers.yahoo.com/search/search_result;_ylt=AmLr_DtDPVmDQzOuA2T6sxAjzKIX;_ylv=3?p={{{term}}}&submit-go=Search+Y!+Answers"
+ }
+ },
+ {
+ "favicon": "https://answers.yahoo.com/favicon.ico",
+ "name": "Yahoo! Answers",
+ "triggers": [
+ "yanswers"
+ ],
+ "regions": {
+ "default": "https://answers.yahoo.com/search/search_result;_ylt=AnPnri0ekBBFsWt64sNbHmvj1KIX;_ylv=3?p={{{term}}}&submit-go=Search+Y!+Answers"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.jp/favicon.ico",
+ "name": "Yahoo! Auctions Japan",
+ "triggers": [
+ "yajp"
+ ],
+ "regions": {
+ "default": "http://auctions.search.yahoo.co.jp/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo! Image Search",
+ "triggers": [
+ "yi"
+ ],
+ "regions": {
+ "default": "https://images.search.yahoo.com/search/images?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo! Images",
+ "triggers": [
+ "yim"
+ ],
+ "regions": {
+ "default": "http://images.search.yahoo.com/search/images?p={{{term}}}&fr=alltheweb&ei=utf-8&n=30&x=wrt&y=Search"
+ }
+ },
+ {
+ "favicon": "https://s.yimg.com/rz/l/favicon.ico",
+ "name": "Yahoo! Images",
+ "triggers": [
+ "yimages"
+ ],
+ "regions": {
+ "default": "http://images.search.yahoo.com/search/images;_ylt=A0WTefMw66dLrEoAACeLuLkF?p={{{term}}}&ei=utf-8&iscqry=&fr=sfp"
+ }
+ },
+ {
+ "favicon": "http://chiebukuro.search.yahoo.co.jp/favicon.ico",
+ "name": "Yahoo! Japan Chiebukuro",
+ "triggers": [
+ "ychiejp"
+ ],
+ "regions": {
+ "default": "http://chiebukuro.search.yahoo.co.jp/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://movies.yahoo.com/favicon.ico",
+ "name": "Yahoo! Movies",
+ "triggers": [
+ "ymovies"
+ ],
+ "regions": {
+ "default": "https://movies.yahoo.com/mv/search/?ei=UTF-8&fr=&p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://news.search.yahoo.com/favicon.ico",
+ "name": "Yahoo! News",
+ "triggers": [
+ "ynews"
+ ],
+ "regions": {
+ "default": "http://news.search.yahoo.com/news/search?ei=UTF-8&fr=news-us-ss&c=&p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://shopping.yahoo.com/favicon.ico",
+ "name": "Yahoo! Shopping",
+ "triggers": [
+ "shop"
+ ],
+ "regions": {
+ "default": "https://shopping.yahoo.com/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://tw.search.yahoo.com/favicon.ico",
+ "name": "Yahoo! Taiwan",
+ "triggers": [
+ "ytw"
+ ],
+ "regions": {
+ "default": "http://tw.search.yahoo.com/search?p={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://dic.search.yahoo.co.jp/favicon.ico",
+ "name": "Yahoo!辞書",
+ "triggers": [
+ "ydic"
+ ],
+ "regions": {
+ "default": "http://dic.search.yahoo.co.jp/search?ei=UTF-8&p={{{term}}}&stype=full&fr=dic"
+ }
+ },
+ {
+ "favicon": "https://yamgo.com/images/favicons/favicon.ico",
+ "name": "Yamgo TV",
+ "triggers": [
+ "yamgo"
+ ],
+ "regions": {
+ "default": "https://yamgo.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yammer.com/favicon.ico",
+ "name": "Yammer",
+ "triggers": [
+ "yam"
+ ],
+ "regions": {
+ "default": "https://www.yammer.com/search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/KKii9ECKxo3QZnchF7ayZhbzOT8.png",
+ "name": "Yandex",
+ "triggers": [
+ "yandexen"
+ ],
+ "regions": {
+ "default": "https://www.yandex.com/yandsearch?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/KKii9ECKxo3QZnchF7ayZhbzOT8.png",
+ "name": "Yandex",
+ "triggers": [
+ "yaen"
+ ],
+ "regions": {
+ "default": "https://yandex.com/yandsearch?text={{{term}}}&lr=103421"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/8lFaTHLDzmsEZz-5XaQg9iTWZGE.png",
+ "name": "Yandex",
+ "triggers": [
+ "yandex",
+ "ya"
+ ],
+ "regions": {
+ "default": "https://yandex.ru/yandsearch?text={{{term}}}&lr=103421"
+ }
+ },
+ {
+ "favicon": "https://slovari.yandex.ru/icons/favicon.ico",
+ "name": "Yandex Dictionaries",
+ "triggers": [
+ "yad"
+ ],
+ "regions": {
+ "default": "https://slovari.yandex.ru/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/KKii9ECKxo3QZnchF7ayZhbzOT8.png",
+ "name": "Yandex Haritalar",
+ "triggers": [
+ "yh"
+ ],
+ "regions": {
+ "default": "https://yandex.com.tr/harita/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://yastatic.net/images-thumbs/_/8cS_MbHl6VBweqVjWeI-eNy0tzE.ico",
+ "name": "Yandex Images",
+ "triggers": [
+ "iya"
+ ],
+ "regions": {
+ "default": "https://images.yandex.com/yandsearch?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/8lFaTHLDzmsEZz-5XaQg9iTWZGE.png",
+ "name": "Yandex images (Яндекс картинки)",
+ "triggers": [
+ "як"
+ ],
+ "regions": {
+ "default": "https://yandex.ru/images/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://maps.yandex.ru/maps/favicon.png",
+ "name": "Yandex Maps",
+ "triggers": [
+ "yandexmaps"
+ ],
+ "regions": {
+ "default": "https://maps.yandex.ru/?text={{{term}}} "
+ }
+ },
+ {
+ "favicon": "//yastatic.net/market-export/_/i/favicon-194.png",
+ "name": "Yandex Market",
+ "triggers": [
+ "yandexm"
+ ],
+ "regions": {
+ "default": "http://market.yandex.ru/search.xml?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slovari.yandex.ru/icons/favicon.ico",
+ "name": "Yandex Slovari",
+ "triggers": [
+ "yaslovari",
+ "ys"
+ ],
+ "regions": {
+ "default": "https://slovari.yandex.ru/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://translate.yandex.com/icons/favicon.ico",
+ "name": "Yandex Translate",
+ "triggers": [
+ "yat",
+ "ytren"
+ ],
+ "regions": {
+ "default": "https://translate.yandex.com/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/KKii9ECKxo3QZnchF7ayZhbzOT8.png",
+ "name": "Yandex Turkey",
+ "triggers": [
+ "yatr"
+ ],
+ "regions": {
+ "default": "https://www.yandex.com.tr/search/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/8lFaTHLDzmsEZz-5XaQg9iTWZGE.png",
+ "name": "Yandex Video",
+ "triggers": [
+ "yav"
+ ],
+ "regions": {
+ "default": "https://yandex.ru/video/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://pogoda.yandex.ru/pogoda/static/favicon.ico",
+ "name": "Yandex Weather",
+ "triggers": [
+ "yaw"
+ ],
+ "regions": {
+ "default": "https://pogoda.yandex.ru/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/market-export/_/i/favicon-194.png",
+ "name": "Yandex.Market",
+ "triggers": [
+ "yama"
+ ],
+ "regions": {
+ "default": "https://market.yandex.ru/search?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//yastatic.net/iconostasis/_/8lFaTHLDzmsEZz-5XaQg9iTWZGE.png",
+ "name": "Yandex.ru",
+ "triggers": [
+ "я"
+ ],
+ "regions": {
+ "default": "https://yandex.ru/yandsearch?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://slovari.yandex.ru/icons/favicon.ico",
+ "name": "Yandex.Slovari",
+ "triggers": [
+ "slov"
+ ],
+ "regions": {
+ "default": "https://slovari.yandex.ru/search.xml?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://translate.yandex.ru/icons/favicon.ico",
+ "name": "Yandex.Translate",
+ "triggers": [
+ "ytr"
+ ],
+ "regions": {
+ "default": "https://translate.yandex.ru/?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1ktvljo0s16y6.cloudfront.net/static/images/favicons/favicon.5a653f48f9d4.ico",
+ "name": "yaoota",
+ "triggers": [
+ "yaoota"
+ ],
+ "regions": {
+ "default": "https://www.yaoota.com/en/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://yarnpkg.com/favicon.ico",
+ "name": "Yarn",
+ "triggers": [
+ "yarn",
+ "yarnpkg"
+ ],
+ "regions": {
+ "default": "https://yarnpkg.com/en/packages?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yeggi.com/favicon.ico",
+ "name": "Yeggi",
+ "triggers": [
+ "yeggi"
+ ],
+ "regions": {
+ "default": "https://www.yeggi.com/q/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "https://yellow.co.nz/static/images/favicon.png",
+ "name": "Yellow NZ",
+ "triggers": [
+ "yellownz"
+ ],
+ "regions": {
+ "default": "http://yellow.co.nz/yellow+pages/{{{term}}}/New+Zealand"
+ }
+ },
+ {
+ "favicon": "http://www.yellow.lu/assets/favicons/favicon-32x32-79df1d16180fe74149528191e1a704b9.png",
+ "name": "Yellow.lu",
+ "triggers": [
+ "yellowlu"
+ ],
+ "regions": {
+ "default": "http://www.yellow.lu/en/yellow-pages/search?location=&query={{{term}}}&sort_by=relevance"
+ }
+ },
+ {
+ "favicon": "https://www.yellowpages.com/favicon.ico",
+ "name": "YellowPages",
+ "triggers": [
+ "yp"
+ ],
+ "regions": {
+ "default": "https://www.yellowpages.com/search?search_terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3-media2.fl.yelpcdn.com/assets/srv0/yelp_styleguide/118ff475a341/assets/img/logos/favicon.ico",
+ "name": "Yelp",
+ "triggers": [
+ "yelp"
+ ],
+ "regions": {
+ "default": "http://www.yelp.com/search?find_desc={{{term}}}&ns=1&rpp=10&find_loc="
+ }
+ },
+ {
+ "favicon": "https://s3-media2.fl.yelpcdn.com/assets/srv0/yelp_styleguide/118ff475a341/assets/img/logos/favicon.ico",
+ "name": "Yelp Delivery Search",
+ "triggers": [
+ "delivery"
+ ],
+ "regions": {
+ "default": "http://www.yelp.com/search?&rpp=10&find_loc=&start=0&attrs=RestaurantsDelivery&find_desc={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3-media2.fl.yelpcdn.com/assets/srv0/yelp_styleguide/118ff475a341/assets/img/logos/favicon.ico",
+ "name": "Yelp Open Search",
+ "triggers": [
+ "open"
+ ],
+ "regions": {
+ "default": "http://www.yelp.com/search?find_desc=&ns=1#start=0&open_now=2510"
+ }
+ },
+ {
+ "favicon": "https://s3-media2.fl.yelpcdn.com/assets/srv0/yelp_styleguide/118ff475a341/assets/img/logos/favicon.ico",
+ "name": "Yelp San Diego",
+ "triggers": [
+ "yelpsd"
+ ],
+ "regions": {
+ "default": "http://www.yelp.com/search?find_desc={{{term}}}&find_loc=san+diego&ns=1"
+ }
+ },
+ {
+ "favicon": "https://s3-media2.fl.yelpcdn.com/assets/srv0/yelp_styleguide/118ff475a341/assets/img/logos/favicon.ico",
+ "name": "Yelp.de",
+ "triggers": [
+ "yelpde"
+ ],
+ "regions": {
+ "default": "http://www.yelp.de/search?find_desc={{{term}}}&ns=1&rpp=10&find_loc="
+ }
+ },
+ {
+ "favicon": "http://www.yentlendeboer.nl/favicon-16x16.png",
+ "name": "Yentl en de Boer",
+ "triggers": [
+ "yentlendeboer"
+ ],
+ "regions": {
+ "default": "http://www.yentlendeboer.nl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://yams.akamaized.net/Assets/res/imgs/yesasia.ico",
+ "name": "Yes Asia",
+ "triggers": [
+ "yesasia"
+ ],
+ "regions": {
+ "default": "http://www.yesasia.com/us/search/{{{term}}}/0-0-0-q.gfcadcah_bpt.48-en/list.html"
+ }
+ },
+ {
+ "favicon": "https://yesmovies.to/assets/images/favicon.png",
+ "name": "Yes Movies",
+ "triggers": [
+ "yesmovies"
+ ],
+ "regions": {
+ "default": "https://yesmovies.to/search/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://cfm.yidio.com/favicon.ico",
+ "name": "Yidio",
+ "triggers": [
+ "yidio"
+ ],
+ "regions": {
+ "default": "http://www.yidio.com/search/entertainment/{{{term}}}/1?find=eccfac"
+ }
+ },
+ {
+ "favicon": "https://www.yify-torrent.org/images/favicon.ico",
+ "name": "yify torrent",
+ "triggers": [
+ "yify"
+ ],
+ "regions": {
+ "default": "https://www.yify-torrent.org/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://www.yiiframework.com/favico/favicon.ico",
+ "name": "Yii Framework",
+ "triggers": [
+ "yii"
+ ],
+ "regions": {
+ "default": "http://www.yiiframework.com/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yippy.com/favicon.ico",
+ "name": "Yippy",
+ "triggers": [
+ "yippy"
+ ],
+ "regions": {
+ "default": "http://www.yippy.com/search/?v%3Aproject=clusty-new&query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yle.fi/favicon.ico",
+ "name": "Yle",
+ "triggers": [
+ "yle"
+ ],
+ "regions": {
+ "default": "http://haku.yle.fi/?language=fi&UILanguage=fi&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yle.fi/favicon.ico",
+ "name": "YLE Areena",
+ "triggers": [
+ "areena"
+ ],
+ "regions": {
+ "default": "http://haku.yle.fi/?q={{{term}}}&category=Areena"
+ }
+ },
+ {
+ "favicon": "https://ylilauta.org/favicon.ico",
+ "name": "ylilauta.org",
+ "triggers": [
+ "ylilauta"
+ ],
+ "regions": {
+ "default": "https://ylilauta.org/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.yobi3d.com/favicon.ico",
+ "name": "Yobi3D",
+ "triggers": [
+ "yobi3d"
+ ],
+ "regions": {
+ "default": "https://www.yobi3d.com/#!/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://wiki.yoctoproject.org/favicon.ico",
+ "name": "Yocto Project Wiki",
+ "triggers": [
+ "ypw"
+ ],
+ "regions": {
+ "default": "https://wiki.yoctoproject.org/wiki/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://image.yodobashi.com/catalog/20180628-03/common/img/icons/yfav.ico",
+ "name": "Yodobashi.com",
+ "triggers": [
+ "yodobashi"
+ ],
+ "regions": {
+ "default": "http://www.yodobashi.com/ec/category/index.html?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/yogscast/images/6/64/Favicon.ico/revision/latest?cb=20180101210225",
+ "name": "Yogscast Wiki",
+ "triggers": [
+ "yogscast"
+ ],
+ "regions": {
+ "default": "http://yogscast.wikia.com/wiki/index.php?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8 IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzRFNEQ3NkJEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzRFNEQ3NkNEMjRGMTFFMTk4RjA4NDhFNTEwRTcyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNEU0RDc2OUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNEU0RDc2QUQyNEYxMUUxOThGMDg0OEU1MTBFNzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PukMAkAAAAEsUExURcbf8uXx vb6/eXx Q5FtN/t Ofz rbX7uTr9 Tq9y5fvlh y7rY7 n0 lJ6yS1evt7l9Sxdvr/b8L3a8BRLtpev31mAy v0 k13yLLD59Hm9PT5/c3Z8LXG6Oby pXG5aG54vX3/Git2LvZ79bg8vr8/vP4/Mjh8 Pw Ofy sPd8cfj9G2P0cDc783k9Ex2x6DK5xlOuCBUumWJztDm9DZkwLTF6Ojt92yP0s7a8OPq9m6Y1d3l9cHP7OLp9kNvxNPo9Wes2DNhwJSv3uDt Ovw cDP6yNVuurv Nbf8pjI5aDL56G44rTL6h1RuWaJz9bp9tDo9u31 oWi2TZlwMfg8E16yd7t99Hc8Vl ysri897l9JCq3FB5yPL1 /2/MLQ7HGb1j9sw////2AvJ1QAAADsSURBVHjaRM9ZMwNREAXgnpvLZKOENsQSJrTlIjHEEhQZS2JJxljHmoT //9B37w4j19Xna4DzKzGDbHKLN MdZlB4GNJ8fV9AbH1W7ew7g6zn9ORt/uM8wJkBOs7eHai/P05Bnp0S8ynBQz2qk9v0jEbTyjpKWZRI0Z9hqlV29u9ynQmR6PAY7g0NYH efvzYDHAQ4bExBY0Bi3E7BHDkGkI MXN7 ncV1pKU1AhIiYbudgvx957c t2YW2k1ugJUKmqdXs7DGdiN5 yW hV4K4cVhI37wzGdX4u0skL9FYcRw2ANh74P38CDABMCjqJfzUcfQAAAABJRU5ErkJggg==",
+ "name": "Yongnuo Digital",
+ "triggers": [
+ "yongnuoaccessories"
+ ],
+ "regions": {
+ "default": "http://www.yongnuoaccessories.com/catalogsearch/result/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yopi.de/favicon.ico",
+ "name": "Yopi Tests und Preise",
+ "triggers": [
+ "yopi"
+ ],
+ "regions": {
+ "default": "http://www.yopi.de/search?search_str={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yopmail.com/favicon.gif",
+ "name": "YopMail",
+ "triggers": [
+ "yopmail"
+ ],
+ "regions": {
+ "default": "http://www.yopmail.com/en/index.php?login={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://shared.ydstatic.com/images/favicon.ico",
+ "name": "Youdao",
+ "triggers": [
+ "youdao"
+ ],
+ "regions": {
+ "default": "http://www.youdao.com/search?q={{{term}}}&ue=utf8&keyfrom=web.index"
+ }
+ },
+ {
+ "favicon": "https://shared.ydstatic.com/images/favicon.ico",
+ "name": "Youdao Dict",
+ "triggers": [
+ "ydd",
+ "youdaod"
+ ],
+ "regions": {
+ "default": "http://dict.youdao.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://youglish.com/images/logo.png",
+ "name": "YouGlish",
+ "triggers": [
+ "youglish"
+ ],
+ "regions": {
+ "default": "http://youglish.com/search/{{{term}}}/us"
+ }
+ },
+ {
+ "favicon": "http://www.soku.com/favicon.ico",
+ "name": "Youku",
+ "triggers": [
+ "youku"
+ ],
+ "regions": {
+ "default": "http://www.soku.com/search_video/q_{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://youloop.org/img/youloop-128.png",
+ "name": "youloop.org",
+ "triggers": [
+ "youloop"
+ ],
+ "regions": {
+ "default": "http://youloop.org/search.php?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.youmagine.com/assets/favicon-ec7bc35c69092ad8923c133ac1f372817df26c833562aab579ae2c6f9de4c3f1.ico",
+ "name": "YouMagine",
+ "triggers": [
+ "youmagine",
+ "umagine"
+ ],
+ "regions": {
+ "default": "https://www.youmagine.com/search/designs?utf8=%E2%9C%93&search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.youmagine.com/assets/favicon-ec7bc35c69092ad8923c133ac1f372817df26c833562aab579ae2c6f9de4c3f1.ico",
+ "name": "Youmagine",
+ "triggers": [
+ "ymgn"
+ ],
+ "regions": {
+ "default": "https://www.youmagine.com/search/designs?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/youngjustice/images/6/64/Favicon.ico/revision/latest?cb=20170811200517",
+ "name": "Young Justice Wiki",
+ "triggers": [
+ "yjwiki"
+ ],
+ "regions": {
+ "default": "http://youngjustice.wikia.com/wiki/Special:Search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sentence.yourdictionary.com/favicon.ico",
+ "name": "Your Dictionary",
+ "triggers": [
+ "sentence"
+ ],
+ "regions": {
+ "default": "http://sentence.yourdictionary.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//www.yourinspirationweb.com/wp-content/themes/yiw-4.0/favicon.ico",
+ "name": "Your Inspiration Web",
+ "triggers": [
+ "yiw",
+ "yourinspirationweb"
+ ],
+ "regions": {
+ "default": "http://www.yourinspirationweb.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://yourlovecalculator.com/favicon.ico",
+ "name": "Your Love Calculator",
+ "triggers": [
+ "lovecalculator"
+ ],
+ "regions": {
+ "default": "http://yourlovecalculator.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://yourbittorrent.com/favicon-16x16.png",
+ "name": "YourBittorrent",
+ "triggers": [
+ "ybt"
+ ],
+ "regions": {
+ "default": "https://yourbittorrent.com/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yourdictionary.com/favicon.ico",
+ "name": "YourDictionary",
+ "triggers": [
+ "yd"
+ ],
+ "regions": {
+ "default": "http://www.yourdictionary.com/search/?ydQ={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.yourtv.com.au/static/images/icons/favicon-c708f0b1.ico",
+ "name": "yourTV.com.au",
+ "triggers": [
+ "yourtv",
+ "ytv"
+ ],
+ "regions": {
+ "default": "http://www.yourtv.com.au/guide/search.aspx?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://stuff.yout.com/static/images/Youty.png",
+ "name": "yout.com",
+ "triggers": [
+ "yout"
+ ],
+ "regions": {
+ "default": "https://yout.com/search?terms={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube",
+ "triggers": [
+ "ty",
+ "watch",
+ "yt",
+ "youtube",
+ "you"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/results?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube (MX)",
+ "triggers": [
+ "ytmx"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/results?search_query={{{term}}}&gl=MX"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube (US)",
+ "triggers": [
+ "ytus"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/results?search_query={{{term}}}&gl=US"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube - long",
+ "triggers": [
+ "ytl"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/results?search_type=videos&search_query={{{term}}}&search_duration=long&uni=3"
+ }
+ },
+ {
+ "favicon": "https://www.youtube.be/yts/img/favicon_144-vfliLAfaB.png",
+ "name": "YouTube BE",
+ "triggers": [
+ "yatu"
+ ],
+ "regions": {
+ "default": "https://www.youtube.be/?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "https://www.youtube.ch/yts/img/favicon_144-vfliLAfaB.png",
+ "name": "YouTube CH",
+ "triggers": [
+ "ytch"
+ ],
+ "regions": {
+ "default": "https://www.youtube.ch/results?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube Channel",
+ "triggers": [
+ "ytc"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/user/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube Channel Videos",
+ "triggers": [
+ "ytcv"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/user/{{{term}}}/videos"
+ }
+ },
+ {
+ "favicon": "https://www.youtube.fr/yts/img/favicon_144-vfliLAfaB.png",
+ "name": "YouTube France",
+ "triggers": [
+ "ytfr"
+ ],
+ "regions": {
+ "default": "https://www.youtube.fr/results?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//gaming.youtube.com/s/gaming/favicons/1eabcd54/favicon_144.png",
+ "name": "YouTube Gaming",
+ "triggers": [
+ "ytg",
+ "ytgaming"
+ ],
+ "regions": {
+ "default": "https://gaming.youtube.com/results?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://youtubeonrepeat.com/favicon-16x16.png",
+ "name": "YouTube on Repeat",
+ "triggers": [
+ "youtubeonrepeat",
+ "ytor"
+ ],
+ "regions": {
+ "default": "http://youtubeonrepeat.com/results/?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://youtube.com/favicon.ico",
+ "name": "YouTube playlists",
+ "triggers": [
+ "ytp"
+ ],
+ "regions": {
+ "default": "https://www.youtube.com/results?q={{{term}}}&sp=EgIQAw%253D%253D"
+ }
+ },
+ {
+ "favicon": "http://youzeek.com/favicon.ico",
+ "name": "youzeek",
+ "triggers": [
+ "yz"
+ ],
+ "regions": {
+ "default": "http://youzeek.com/?lng=RU#xPAGE_V3-Artist_%3Flng%3DRU%26Artist%3D{{{term}}}%26page%3DGeneral"
+ }
+ },
+ {
+ "favicon": "http://ypertasicontrol.med.uoa.gr/favicon.ico",
+ "name": "Ypertasi Control",
+ "triggers": [
+ "ypertasicontrol"
+ ],
+ "regions": {
+ "default": "http://ypertasicontrol.med.uoa.gr/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yr.no/favicon.ico",
+ "name": "yr.no/NRK/Meteorologisk institutt Weather",
+ "triggers": [
+ "yr"
+ ],
+ "regions": {
+ "default": "https://www.yr.no/soek/soek.aspx?sted={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://assets.content.ytmnd.com/favicon.ico",
+ "name": "YTMND",
+ "triggers": [
+ "ytmnd"
+ ],
+ "regions": {
+ "default": "http://ytmnd.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://yts.ag/assets/images/website/favicon-32x32.png",
+ "name": "yts.ag",
+ "triggers": [
+ "yts"
+ ],
+ "regions": {
+ "default": "https://yts.ag/browse-movies/{{{term}}}/all/all/0/latest"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/yuyuhakusho/images/6/64/Favicon.ico/revision/latest?cb=20120531095028",
+ "name": "Yu Yu Hakusho Wiki",
+ "triggers": [
+ "yyh"
+ ],
+ "regions": {
+ "default": "http://yuyuhakusho.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.db.yugioh-card.com/yugiohdb/external/image/yugioh.ico",
+ "name": "Yu-Gi-Oh! Card Database",
+ "triggers": [
+ "yugiohdb"
+ ],
+ "regions": {
+ "default": "http://www.db.yugioh-card.com/yugiohdb/card_search.action?ope=1&sess=1&keyword={{{term}}}&stype=1&ctype=&starfr=&starto=&atkfr=&atkto=&deffr=&defto=&othercon=1"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/yugioh/images/6/64/Favicon.ico/revision/latest?cb=20090626015303",
+ "name": "Yu-Gi-Oh! Wikia",
+ "triggers": [
+ "ygo",
+ "yugioh"
+ ],
+ "regions": {
+ "default": "http://yugioh.wikia.com/wiki/Special:Search?search={{{term}}}&fulltext=Search"
+ }
+ },
+ {
+ "favicon": "http://yubnub.org/favicon.ico",
+ "name": "Yubnub",
+ "triggers": [
+ "yn"
+ ],
+ "regions": {
+ "default": "http://yubnub.org/parser/parse?command={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://yubnub.org/favicon.ico",
+ "name": "YubNub",
+ "triggers": [
+ "yubnub"
+ ],
+ "regions": {
+ "default": "http://yubnub.org/parser/parse?command={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://yufid.com/assets/images/favicon.png",
+ "name": "Yufid",
+ "triggers": [
+ "yfd"
+ ],
+ "regions": {
+ "default": "http://yufid.com/result/?search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://search.yahoo.com/favicon.ico",
+ "name": "YUI Docs",
+ "triggers": [
+ "yui"
+ ],
+ "regions": {
+ "default": "https://search.yahoo.com/search?va={{{term}}}&vs=developer.yahoo.com&vs=yuiblog.com&xargs=0&pstart=1&b=11&xa=XwepaYdoKtlFI.DeIR8Ntg--,1270480999"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/yume100prince/images/6/64/Favicon.ico/revision/latest?cb=20160829043321",
+ "name": "Yume100 Wiki",
+ "triggers": [
+ "yume100"
+ ],
+ "regions": {
+ "default": "http://yume100prince.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.yummlystatic.com/s/649ff31/icons/favicon-180.png",
+ "name": "Yummly",
+ "triggers": [
+ "yum",
+ "yummly"
+ ],
+ "regions": {
+ "default": "http://www.yummly.com/recipes?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://i.iheart.com/v3/re/assets.brands/5955372a9bbb613dec668fea?ops=resize(192,0)",
+ "name": "Z100",
+ "triggers": [
+ "z100"
+ ],
+ "regions": {
+ "default": "http://www.z100.com/main.html/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zabasearch.com/favicon.ico",
+ "name": "Zabasearch",
+ "triggers": [
+ "zabasearch"
+ ],
+ "regions": {
+ "default": "http://www.zabasearch.com/people/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://packages.debian.org/favicon.ico",
+ "name": "Zahe.me",
+ "triggers": [
+ "zahe"
+ ],
+ "regions": {
+ "default": "https://packages.debian.org/search?searchon=contents&keywords=bin/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://secure-skin.ztat.net/s/xk1/zalando/img/MAIN/zalando.ico",
+ "name": "Zalando",
+ "triggers": [
+ "zal"
+ ],
+ "regions": {
+ "default": "https://www.zalando.de/katalog/?q={{{term}}}&qf=1"
+ }
+ },
+ {
+ "favicon": "https://secure-skin.ztat.net/s/xk1/zalando/img/MAIN/zalando.ico",
+ "name": "Zalando",
+ "triggers": [
+ "zalando"
+ ],
+ "regions": {
+ "default": "https://www.zalando.co.uk/catalog/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://everquest.allakhazam.com/favicon.ico?3",
+ "name": "ZAM - EQ",
+ "triggers": [
+ "zameq"
+ ],
+ "regions": {
+ "default": "http://everquest.allakhazam.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://eq2.zam.com/favicon.ico",
+ "name": "ZAM - EQ2",
+ "triggers": [
+ "zameq2"
+ ],
+ "regions": {
+ "default": "https://eq2.zam.com/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://cdn2.hubspot.net/hubfs/2432573/Zanran_Favicon.png?t=1479317149013",
+ "name": "Zanran",
+ "triggers": [
+ "zanran"
+ ],
+ "regions": {
+ "default": "http://www.zanran.com/q/?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zap.co.il/favicon.ico",
+ "name": "Zap",
+ "triggers": [
+ "zap"
+ ],
+ "regions": {
+ "default": "http://www.zap.co.il/search.aspx?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.anp.nl/wp-content/uploads/2016/09/favicon.ico",
+ "name": "Zapaday",
+ "triggers": [
+ "zapaday"
+ ],
+ "regions": {
+ "default": "http://www.zapaday.com/index.php?page=search&usedatenav=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zbsamp.com/favicon-16x16.png",
+ "name": "Zapadni Balkan SA:MP",
+ "triggers": [
+ "zbsamp"
+ ],
+ "regions": {
+ "default": "http://www.zbsamp.com/index.php?action=search2;search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zapiks.fr/favicon.ico",
+ "name": "Zapiks",
+ "triggers": [
+ "zapiks"
+ ],
+ "regions": {
+ "default": "http://www.zapiks.fr/search.php?action=search&search={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.zapmeta.es/favicon.ico",
+ "name": "Zapmeta",
+ "triggers": [
+ "zapmeta"
+ ],
+ "regions": {
+ "default": "http://www.zapmeta.es/?vid=l791573315I1470912501&sess=a3a3a303a3a313&template=&asid=zapmeta_es&awc=&de=&nwc=&suggest=1&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zappos.com/marty-assets/1ZTbV-favicon.ico",
+ "name": "Zappos",
+ "triggers": [
+ "zappos"
+ ],
+ "regions": {
+ "default": "http://zappos.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zara.com/favicon.ico",
+ "name": "Zara",
+ "triggers": [
+ "zara"
+ ],
+ "regions": {
+ "default": "http://www.zara.com/webapp/wcs/stores/servlet/ItxSolrSearchingDataCmd?storeId=10701&langId=-5&searchTerm={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zargan.com/favicon.ico",
+ "name": "Zargan",
+ "triggers": [
+ "zargan"
+ ],
+ "regions": {
+ "default": "http://www.zargan.com/tr/q/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zaufanatrzeciastrona.pl/favicon-16x16.png?v=1",
+ "name": "Zaufana Trzecia Strona",
+ "triggers": [
+ "z3s"
+ ],
+ "regions": {
+ "default": "https://zaufanatrzeciastrona.pl/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://go.mail.ru/favicon.ico",
+ "name": "zaycev.net",
+ "triggers": [
+ "zay"
+ ],
+ "regions": {
+ "default": "http://go.mail.ru/zaycev?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zbozi.cz/img/favicon/favicon.ico?6.99.0",
+ "name": "Zboží.cz",
+ "triggers": [
+ "zbozi"
+ ],
+ "regions": {
+ "default": "http://www.zbozi.cz/hledani/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.zdf.de/favicon.ico",
+ "name": "ZDF",
+ "triggers": [
+ "zdf"
+ ],
+ "regions": {
+ "default": "https://www.zdf.de/suche?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zdnet2.cbsistatic.com/fly/bundles/zdnetcss/images/logos/logo-192x192.png",
+ "name": "ZDNet",
+ "triggers": [
+ "zdnet"
+ ],
+ "regions": {
+ "default": "http://www.zdnet.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zdoom.org/assets/images/favicon.png",
+ "name": "ZDoom Wiki",
+ "triggers": [
+ "zdoom"
+ ],
+ "regions": {
+ "default": "https://zdoom.org/w/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zeef.io/resources/zeef/images/favicon.ico.xhtml?ln=zeef&v=2017.5",
+ "name": "ZEEF.com",
+ "triggers": [
+ "zeef"
+ ],
+ "regions": {
+ "default": "https://zeef.com/?query={{{term}}}&in=all"
+ }
+ },
+ {
+ "favicon": "https://assets.shop.loblaws.ca/ContentMedia/zhr/logos/64x64icon.ico",
+ "name": "Zehrs Markets",
+ "triggers": [
+ "zehrs"
+ ],
+ "regions": {
+ "default": "https://www.zehrs.ca/search/?search-bar={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.zeit.de/favicon.ico",
+ "name": "Zeit Online",
+ "triggers": [
+ "zeit"
+ ],
+ "regions": {
+ "default": "http://www.zeit.de/suche/index?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.zeldadungeon.net/wp-content/themes/zi5/images/favicon.png",
+ "name": "Zelda Dungeon",
+ "triggers": [
+ "zd"
+ ],
+ "regions": {
+ "default": "https://www.zeldadungeon.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zeldauniverse.net/wp-content/themes/temple/favicon.ico",
+ "name": "Zelda Universe",
+ "triggers": [
+ "zeldauniverse",
+ "zu"
+ ],
+ "regions": {
+ "default": "http://www.zeldauniverse.net/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d1u5p3l4wpay3k.cloudfront.net/zelda_gamepedia_en/6/64/Favicon.ico?version=ec23a780aa3b2f9681b36a13c7d8ca22",
+ "name": "Zelda Wiki",
+ "triggers": [
+ "zw",
+ "zeldawiki"
+ ],
+ "regions": {
+ "default": "https://zelda.gamepedia.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/zelda/images/6/64/Favicon.ico/revision/latest?cb=20110428205521",
+ "name": "Zeldapedia",
+ "triggers": [
+ "zeldapedia"
+ ],
+ "regions": {
+ "default": "http://zelda.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zemljevid.najdi.si/assets/PROD-1.6.16/ctx/images/favicon.ico",
+ "name": "Zemljevid Najdi.si",
+ "triggers": [
+ "zemljevid"
+ ],
+ "regions": {
+ "default": "http://zemljevid.najdi.si/search_maps.jsp?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zeno.org/favicon.ico",
+ "name": "zeno.org",
+ "triggers": [
+ "zeno"
+ ],
+ "regions": {
+ "default": "http://www.zeno.org/Zeno/0/Suche?q={{{term}}}&k=Bibliothek"
+ }
+ },
+ {
+ "favicon": "http://www.zeno.org/favicon.ico",
+ "name": "Zeno.org - Georges 1913",
+ "triggers": [
+ "georges"
+ ],
+ "regions": {
+ "default": "http://www.zeno.org/Zeno/0/Suche?q={{{term}}}&k=Georges-1913"
+ }
+ },
+ {
+ "favicon": "http://www.zentralblatt-math.org/zbmath/search/favicon.ico",
+ "name": "Zentralblatt MATH Database",
+ "triggers": [
+ "zbmath"
+ ],
+ "regions": {
+ "default": "http://www.zentralblatt-math.org/zbmath/search/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s3-eu-west-1.amazonaws.com/zeroeu-static-assets/icons/favicon.png",
+ "name": "Zero",
+ "triggers": [
+ "zero"
+ ],
+ "regions": {
+ "default": "http://www.zero.eu/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zerochan.net/favicon.ico",
+ "name": "Zerochan",
+ "triggers": [
+ "zerochan"
+ ],
+ "regions": {
+ "default": "http://www.zerochan.net/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zerohedge.com/themes/zerohedge/favicons/favicon-16x16.png",
+ "name": "ZeroHedge",
+ "triggers": [
+ "zerohedge"
+ ],
+ "regions": {
+ "default": "http://www.zerohedge.com/search/apachesolr_search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.zerohedge.com/themes/zerohedge/favicons/favicon-16x16.png",
+ "name": "ZeroHedge.com",
+ "triggers": [
+ "zh"
+ ],
+ "regions": {
+ "default": "https://www.zerohedge.com/search-content?search_api_fulltext={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zic.it/favicon.png",
+ "name": "ZeroInCondotta",
+ "triggers": [
+ "zic"
+ ],
+ "regions": {
+ "default": "http://www.zic.it/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zestedesavoir.com/static/images/favicons/256.b4304d164aa4.png",
+ "name": "ZesteDeSavoir",
+ "triggers": [
+ "zds"
+ ],
+ "regions": {
+ "default": "http://zestedesavoir.com/rechercher/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://b7ac6877d8f0f6887d1a-06eda14bbaf6686f6c61dc2b031a183c.ssl.cf2.rackcdn.com/or-zesty-io-logo.png",
+ "name": "Zesty",
+ "triggers": [
+ "zesty"
+ ],
+ "regions": {
+ "default": "https://zesty.io/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn7.bigcommerce.com/s-r75dscg/product_images/favicon.png",
+ "name": "Zieglers - Catholic Store",
+ "triggers": [
+ "catholicstore"
+ ],
+ "regions": {
+ "default": "https://www.zieglers.com/search.php?search_query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ziirish.info/themes/responsive/blog/images/favicon.ico",
+ "name": "Ziirish's Home",
+ "triggers": [
+ "ziirish"
+ ],
+ "regions": {
+ "default": "http://ziirish.info/blog/?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://www.zikinf.com/_gfx/zk/fav/16x16.png",
+ "name": "Zikinf",
+ "triggers": [
+ "zikinf"
+ ],
+ "regions": {
+ "default": "https://www.zikinf.com/recherche/?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zillow.com/favicon.ico",
+ "name": "Zillow",
+ "triggers": [
+ "zillow"
+ ],
+ "regions": {
+ "default": "http://www.zillow.com/homes/{{{term}}}_rb/"
+ }
+ },
+ {
+ "favicon": "https://wiki.zimbra.com/favicon.ico",
+ "name": "Zimbra wiki",
+ "triggers": [
+ "wikizimbra"
+ ],
+ "regions": {
+ "default": "https://wiki.zimbra.com/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zmp3-static.zadn.vn/skins/zmp3-v5.1/images/icon_zing_mp3_60.png",
+ "name": "ZING MP3",
+ "triggers": [
+ "zmp3"
+ ],
+ "regions": {
+ "default": "http://mp3.zing.vn/tim-kiem/bai-hat.html?q={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://zippcast.com/wp-content/uploads/2017/09/cropped-Zippycast-logo-1-192x192.png",
+ "name": "ZippCast",
+ "triggers": [
+ "zippcast"
+ ],
+ "regions": {
+ "default": "http://www.zippcast.com/search.php?searchall={{{term}}} "
+ }
+ },
+ {
+ "favicon": "http://www.zivefirmy.cz/favicon.ico",
+ "name": "ZiveFirmy.cz",
+ "triggers": [
+ "zivefirmy"
+ ],
+ "regions": {
+ "default": "http://www.zivefirmy.cz/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "//zkillboard.com/favicon.ico",
+ "name": "zKillboard",
+ "triggers": [
+ "zkb"
+ ],
+ "regions": {
+ "default": "https://zkillboard.com/search/{{{term}}}/"
+ }
+ },
+ {
+ "favicon": "http://en.znurt.org/favicon.ico",
+ "name": "Znurt",
+ "triggers": [
+ "znurt"
+ ],
+ "regions": {
+ "default": "http://en.znurt.org/search.php?search=&q={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://search.zoho.com/favicon.ico",
+ "name": "Zoho",
+ "triggers": [
+ "zoho"
+ ],
+ "regions": {
+ "default": "https://search.zoho.com/searchresult?query={{{term}}}&search_type=all&index_key=-1&embed=false"
+ }
+ },
+ {
+ "favicon": "https://people.zoho.com/sites/all/themes/zoho/favicon.ico",
+ "name": "Zoho People",
+ "triggers": [
+ "people"
+ ],
+ "regions": {
+ "default": "https://people.zoho.com/people/#selfservice/directory/employees-searchstring={{{term}}}&searchType=0"
+ }
+ },
+ {
+ "favicon": "https://zomato.com/favicon.ico",
+ "name": "Zomato",
+ "triggers": [
+ "zomato"
+ ],
+ "regions": {
+ "default": "https://zomato.com/restaurants?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://s.zst.com.br/web/img/zoom-favicon.ico?v=1000E",
+ "name": "Zoom",
+ "triggers": [
+ "zoom",
+ "zoombr"
+ ],
+ "regions": {
+ "default": "http://www.zoom.com.br/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://d24cgw3uvb9a9h.cloudfront.net/zoom.ico",
+ "name": "zoom.us",
+ "triggers": [
+ "zoom.us"
+ ],
+ "regions": {
+ "default": "https://zoom.us/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zoomthelist.com/favicon.ico",
+ "name": "zoomthelist",
+ "triggers": [
+ "zoomthelist"
+ ],
+ "regions": {
+ "default": "http://zoomthelist.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "https://m.zoocdn.com/www/_b/static/images/favicon-37408e0919.ico",
+ "name": "Zoopla",
+ "triggers": [
+ "zoopla"
+ ],
+ "regions": {
+ "default": "http://www.zoopla.co.uk/search/?q={{{term}}}&geo_autocomplete_identifier=&country_code=&flatshare_q=&section=for-sale&search_source=nav&include_shared_ownership=true&include_retirement_homes=true&new_homes=include"
+ }
+ },
+ {
+ "favicon": "https://zooqle.com/img/zq-favicon16.png",
+ "name": "Zooqle",
+ "triggers": [
+ "zooqle"
+ ],
+ "regions": {
+ "default": "https://zooqle.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zulily.com/favicon.ico",
+ "name": "zulily",
+ "triggers": [
+ "zulily"
+ ],
+ "regions": {
+ "default": "http://www.zulily.com/{{{term}}}?fromSearch=true&searchTerm=nikcgiddkljllc"
+ }
+ },
+ {
+ "favicon": "http://search.zum.com/favicon.ico",
+ "name": "zum",
+ "triggers": [
+ "zum"
+ ],
+ "regions": {
+ "default": "http://search.zum.com/search.zum?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zunys.com/favicon.ico",
+ "name": "Zunys.com - Venta Online de Servicios y Productos",
+ "triggers": [
+ "zunys"
+ ],
+ "regions": {
+ "default": "http://www.zunys.com/?q={{{term}}}:"
+ }
+ },
+ {
+ "favicon": "http://foundation.zurb.com/forum/assets/img/icons/foundation-favicon.ico",
+ "name": "Zurb Foundation Forum",
+ "triggers": [
+ "zff"
+ ],
+ "regions": {
+ "default": "http://foundation.zurb.com/forum/posts?utf8=✓&search={{{term}}}&button="
+ }
+ },
+ {
+ "favicon": "http://foundation.zurb.com/docs//assets/img/icons/foundation-favicon.ico",
+ "name": "Zurb Foundation",
+ "triggers": [
+ "zurbf",
+ "zurbfoundation"
+ ],
+ "regions": {
+ "default": "http://foundation.zurb.com/docs//?q={{{term}}}: "
+ }
+ },
+ {
+ "favicon": "http://www.zvab.com/favicon.ico",
+ "name": "ZVAB",
+ "triggers": [
+ "zvab"
+ ],
+ "regions": {
+ "default": "http://www.zvab.com/basicSearch.do?anyWords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://zvon.org/favicon.ico",
+ "name": "ZVON.org",
+ "triggers": [
+ "zvon"
+ ],
+ "regions": {
+ "default": "http://zvon.org/comp/m/{{{term}}}.html"
+ }
+ },
+ {
+ "favicon": "http://zxing.org/favicon.ico",
+ "name": "ZXing QR decode",
+ "triggers": [
+ "qrdecode"
+ ],
+ "regions": {
+ "default": "http://zxing.org/w/decode?u={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zyrv.com/favicon.ico",
+ "name": "Zyrv.com",
+ "triggers": [
+ "zyrv"
+ ],
+ "regions": {
+ "default": "http://www.zyrv.com/search.php?u=posts&keywords_include={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://c4.zzounds.com/layout/zzounds/new/images/common/favicon.ico",
+ "name": "ZZounds",
+ "triggers": [
+ "zzounds"
+ ],
+ "regions": {
+ "default": "https://www.zzounds.com/prodsearch?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.zakonypreludi.sk/favicon.ico",
+ "name": "Zákony pre ľudí",
+ "triggers": [
+ "zakony"
+ ],
+ "regions": {
+ "default": "http://www.zakonypreludi.sk/main/search.aspx?text={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.argep.hu/favicon.ico",
+ "name": "ÁrGép",
+ "triggers": [
+ "argep"
+ ],
+ "regions": {
+ "default": "http://www.argep.hu/main.aspx?suche={{{term}}}&x=0&y=0"
+ }
+ },
+ {
+ "favicon": "https://static.arukereso.hu/images/touch-icon-180x180.png",
+ "name": "Árukereső",
+ "triggers": [
+ "aru"
+ ],
+ "regions": {
+ "default": "https://www.arukereso.hu/CategorySearch.php?st={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://img.csfd.cz/assets/b41/images/favicon.ico",
+ "name": "Česko-Slovenská filmová databáze",
+ "triggers": [
+ "csfd"
+ ],
+ "regions": {
+ "default": "http://www.csfd.cz/hledat/?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://el.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Βικιπαίδεια",
+ "triggers": [
+ "elw"
+ ],
+ "regions": {
+ "default": "https://el.wikipedia.org/w/index.php?search={{{term}}}&title=%CE%95%CE%B9%CE%B4%CE%B9%CE%BA%CF%8C%3A%CE%91%CE%BD%CE%B1%CE%B6%CE%AE%CF%84%CE%B7%CF%83%CE%B7&go=%CE%9C%CE%B5%CF%84%CE%AC%CE%B2%CE%B1%CF%83%CE%B7"
+ }
+ },
+ {
+ "favicon": "https://el.m.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Βικιπαίδεια",
+ "triggers": [
+ "Βικι"
+ ],
+ "regions": {
+ "default": "https://el.m.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://baneks.site/static/img/favicon-16x16.png",
+ "name": "Анекдоты категории Б",
+ "triggers": [
+ "baneks"
+ ],
+ "regions": {
+ "default": "https://baneks.site/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://engramm.su/lib/tpl/engramm/images/favicon.ico",
+ "name": "Вики-учебник Английского Языка",
+ "triggers": [
+ "англяз"
+ ],
+ "regions": {
+ "default": "http://engramm.su/start?do=search&id={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ru.wikinews.org/static/favicon/wikinews.ico",
+ "name": "викиновости",
+ "triggers": [
+ "вн"
+ ],
+ "regions": {
+ "default": "https://ru.wikinews.org/wiki/%D0%A1%D0%BB%D1%83%D0%B6%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F:%D0%9F%D0%BE%D0%B8%D1%81%D0%BA?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ru.wikipedia.org/static/favicon/wikipedia.ico",
+ "name": "Википедия",
+ "triggers": [
+ "вики"
+ ],
+ "regions": {
+ "default": "https://ru.wikipedia.org/w/index.php?search={{{term}}}&"
+ }
+ },
+ {
+ "favicon": "http://www.labirint.ru/favicon.ico?v=wAOzn9qNM4",
+ "name": "Лабиринт",
+ "triggers": [
+ "л"
+ ],
+ "regions": {
+ "default": "http://www.labirint.ru/search/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://news.tut.by/favicon.ico",
+ "name": "Новости TUT.BY / TUT.BY news",
+ "triggers": [
+ "tutnews"
+ ],
+ "regions": {
+ "default": "http://news.tut.by/search/?str={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://e2u.org.ua/sites/default/img/e2u.png",
+ "name": "Російсько-українські словники",
+ "triggers": [
+ "r2u"
+ ],
+ "regions": {
+ "default": "http://www.r2u.org.ua/s?w={{{term}}}&scope=all&dicts=all&highlight=on"
+ }
+ },
+ {
+ "favicon": "https://bg.wiktionary.org/static/favicon/piece.ico",
+ "name": "Уикиречник",
+ "triggers": [
+ "wtbg"
+ ],
+ "regions": {
+ "default": "https://bg.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://grapaharan.org/favicon.ico",
+ "name": "Գրապահարան",
+ "triggers": [
+ "grapaharan"
+ ],
+ "regions": {
+ "default": "http://grapaharan.org/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.alteqnia.com/favicon.ico",
+ "name": "التقنية دوت كوم",
+ "triggers": [
+ "alteqnia",
+ "التقنية دوت كوم"
+ ],
+ "regions": {
+ "default": "http://www.alteqnia.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://ww3.anyanime.com/wp-content/themes/EngMedia/img/favicon.ico",
+ "name": "انمي اون لاين اني انمي",
+ "triggers": [
+ "anyanime"
+ ],
+ "regions": {
+ "default": "http://www.anyanime.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.drargapress.com/wp-content/uploads/2015/08/logo2.png",
+ "name": "جريدة الدراركة بريس",
+ "triggers": [
+ "drargapress"
+ ],
+ "regions": {
+ "default": "http://www.drargapress.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://images.uncyc.org/ja/6/64/Favicon.ico",
+ "name": "アンサイクロペディア",
+ "triggers": [
+ "unja"
+ ],
+ "regions": {
+ "default": "http://ja.uncyclopedia.info/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kotobank.jp/favicon.ico",
+ "name": "コトバンク",
+ "triggers": [
+ "kotoba"
+ ],
+ "regions": {
+ "default": "http://kotobank.jp/word/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kotobank.jp/favicon.ico",
+ "name": "コトバンク用語検索",
+ "triggers": [
+ "kotobank"
+ ],
+ "regions": {
+ "default": "http://kotobank.jp/word/{{{term}}} "
+ }
+ },
+ {
+ "favicon": "https://twpro.jp/favicon.png",
+ "name": "ツイプロ",
+ "triggers": [
+ "twpro"
+ ],
+ "regions": {
+ "default": "https://twpro.jp/search?word={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://pasokatu.com/wp/wp-content/uploads/2014/12/548aac58bde35.ico",
+ "name": "ノイズレスサーチ",
+ "triggers": [
+ "noiseless"
+ ],
+ "regions": {
+ "default": "http://pasokatu.com/nsearch#gsc.q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://search.jd.com/favicon.ico",
+ "name": "京东网上商城",
+ "triggers": [
+ "jd"
+ ],
+ "regions": {
+ "default": "https://search.jd.com/Search?keyword={{{term}}}&enc=utf-8"
+ }
+ },
+ {
+ "favicon": "http://www5.atwiki.jp/favicon.ico",
+ "name": "初音ミク Wiki",
+ "triggers": [
+ "hmiku"
+ ],
+ "regions": {
+ "default": "http://www5.atwiki.jp/hmiku/?cmd=search&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://search.books.com.tw/favicon.ico",
+ "name": "博客來",
+ "triggers": [
+ "bkl"
+ ],
+ "regions": {
+ "default": "http://search.books.com.tw/search/query/key/{{{term}}}/cat/all"
+ }
+ },
+ {
+ "favicon": "//static.hdslb.com/images/favicon.ico",
+ "name": "哔哩哔哩弹幕网",
+ "triggers": [
+ "blbl"
+ ],
+ "regions": {
+ "default": "https://www.bilibili.com/search?keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cdn.sspai.com/sspai/assets/img/favicon/icon.ico",
+ "name": "少数派",
+ "triggers": [
+ "sspai"
+ ],
+ "regions": {
+ "default": "https://sspai.com/search/article?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://vdisk.weibo.com/favicon.ico",
+ "name": "微盘",
+ "triggers": [
+ "vdisk"
+ ],
+ "regions": {
+ "default": "http://vdisk.weibo.com/search/?type=public&keyword={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://zhihu.sogou.com/favicon.ico?v=1.1",
+ "name": "搜狗知乎",
+ "triggers": [
+ "zhihu"
+ ],
+ "regions": {
+ "default": "https://zhihu.sogou.com/zhihu?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://sitesearch.asahi.com/favicon.ico",
+ "name": "朝日新聞",
+ "triggers": [
+ "asahi"
+ ],
+ "regions": {
+ "default": "http://sitesearch.asahi.com/.cgi/sitesearch/sitesearch.pl?Keywords={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://kanji.jitenon.jp/cat/favicon.ico",
+ "name": "漢字辞典オンライン (Online kanji dictionary)",
+ "triggers": [
+ "kji"
+ ],
+ "regions": {
+ "default": "http://kanji.jitenon.jp/cat/search.php?getdata={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iciba.com/favicon.ico",
+ "name": "爱词霸",
+ "triggers": [
+ "iciba"
+ ],
+ "regions": {
+ "default": "http://www.iciba.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "//tb1.bdstatic.com/tb/favicon.ico",
+ "name": "百度贴吧",
+ "triggers": [
+ "tieba"
+ ],
+ "regions": {
+ "default": "http://tieba.baidu.com/f?ie=utf-8&kw={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://static.zhihu.com/static/favicon.ico",
+ "name": "知乎",
+ "triggers": [
+ "zhi"
+ ],
+ "regions": {
+ "default": "https://www.zhihu.com/search?q= {{{term}}} &type=question"
+ }
+ },
+ {
+ "favicon": "//s1.music.126.net/style/favicon.ico?v20180307",
+ "name": "网易云音乐",
+ "triggers": [
+ "m163",
+ "nem"
+ ],
+ "regions": {
+ "default": "https://music.163.com/#/search/m/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://eowp.alc.co.jp/favicon.ico",
+ "name": "英辞郎 on the WEB Pro",
+ "triggers": [
+ "eow"
+ ],
+ "regions": {
+ "default": "http://eowp.alc.co.jp/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.baidu.com/img/baidu.svg",
+ "name": "贴吧id",
+ "triggers": [
+ "tiebaid"
+ ],
+ "regions": {
+ "default": "https://passport.baidu.com/v2/?regnamesugg&username={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.iwencai.com/favicon.ico",
+ "name": "问财",
+ "triggers": [
+ "wenc"
+ ],
+ "regions": {
+ "default": "http://www.iwencai.com/stockpick/search?w={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.ruten.com.tw/images/ie9_icon/logo_1616.ico",
+ "name": "露天拍賣",
+ "triggers": [
+ "ruten"
+ ],
+ "regions": {
+ "default": "http://find.ruten.com.tw/search/s000.php?enc=u&searchfrom=searchf&k={{{term}}}&t=0"
+ }
+ },
+ {
+ "favicon": "//librewiki.net/images/favicon.ico",
+ "name": "리브레 위키",
+ "triggers": [
+ "libre"
+ ],
+ "regions": {
+ "default": "https://librewiki.net/wiki/Special:Search?search={{{term}}}&go=Go"
+ }
+ },
+ {
+ "favicon": "http://kwzf.net/favicon.ico",
+ "name": "묻지마 검색",
+ "triggers": [
+ "kwzf"
+ ],
+ "regions": {
+ "default": "http://kwzf.net/#search={{{term}}}&page=1"
+ }
+ },
+ {
+ "favicon": "http://oriwiki.net/favicon.ico",
+ "name": "오리위키",
+ "triggers": [
+ "oriwiki"
+ ],
+ "regions": {
+ "default": "http://oriwiki.net/index.php?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://ko.wiktionary.org/static/favicon/piece.ico",
+ "name": "위키낱말사전",
+ "triggers": [
+ "wiktko"
+ ],
+ "regions": {
+ "default": "https://ko.wiktionary.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.cafepress.com/favicon.ico",
+ "name": "CafePress",
+ "triggers": [
+ "cafepress"
+ ],
+ "regions": {
+ "default": "https://www.cafepress.com/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://cakephp.org/favicon.ico",
+ "name": "CakePHP 2",
+ "triggers": [
+ "cake2"
+ ],
+ "regions": {
+ "default": "https://book.cakephp.org/2.0/en/search.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://vignette.wikia.nocookie.net/callofduty/images/6/64/Favicon.ico/revision/latest?cb=20110216192246",
+ "name": "Call of Duty Wiki",
+ "triggers": [
+ "codw",
+ "callofduty"
+ ],
+ "regions": {
+ "default": "http://callofduty.wikia.com/wiki/Special:Search?search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.calorieking.com.au/favicon.ico",
+ "name": "Calorie King",
+ "triggers": [
+ "carbs",
+ "calorieking"
+ ],
+ "regions": {
+ "default": "http://www.calorieking.com.au/foods/search.php?keywords={{{term}}}&showresults=yes&go=Search"
+ }
+ },
+ {
+ "favicon": "http://michaelyingling.com/favicon.ico",
+ "name": "Calvin and Hobbes",
+ "triggers": [
+ "cah",
+ "calvinandhobbes"
+ ],
+ "regions": {
+ "default": "http://michaelyingling.com/random/calvin_and_hobbes/search.php?phrase={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://dictionary.cambridge.org/favicon.ico",
+ "name": "Cambridge Dictionary",
+ "triggers": [
+ "cald",
+ "cdgdic",
+ "cambd",
+ "cambridge"
+ ],
+ "regions": {
+ "default": "https://dictionary.cambridge.org/dictionary/english/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://camelcamelcamel.com/favicon.ico",
+ "name": "CamelCamelCamel",
+ "triggers": [
+ "ccc",
+ "camel"
+ ],
+ "regions": {
+ "default": "https://camelcamelcamel.com/search?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://uk.camelcamelcamel.com/favicon.ico",
+ "name": "CamelCamelCamel UK",
+ "triggers": [
+ "cccuk",
+ "cameluk"
+ ],
+ "regions": {
+ "default": "https://uk.camelcamelcamel.com/search?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://de.camelcamelcamel.com/favicon.ico",
+ "name": "CamelCamelCamel German",
+ "triggers": [
+ "cccde",
+ "camelde"
+ ],
+ "regions": {
+ "default": "https://de.camelcamelcamel.com/products?sq={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://caniuse.com/favicon.ico",
+ "name": "Can I use",
+ "triggers": [
+ "cu",
+ "ciu",
+ "cius",
+ "caniuse"
+ ],
+ "regions": {
+ "default": "https://caniuse.com/#search={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.canada.ca/etc/designs/canada/wet-boew/assets/favicon.ico",
+ "name": "Canada.ca",
+ "triggers": [
+ "can",
+ "canada"
+ ],
+ "regions": {
+ "default": "https://www.canada.ca/en/sr/srb.html?cdn=canada&st=s&num=10&langs=en&st1rt=1&s5bm3ts21rch=x&q={{{term}}}&_charset_=UTF-8&wb-srch-sub="
+ }
+ },
+ {
+ "favicon": "https://www.canadapost.ca/favicon.ico",
+ "name": "Canada Post",
+ "triggers": [
+ "capost",
+ "canadapost"
+ ],
+ "regions": {
+ "default": "https://www.canadapost.ca/cpotools/apps/track/personal/findByTrackNumber?trackingNumber={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://www.canadiantire.ca/etc/designs/canadian-tire-site/favicons/favicon-32x32.png",
+ "name": "Canadian Tire",
+ "triggers": [
+ "ct",
+ "canadiantire"
+ ],
+ "regions": {
+ "default": "http://www.canadiantire.ca/en/search-results.html?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.britannica.com/favicon.ico",
+ "name": "Encyclopedia Britannica",
+ "triggers": [
+ "britannica"
+ ],
+ "regions": {
+ "default": "https://www.britannica.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://github.com/favicon.ico",
+ "name": "GitHub",
+ "triggers": [
+ "gh",
+ "git",
+ "github"
+ ],
+ "regions": {
+ "default": "https://github.com/search?q={{{term}}}&type=Everything&repo=&langOverride=&start_value=1"
+ }
+ },
+ {
+ "favicon": "https://www.ebay.com/favicon.ico",
+ "name": "eBay",
+ "triggers": [
+ "e",
+ "eb",
+ "ebay"
+ ],
+ "regions": {
+ "default": "https://www.ebay.com/sch/items/?_nkw={{{term}}}&_sacat=&_ex_kw=&_mPrRngCbx=1&_udlo=&_udhi=&_sop=12&_fpos=&_fspt=1&_sadis=&LH_CAds=&rmvSB=true"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google",
+ "triggers": [
+ "g",
+ "google"
+ ],
+ "regions": {
+ "ca": "https://www.google.ca/search?q={{{term}}}",
+ "default": "https://encrypted.google.com/search?hl={{{lang}}}&q={{{term}}}",
+ "fr": "https://www.google.fr/search?hl={{{lang}}}&q={{{term}}}",
+ "ru": "https://www.google.ru/search?hl={{{lang}}}&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google France",
+ "triggers": [
+ "gfr",
+ "googlefr"
+ ],
+ "regions": {
+ "default": "https://www.google.fr/search?hl={{{lang}}}&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Images",
+ "triggers": [
+ "gi"
+ ],
+ "regions": {
+ "default": "https://www.google.com/search?q={{{term}}}&source=lnms&tbm=isch"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Maps",
+ "triggers": [
+ "gm",
+ "googlemaps",
+ "gmap",
+ "gmaps"
+ ],
+ "regions": {
+ "default": "https://www.google.com/maps?hl=en&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google News",
+ "triggers": [
+ "gn",
+ "gnews",
+ "googlenews"
+ ],
+ "regions": {
+ "default": "https://news.google.com/search?q={{{term}}}&hl=en-US&gl=US&ceid=US:en"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Reverse Image Search",
+ "triggers": [
+ "gri",
+ "rgi"
+ ],
+ "regions": {
+ "default": "https://www.google.com/searchbyimage?image_url={{{term}}}&btnG=Search+by+image&encoded_image=&image_content=&filename=&hl=en"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Russia",
+ "triggers": [
+ "gru",
+ "googleru"
+ ],
+ "regions": {
+ "default": "https://www.google.ru/search?hl={{{lang}}}&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Scholar",
+ "triggers": [
+ "googlescholar"
+ ],
+ "regions": {
+ "default": "https://scholar.google.com/scholar?hl={{{lang}}}&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Translate",
+ "triggers": [
+ "gt",
+ "googletranslate"
+ ],
+ "regions": {
+ "default": "https://translate.google.com/#auto/en/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.google.com/favicon.ico",
+ "name": "Google Videos",
+ "triggers": [
+ "gv",
+ "gvideo",
+ "gvideos",
+ "googlevideos"
+ ],
+ "regions": {
+ "default": "https://www.google.com/search?tbm=vid&q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://news.ycombinator.com/favicon.ico",
+ "name": "Hacker News",
+ "triggers": [
+ "hn",
+ "hackernews",
+ "yc"
+ ],
+ "regions": {
+ "default": "https://hn.algolia.com/?query={{{term}}}&sort=byPopularity&prefix&page=0&dateRange=all&type=story"
+ }
+ },
+ {
+ "favicon": "http://www.hulu.com/favicon.ico",
+ "name": "Hulu",
+ "triggers": [
+ "hulu"
+ ],
+ "regions": {
+ "default": "https://www.hulu.com/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://instagram.com/favicon.ico",
+ "name": "Instagram",
+ "triggers": [
+ "instagram",
+ "ig",
+ "insta"
+ ],
+ "regions": {
+ "default": "https://www.instagram.com/explore/tags/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://archive.org/favicon.ico",
+ "name": "Internet Archive",
+ "triggers": [
+ "ia",
+ "archive",
+ "iarchive",
+ "archiveweb"
+ ],
+ "regions": {
+ "default": "https://archive.org/search.php?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://jqueryui.com/jquery-wp-content/themes/jqueryui.com/i/favicon.ico",
+ "name": "jQuery UI",
+ "triggers": [
+ "jqu",
+ "jqui",
+ "jqueryui"
+ ],
+ "regions": {
+ "default": "https://jqueryui.com/?s={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.themoviedb.org/favicon.ico",
+ "name": "Movie DB",
+ "triggers": [
+ "moviedb"
+ ],
+ "regions": {
+ "default": "https://www.themoviedb.org/search?query={{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.verywellfit.com/favicon.ico",
+ "name": "VeryWellFit",
+ "triggers": [
+ "cals",
+ "verywellfit"
+ ],
+ "regions": {
+ "default": "https://www.verywellfit.com/search?q={{{term}}}"
+ }
+ },
+ {
+ "favicon": "http://online.wsj.com/favicon.ico",
+ "name": "The Wall Street Journal",
+ "triggers": [
+ "wsj",
+ "wallstreetjournal"
+ ],
+ "regions": {
+ "default": "https://www.wsj.com/search/term.html?KEYWORDS={{{term}}}&isAdvanced=true&daysback=90d&andor=AND&sort=date-desc&source=wsjarticle,wsjblogs,wsjvideo,sitesearch,press,newswire"
+ }
+ },
+ {
+ "favicon": "https://en.wikipedia.org/favicon.ico",
+ "functions": [
+ "wikipediaCanonical"
+ ],
+ "name": "Wikipedia",
+ "triggers": [
+ "w",
+ "wikipedia",
+ "wiki",
+ "encyclopedia",
+ "wen"
+ ],
+ "regions": {
+ "de": "https://de.wikipedia.org/wiki/{{{term}}}",
+ "default": "https://en.wikipedia.org/wiki/{{{term}}}",
+ "es": "https://es.wikipedia.org/wiki/{{{term}}}",
+ "fr": "https://fr.wikipedia.org/wiki/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yahoo.com/favicon.ico",
+ "name": "Yahoo Finance Charts",
+ "triggers": [
+ "yfc"
+ ],
+ "regions": {
+ "default": "https://finance.yahoo.com/chart/{{{term}}}"
+ }
+ },
+ {
+ "favicon": "https://www.yahoo.com/favicon.ico",
+ "name": "Yahoo Finance Profile",
+ "triggers": [
+ "yfp"
+ ],
+ "regions": {
+ "default": "https://finance.yahoo.com/quote/{{{term}}}/profile"
+ }
+ },
+ {
+ "favicon": "https://www.yahoo.com/favicon.ico",
+ "name": "Yahoo Finance Stats",
+ "triggers": [
+ "yfs"
+ ],
+ "regions": {
+ "default": "https://finance.yahoo.com/quote/{{{term}}}/key-statistics"
+ }
+ }
+ ]
+} \ No newline at end of file
diff --git a/searx/external_bang.py b/searx/external_bang.py
new file mode 100644
index 000000000..f8b9c44d3
--- /dev/null
+++ b/searx/external_bang.py
@@ -0,0 +1,43 @@
+import json
+from os.path import join
+
+from searx import searx_dir
+
+# bangs data coming from the following url convert to json with
+# https://raw.githubusercontent.com/jivesearch/jivesearch/master/bangs/bangs.toml
+# https://pseitz.github.io/toml-to-json-online-converter/
+# NOTE only use the get_bang_url
+
+bangs_data = {}
+with open(join(searx_dir, 'data/bangs.json')) as json_file:
+ for bang in json.load(json_file)['bang']:
+ for trigger in bang["triggers"]:
+ bangs_data[trigger] = {x: y for x, y in bang.items() if x != "triggers"}
+
+
+def get_bang_url(search_query):
+ """
+ Redirects if the user supplied a correct bang search.
+ :param search_query: This is a search_query object which contains preferences and the submitted queries.
+ :return: None if the bang was invalid, else a string of the redirect url.
+ """
+
+ if search_query.external_bang:
+ query = search_query.query.decode('utf-8', 'ignore')
+ bang = _get_bang(search_query.external_bang)
+
+ if bang and query:
+ # TODO add region support.
+ bang_url = bang["regions"]["default"]
+
+ return bang_url.replace("{{{term}}}", query)
+ return None
+
+
+def _get_bang(user_bang):
+ """
+ Searches if the supplied user bang is available. Returns None if not found.
+ :param user_bang: The parsed user bang. For example yt
+ :return: Returns a dict with bangs data (check bangs_data.json for the structure)
+ """
+ return bangs_data.get(user_bang)
diff --git a/searx/query.py b/searx/query.py
index 79afa0245..e8b57d4ca 100644
--- a/searx/query.py
+++ b/searx/query.py
@@ -44,10 +44,11 @@ class RawTextQuery(object):
self.engines = []
self.languages = []
self.timeout_limit = None
+ self.external_bang = None
self.specific = False
# parse query, if tags are set, which
- # change the serch engine or search-language
+ # change the search engine or search-language
def parse_query(self):
self.query_parts = []
@@ -120,6 +121,11 @@ class RawTextQuery(object):
self.languages.append(lang)
parse_next = True
+ # external bang
+ if query_part[0:2] == "!!":
+ self.external_bang = query_part[2:]
+ parse_next = True
+ continue
# this force a engine or category
if query_part[0] == '!' or query_part[0] == '?':
prefix = query_part[1:].replace('-', ' ').replace('_', ' ')
@@ -178,7 +184,7 @@ class SearchQuery(object):
"""container for all the search parameters (query, language, etc...)"""
def __init__(self, query, engines, categories, lang, safesearch, pageno, time_range,
- timeout_limit=None, preferences=None):
+ timeout_limit=None, preferences=None, external_bang=None):
self.query = query.encode('utf-8')
self.engines = engines
self.categories = categories
@@ -188,6 +194,7 @@ class SearchQuery(object):
self.time_range = None if time_range in ('', 'None', None) else time_range
self.timeout_limit = timeout_limit
self.preferences = preferences
+ self.external_bang = external_bang
def __str__(self):
return str(self.query) + ";" + str(self.engines)
diff --git a/searx/results.py b/searx/results.py
index 17db33aa4..4fed58e55 100644
--- a/searx/results.py
+++ b/searx/results.py
@@ -138,6 +138,7 @@ class ResultContainer(object):
self.paging = False
self.unresponsive_engines = set()
self.timings = []
+ self.redirect_url = None
def extend(self, engine_name, results):
for result in list(results):
diff --git a/searx/search.py b/searx/search.py
index 661add7ca..24695083c 100644
--- a/searx/search.py
+++ b/searx/search.py
@@ -20,6 +20,8 @@ import sys
import threading
from time import time
from uuid import uuid4
+
+import six
from flask_babel import gettext
import requests.exceptions
import searx.poolrequests as requests_lib
@@ -27,6 +29,7 @@ from searx.engines import (
categories, engines, settings
)
from searx.answerers import ask
+from searx.external_bang import get_bang_url
from searx.utils import gen_useragent
from searx.query import RawTextQuery, SearchQuery, VALID_LANGUAGE_CODE
from searx.results import ResultContainer
@@ -54,6 +57,7 @@ else:
else:
logger.critical('outgoing.max_request_timeout if defined has to be float')
from sys import exit
+
exit(1)
@@ -397,15 +401,16 @@ def get_search_query_from_webapp(preferences, form):
if (engine.name, categ) not in disabled_engines)
query_engines = deduplicate_query_engines(query_engines)
+ external_bang = raw_text_query.external_bang
return (SearchQuery(query, query_engines, query_categories,
query_lang, query_safesearch, query_pageno,
- query_time_range, query_timeout, preferences),
+ query_time_range, query_timeout, preferences,
+ external_bang=external_bang),
raw_text_query)
class Search(object):
-
"""Search information container"""
def __init__(self, search_query):
@@ -419,6 +424,14 @@ class Search(object):
def search(self):
global number_of_searches
+ # Check if there is a external bang. After that we can stop because the search will terminate.
+ if self.search_query.external_bang:
+ self.result_container.redirect_url = get_bang_url(self.search_query)
+
+ # This means there was a valid bang and the
+ # rest of the search does not need to be continued
+ if isinstance(self.result_container.redirect_url, six.string_types):
+ return self.result_container
# start time
start_time = time()
@@ -521,7 +534,6 @@ class Search(object):
class SearchWithPlugins(Search):
-
"""Similar to the Search class but call the plugins."""
def __init__(self, search_query, ordered_plugin_list, request):
diff --git a/searx/webapp.py b/searx/webapp.py
index e1b6bea1c..5d9614789 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -575,7 +575,9 @@ def index():
search_query, raw_text_query = get_search_query_from_webapp(request.preferences, request.form)
# search = Search(search_query) # without plugins
search = SearchWithPlugins(search_query, request.user_plugins, request)
+
result_container = search.search()
+
except Exception as e:
# log exception
logger.exception('search error')
@@ -592,6 +594,10 @@ def index():
if number_of_results < result_container.results_length():
number_of_results = 0
+ # checkin for a external bang
+ if result_container.redirect_url:
+ return redirect(result_container.redirect_url)
+
# UI
advanced_search = request.form.get('advanced_search', None)
@@ -665,6 +671,7 @@ def index():
cont_disp = 'attachment;Filename=searx_-_{0}.csv'.format(search_query.query.decode('utf-8'))
response.headers.add('Content-Disposition', cont_disp)
return response
+
elif output_format == 'rss':
response_rss = render(
'opensearch_response_rss.xml',