prepopulated_engines.json 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. // This file is used during build to generate prepopulated_engines.h/cc.
  5. // For more details see tools/json_to_struct/json_to_struct.py.
  6. // Engine definitions. See prepopulated_engines_schema.json for the field
  7. // definitions.
  8. // NOTES:
  9. // - CHANGE THE BELOW NUMBERS IF YOU ADD A NEW ENGINE; ID conflicts = bad!
  10. // - Make sure you update the int_variables below as described in comments.
  11. // - IDs > 1000 are reserved for distribution custom engines.
  12. // - NOTIFY the Chrome Webstore team if you add/delete a search engine or
  13. // change domain of an existing one (send email to webstore-eng@google.com).
  14. // They need to know the mapping between an engine's "id" and its URLs.
  15. // - Use HTTPS URLs when adding new search engines or adding URLs to existing
  16. // ones. It's not the 90s anymore.
  17. {
  18. "int_variables": {
  19. // When adding new engines, increment this number and use it as the new
  20. // max ID. This is used by UMA stats and must be updated to include the full
  21. // range or else not all engines will be counted in stats.
  22. "kMaxPrepopulatedEngineID": 102,
  23. // Increment this if you change the data in ways that mean users with
  24. // existing data should get a new version. Otherwise, existing data may
  25. // continue to be used and updates made here will not always appear.
  26. "kCurrentDataVersion": 132
  27. },
  28. // The following engines are included in country lists and are added to the
  29. // list of search engines on the first run depending on user's country.
  30. "elements": {
  31. "ask": {
  32. "name": "Ask",
  33. "keyword": "ask.com",
  34. "favicon_url": "https://sp.ask.com/sh/i/a16/favicon/favicon.ico",
  35. "search_url": "https://www.ask.com/web?q={searchTerms}",
  36. "suggest_url": "https://lss.sse-iacapps.com/query?q={searchTerms}&li=ff",
  37. "type": "SEARCH_ENGINE_ASK",
  38. "id": 4
  39. },
  40. "baidu": {
  41. "name": "\u767e\u5ea6",
  42. "keyword": "baidu.com",
  43. "favicon_url": "https://www.baidu.com/favicon.ico",
  44. "search_url": "https://www.baidu.com/#ie={inputEncoding}&wd={searchTerms}",
  45. "alternate_urls": [
  46. "https://www.baidu.com/s?ie={inputEncoding}&wd={searchTerms}",
  47. "https://www.baidu.com/s?ie={inputEncoding}&word={searchTerms}",
  48. "https://www.baidu.com/{google:pathWildcard}/s?ie={inputEncoding}&word={searchTerms}"
  49. ],
  50. "suggest_url": "https://suggestion.baidu.com/su?wd={searchTerms}&action=opensearch&ie={inputEncoding}",
  51. "type": "SEARCH_ENGINE_BAIDU",
  52. "id": 21
  53. },
  54. "bing": {
  55. "name": "Bing",
  56. "keyword": "bing.com",
  57. "favicon_url": "https://www.bing.com/sa/simg/bing_p_rr_teal_min.ico",
  58. "search_url": "https://www.bing.com/search?q={searchTerms}&PC=U316&FORM=CHROMN",
  59. "suggest_url": "https://www.bing.com/osjson.aspx?query={searchTerms}&language={language}&PC=U316",
  60. "image_url": "https://www.bing.com/images/detail/search?iss=sbiupload&FORM=CHROMI#enterInsights",
  61. "new_tab_url": "https://www.bing.com/chrome/newtab",
  62. "image_url_post_params": "imageBin={google:imageThumbnailBase64}",
  63. "type": "SEARCH_ENGINE_BING",
  64. "id": 3
  65. },
  66. "coccoc": {
  67. "name": "Cốc Cốc",
  68. "keyword": "coccoc.com",
  69. "favicon_url": "https://coccoc.com/favicon.ico",
  70. "search_url": "https://coccoc.com/search#query={searchTerms}",
  71. "type": "SEARCH_ENGINE_COCCOC",
  72. "id": 91
  73. },
  74. "daum": {
  75. "name": "Daum",
  76. "keyword": "daum.net",
  77. "favicon_url": "https://search.daum.net/favicon.ico",
  78. "search_url": "https://search.daum.net/search?w=tot&DA=JU5&q={searchTerms}",
  79. "suggest_url": "https://suggest.search.daum.net/sushi/opensearch/pc?q={searchTerms}&DA=JU6",
  80. "type": "SEARCH_ENGINE_DAUM",
  81. "id": 68
  82. },
  83. "duckduckgo": {
  84. "name": "DuckDuckGo",
  85. "keyword": "duckduckgo.com",
  86. "favicon_url": "https://duckduckgo.com/favicon.ico",
  87. "search_url": "https://duckduckgo.com/?q={searchTerms}",
  88. "suggest_url": "https://duckduckgo.com/ac/?q={searchTerms}&type=list",
  89. "new_tab_url": "https://duckduckgo.com/chrome_newtab",
  90. "type": "SEARCH_ENGINE_DUCKDUCKGO",
  91. "id": 92
  92. },
  93. "ecosia": {
  94. "name": "Ecosia",
  95. "keyword": "ecosia.org",
  96. "favicon_url": "https://cdn.ecosia.org/assets/images/ico/favicon.ico",
  97. "search_url": "https://www.ecosia.org/search?q={searchTerms}&addon=opensearch",
  98. "suggest_url": "https://ac.ecosia.org/autocomplete?q={searchTerms}&type=list",
  99. "type": "SEARCH_ENGINE_ECOSIA",
  100. "id": 101
  101. },
  102. "google": {
  103. "name": "Google",
  104. "keyword": "google.com",
  105. "favicon_url": "https://www.google.com/images/branding/product/ico/googleg_lodp.ico",
  106. "search_url": "{google:baseURL}search?q={searchTerms}&{google:RLZ}{google:originalQueryForSuggestion}{google:assistedQueryStats}{google:searchboxStats}{google:searchFieldtrialParameter}{google:iOSSearchLanguage}{google:prefetchSource}{google:searchClient}{google:sourceId}{google:contextualSearchVersion}ie={inputEncoding}",
  107. "suggest_url": "{google:baseSuggestURL}search?{google:searchFieldtrialParameter}client={google:suggestClient}&gs_ri={google:suggestRid}&xssi=t&q={searchTerms}&{google:inputType}{google:omniboxFocusType}{google:cursorPosition}{google:currentPageUrl}{google:pageClassification}{google:clientCacheTimeToLive}{google:searchVersion}{google:sessionToken}{google:prefetchQuery}sugkey={google:suggestAPIKeyParameter}",
  108. "image_url": "{google:baseSearchByImageURL}upload",
  109. "contextual_search_url": "{google:baseURL}_/contextualsearch?{google:contextualSearchVersion}{google:contextualSearchContextData}",
  110. "image_url_post_params": "encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight}",
  111. "side_search_param": "sidesearch",
  112. "alternate_urls": [
  113. "{google:baseURL}#q={searchTerms}",
  114. "{google:baseURL}search#q={searchTerms}",
  115. "{google:baseURL}webhp#q={searchTerms}",
  116. "{google:baseURL}s#q={searchTerms}",
  117. "{google:baseURL}s?q={searchTerms}"
  118. ],
  119. "type": "SEARCH_ENGINE_GOOGLE",
  120. "preconnect_to_search_url" : "ALLOWED",
  121. "prefetch_likely_navigations" : "ALLOWED",
  122. "id": 1
  123. },
  124. "mail_ru": {
  125. "name": "@MAIL.RU",
  126. "keyword": "mail.ru",
  127. "favicon_url": "https://go.imgsmail.ru/favicon.ico",
  128. "search_url": "https://go.mail.ru/search?q={searchTerms}&{mailru:referralID}&fr=ch_omnibox",
  129. "alternate_urls": [
  130. "https://go.mail.ru/msearch?q={searchTerms}&{mailru:referralID}"
  131. ],
  132. "new_tab_url": "https://go.mail.ru/chrome/newtab/",
  133. "suggest_url": "https://suggests.go.mail.ru/chrome?q={searchTerms}",
  134. "type": "SEARCH_ENGINE_MAILRU",
  135. "id": 83
  136. },
  137. "naver": {
  138. "name": "\ub124\uc774\ubc84",
  139. "keyword": "naver.com",
  140. "favicon_url": "https://ssl.pstatic.net/sstatic/search/favicon/favicon_140327.ico",
  141. "search_url": "https://search.naver.com/search.naver?ie={inputEncoding}&query={searchTerms}&sm=chr_hty",
  142. "suggest_url": "https://ac.search.naver.com/nx/ac?of=os&ie={inputEncoding}&q={searchTerms}&oe={outputEncoding}",
  143. "type": "SEARCH_ENGINE_NAVER",
  144. "id": 67
  145. },
  146. "petal_search": {
  147. "name": "Petal Search",
  148. "keyword": "petalsearch.com",
  149. "favicon_url": "https://search-static-dre.dbankcdn.com/pc/v1/favicon.ico",
  150. "search_url": "https://petalsearch.com/search?query={searchTerms}",
  151. "type": "SEARCH_ENGINE_PETALSEARCH",
  152. "id": 102
  153. },
  154. "qwant": {
  155. "name": "Qwant",
  156. "keyword": "qwant.com",
  157. "favicon_url": "https://www.qwant.com/favicon.ico",
  158. "search_url": "https://www.qwant.com/?q={searchTerms}&client=opensearch",
  159. "suggest_url": "https://api.qwant.com/api/suggest/?q={searchTerms}&client=opensearch",
  160. "type": "SEARCH_ENGINE_QWANT",
  161. "id": 94
  162. },
  163. "seznam_cz": {
  164. "name": "Seznam",
  165. "keyword": "seznam.cz",
  166. "favicon_url": "https://search.seznam.cz/favicon.ico",
  167. "search_url": "https://search.seznam.cz/?q={searchTerms}",
  168. "suggest_url": "https://suggest.seznam.cz/fulltext_ff?phrase={searchTerms}",
  169. "type": "SEARCH_ENGINE_SEZNAM",
  170. "id": 25
  171. },
  172. "seznam_sk": {
  173. "name": "Seznam",
  174. "keyword": "seznam.sk",
  175. "favicon_url": "https://search.seznam.sk/favicon.ico",
  176. "search_url": "https://search.seznam.sk/?q={searchTerms}",
  177. "suggest_url": "https://suggest.seznam.sk/fulltext_ff?phrase={searchTerms}",
  178. "type": "SEARCH_ENGINE_SEZNAM",
  179. "id": 25
  180. },
  181. "so_360": {
  182. "name": "360",
  183. "keyword": "so.com",
  184. "favicon_url": "https://www.so.com/favicon.ico",
  185. "search_url": "https://www.so.com/s?ie={inputEncoding}&q={searchTerms}",
  186. "alternate_urls": [
  187. "https://m.so.com/s?ie={inputEncoding}&q={searchTerms}",
  188. "https://m.so.com/index.php?ie={inputEncoding}&q={searchTerms}"
  189. ],
  190. "suggest_url": "https://sug.so.360.cn/suggest?encodein={inputEncoding}&encodeout={outputEncoding}&format=opensearch&word={searchTerms}",
  191. "type": "SEARCH_ENGINE_360",
  192. "id": 88
  193. },
  194. "sogou": {
  195. "name": "\u641c\u72d7",
  196. "keyword": "sogou.com",
  197. "favicon_url": "https://www.sogou.com/images/logo/old/favicon.ico",
  198. "search_url": "https://www.sogou.com/web?ie={inputEncoding}&query={searchTerms}",
  199. "alternate_urls": [
  200. "https://m.sogou.com/web/{google:pathWildcard}?ie={inputEncoding}&keyword={searchTerms}"
  201. ],
  202. "suggest_url": "https://sugg.sogou.com/sugg/ajaj_json.jsp?type=addrbar&key={searchTerms}&ie={inputEncoding}&from=google",
  203. "type": "SEARCH_ENGINE_SOGOU",
  204. "id": 56
  205. },
  206. "yahoo": {
  207. "name": "Yahoo!",
  208. "keyword": "yahoo.com",
  209. "favicon_url": "https://search.yahoo.com/favicon.ico",
  210. "search_url": "https://search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas_sfp&p={searchTerms}",
  211. "suggest_url": "https://search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas_sfp&command={searchTerms}",
  212. "new_tab_url": "https://search.yahoo.com?fr=crmas_sfp",
  213. "type": "SEARCH_ENGINE_YAHOO",
  214. "id": 2
  215. },
  216. "yahoo_ar": {
  217. "name": "Yahoo! Argentina",
  218. "keyword": "ar.yahoo.com",
  219. "favicon_url": "https://ar.search.yahoo.com/favicon.ico",
  220. "search_url": "https://ar.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  221. "suggest_url": "https://ar.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  222. "type": "SEARCH_ENGINE_YAHOO",
  223. "id": 2
  224. },
  225. "yahoo_at": {
  226. "name": "Yahoo! \u00d6sterreich",
  227. "keyword": "at.yahoo.com",
  228. "favicon_url": "https://at.search.yahoo.com/favicon.ico",
  229. "search_url": "https://at.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  230. "suggest_url": "https://at.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  231. "type": "SEARCH_ENGINE_YAHOO",
  232. "id": 2
  233. },
  234. "yahoo_au": {
  235. "name": "Yahoo!7",
  236. "keyword": "au.yahoo.com",
  237. "favicon_url": "https://au.search.yahoo.com/favicon.ico",
  238. "search_url": "https://au.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  239. "suggest_url": "https://au.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  240. "type": "SEARCH_ENGINE_YAHOO",
  241. "id": 2
  242. },
  243. "yahoo_br": {
  244. "name": "Yahoo! Brasil",
  245. "keyword": "br.yahoo.com",
  246. "favicon_url": "https://br.search.yahoo.com/favicon.ico",
  247. "search_url": "https://br.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  248. "suggest_url": "https://br.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  249. "type": "SEARCH_ENGINE_YAHOO",
  250. "id": 2
  251. },
  252. "yahoo_ca": {
  253. "name": "Yahoo! Canada",
  254. "keyword": "ca.yahoo.com",
  255. "favicon_url": "https://ca.search.yahoo.com/favicon.ico",
  256. "search_url": "https://ca.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  257. "suggest_url": "https://ca.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  258. "type": "SEARCH_ENGINE_YAHOO",
  259. "id": 2
  260. },
  261. "yahoo_ch": {
  262. "name": "Yahoo! Schweiz",
  263. "keyword": "ch.yahoo.com",
  264. "favicon_url": "https://ch.search.yahoo.com/favicon.ico",
  265. "search_url": "https://ch.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  266. "suggest_url": "https://ch.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  267. "type": "SEARCH_ENGINE_YAHOO",
  268. "id": 2
  269. },
  270. "yahoo_cl": {
  271. "name": "Yahoo! Chile",
  272. "keyword": "cl.yahoo.com",
  273. "favicon_url": "https://cl.search.yahoo.com/favicon.ico",
  274. "search_url": "https://cl.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  275. "suggest_url": "https://cl.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  276. "type": "SEARCH_ENGINE_YAHOO",
  277. "id": 2
  278. },
  279. "yahoo_co": {
  280. "name": "Yahoo! Colombia",
  281. "keyword": "co.yahoo.com",
  282. "favicon_url": "https://co.search.yahoo.com/favicon.ico",
  283. "search_url": "https://co.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  284. "suggest_url": "https://co.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  285. "type": "SEARCH_ENGINE_YAHOO",
  286. "id": 2
  287. },
  288. "yahoo_de": {
  289. "name": "Yahoo! Deutschland",
  290. "keyword": "de.yahoo.com",
  291. "favicon_url": "https://de.search.yahoo.com/favicon.ico",
  292. "search_url": "https://de.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  293. "suggest_url": "https://de.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  294. "type": "SEARCH_ENGINE_YAHOO",
  295. "id": 2
  296. },
  297. // For regional Yahoo variants without a region-specific suggestion service,
  298. // suggestion is disabled. For some of them, we might consider using one of
  299. // the other language/country URLs as a fallback.
  300. "yahoo_dk": {
  301. "name": "Yahoo! Danmark",
  302. "keyword": "dk.yahoo.com",
  303. "favicon_url": "https://dk.search.yahoo.com/favicon.ico",
  304. "search_url": "https://dk.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  305. "type": "SEARCH_ENGINE_YAHOO",
  306. "id": 2
  307. },
  308. "yahoo_es": {
  309. "name": "Yahoo! Espa\u00f1a",
  310. "keyword": "es.yahoo.com",
  311. "favicon_url": "https://es.search.yahoo.com/favicon.ico",
  312. "search_url": "https://es.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  313. "suggest_url": "https://es.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  314. "type": "SEARCH_ENGINE_YAHOO",
  315. "id": 2
  316. },
  317. "yahoo_fi": {
  318. "name": "Yahoo! Suomi",
  319. "keyword": "fi.yahoo.com",
  320. "favicon_url": "https://fi.search.yahoo.com/favicon.ico",
  321. "search_url": "https://fi.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  322. "type": "SEARCH_ENGINE_YAHOO",
  323. "id": 2
  324. },
  325. "yahoo_fr": {
  326. "name": "Yahoo! France",
  327. "keyword": "fr.yahoo.com",
  328. "favicon_url": "https://fr.search.yahoo.com/favicon.ico",
  329. "search_url": "https://fr.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  330. "suggest_url": "https://fr.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  331. "type": "SEARCH_ENGINE_YAHOO",
  332. "id": 2
  333. },
  334. "yahoo_hk": {
  335. "name": "Yahoo! Hong Kong",
  336. "keyword": "hk.yahoo.com",
  337. "favicon_url": "https://hk.search.yahoo.com/favicon.ico",
  338. "search_url": "https://hk.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  339. "suggest_url": "https://hk.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  340. "type": "SEARCH_ENGINE_YAHOO",
  341. "id": 2
  342. },
  343. "yahoo_id": {
  344. "name": "Yahoo! Indonesia",
  345. "keyword": "id.yahoo.com",
  346. "favicon_url": "https://id.search.yahoo.com/favicon.ico",
  347. "search_url": "https://id.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  348. "suggest_url": "https://id.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  349. "type": "SEARCH_ENGINE_YAHOO",
  350. "id": 2
  351. },
  352. "yahoo_in": {
  353. "name": "Yahoo! India",
  354. "keyword": "in.yahoo.com",
  355. "favicon_url": "https://in.search.yahoo.com/favicon.ico",
  356. "search_url": "https://in.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  357. "suggest_url": "https://in.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  358. "type": "SEARCH_ENGINE_YAHOO",
  359. "id": 2
  360. },
  361. "yahoo_jp": {
  362. "name": "Yahoo! JAPAN",
  363. "keyword": "yahoo.co.jp",
  364. "favicon_url": "https://search.yahoo.co.jp/favicon.ico",
  365. "search_url": "https://search.yahoo.co.jp/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  366. "suggest_url": "https://search.yahooapis.jp/AssistSearchService/V2/webassistSearch?p={searchTerms}&appid=oQsoxcyxg66enp0TYoirkKoryq6rF8bK76mW0KYxZ0v0WPLtn.Lix6wy8F_LwGWHUII-&output=fxjson&fr=crmas",
  367. "type": "SEARCH_ENGINE_YAHOO",
  368. "id": 2
  369. },
  370. "yahoo_mx": {
  371. "name": "Yahoo! M\u00e9xico",
  372. "keyword": "mx.yahoo.com",
  373. "favicon_url": "https://mx.search.yahoo.com/favicon.ico",
  374. "search_url": "https://mx.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  375. "suggest_url": "https://mx.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  376. "type": "SEARCH_ENGINE_YAHOO",
  377. "id": 2
  378. },
  379. "yahoo_my": {
  380. "name": "Yahoo! Malaysia",
  381. "keyword": "malaysia.yahoo.com",
  382. "favicon_url": "https://malaysia.search.yahoo.com/favicon.ico",
  383. "search_url": "https://malaysia.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  384. "suggest_url": "https://malaysia.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  385. "type": "SEARCH_ENGINE_YAHOO",
  386. "id": 2
  387. },
  388. "yahoo_nl": {
  389. "name": "Yahoo! Nederland",
  390. "keyword": "nl.yahoo.com",
  391. "favicon_url": "https://nl.search.yahoo.com/favicon.ico",
  392. "search_url": "https://nl.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  393. "suggest_url": "https://nl.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  394. "type": "SEARCH_ENGINE_YAHOO",
  395. "id": 2
  396. },
  397. "yahoo_nz": {
  398. "name": "Yahoo! New Zealand",
  399. "keyword": "nz.yahoo.com",
  400. "favicon_url": "https://nz.search.yahoo.com/favicon.ico",
  401. "search_url": "https://nz.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  402. "suggest_url": "https://nz.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  403. "type": "SEARCH_ENGINE_YAHOO",
  404. "id": 2
  405. },
  406. "yahoo_pe": {
  407. "name": "Yahoo! Per\u00fa",
  408. "keyword": "pe.yahoo.com",
  409. "favicon_url": "https://pe.search.yahoo.com/favicon.ico",
  410. "search_url": "https://pe.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  411. "suggest_url": "https://pe.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  412. "type": "SEARCH_ENGINE_YAHOO",
  413. "id": 2
  414. },
  415. "yahoo_ph": {
  416. "name": "Yahoo! Philippines",
  417. "keyword": "ph.yahoo.com",
  418. "favicon_url": "https://ph.search.yahoo.com/favicon.ico",
  419. "search_url": "https://ph.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  420. "suggest_url": "https://ph.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  421. "type": "SEARCH_ENGINE_YAHOO",
  422. "id": 2
  423. },
  424. "yahoo_se": {
  425. "name": "Yahoo! Sverige",
  426. "keyword": "se.yahoo.com",
  427. "favicon_url": "https://se.search.yahoo.com/favicon.ico",
  428. "search_url": "https://se.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  429. "type": "SEARCH_ENGINE_YAHOO",
  430. "id": 2
  431. },
  432. "yahoo_sg": {
  433. "name": "Yahoo! Singapore",
  434. "keyword": "sg.yahoo.com",
  435. "favicon_url": "https://sg.search.yahoo.com/favicon.ico",
  436. "search_url": "https://sg.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  437. "suggest_url": "https://sg.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  438. "type": "SEARCH_ENGINE_YAHOO",
  439. "id": 2
  440. },
  441. "yahoo_th": {
  442. "name": "Yahoo! \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22",
  443. "keyword": "th.yahoo.com",
  444. "favicon_url": "https://th.search.yahoo.com/favicon.ico",
  445. "search_url": "https://th.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  446. "suggest_url": "https://th.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  447. "type": "SEARCH_ENGINE_YAHOO",
  448. "id": 2
  449. },
  450. "yahoo_tr": {
  451. "name": "Yahoo! T\u00fcrkiye",
  452. "keyword": "tr.yahoo.com",
  453. "favicon_url": "https://tr.search.yahoo.com/favicon.ico",
  454. "search_url": "https://tr.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  455. "type": "SEARCH_ENGINE_YAHOO",
  456. "id": 2
  457. },
  458. "yahoo_tw": {
  459. "name": "Yahoo!\u5947\u6469",
  460. "keyword": "tw.yahoo.com",
  461. "favicon_url": "https://tw.search.yahoo.com/favicon.ico",
  462. "search_url": "https://tw.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  463. "suggest_url": "https://tw.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  464. "type": "SEARCH_ENGINE_YAHOO",
  465. "id": 2
  466. },
  467. "yahoo_uk": {
  468. "name": "Yahoo! UK & Ireland",
  469. "keyword": "uk.yahoo.com",
  470. "favicon_url": "https://uk.search.yahoo.com/favicon.ico",
  471. "search_url": "https://uk.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  472. "suggest_url": "https://uk.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  473. "type": "SEARCH_ENGINE_YAHOO",
  474. "id": 2
  475. },
  476. "yahoo_ve": {
  477. "name": "Yahoo! Venezuela",
  478. "keyword": "ve.yahoo.com",
  479. "favicon_url": "https://ve.search.yahoo.com/favicon.ico",
  480. "search_url": "https://ve.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  481. "suggest_url": "https://ve.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  482. "type": "SEARCH_ENGINE_YAHOO",
  483. "id": 2
  484. },
  485. "yahoo_vn": {
  486. "name": "Yahoo! Vi\u1ec7t Nam",
  487. "keyword": "vn.yahoo.com",
  488. "favicon_url": "https://vn.search.yahoo.com/favicon.ico",
  489. "search_url": "https://vn.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  490. "suggest_url": "https://vn.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  491. "type": "SEARCH_ENGINE_YAHOO",
  492. "id": 2
  493. },
  494. "yandex_by": {
  495. "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
  496. "keyword": "yandex.by",
  497. "favicon_url": "https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico",
  498. "logo_url": "https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable-xxhdpi/yandex.png",
  499. "search_url": "https://yandex.by/{yandex:searchPath}?text={searchTerms}",
  500. "suggest_url": "https://suggest.yandex.by/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}",
  501. "image_url": "https://yandex.by/images/search/?rpt=imageview",
  502. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  503. "new_tab_url": "https://www.yandex.by/chrome/newtab",
  504. "type": "SEARCH_ENGINE_YANDEX",
  505. "id": 15
  506. },
  507. "yandex_com": {
  508. "name": "Yandex",
  509. "keyword": "yandex.com",
  510. "favicon_url": "https://yastatic.net/lego/_/rBTjd6UOPk5913OSn5ZQVYMTQWQ.ico",
  511. "search_url": "https://yandex.com/search/?text={searchTerms}&from=os&clid=1836588",
  512. "suggest_url": "https://suggest.yandex.com/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}&uil=en&v=3&sn=5",
  513. "image_url": "https://yandex.com/images/search?rpt=imageview",
  514. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  515. "type": "SEARCH_ENGINE_YANDEX",
  516. "id": 15
  517. },
  518. "yandex_kz": {
  519. "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
  520. "keyword": "yandex.kz",
  521. "favicon_url": "https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico",
  522. "logo_url": "https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable-xxhdpi/yandex.png",
  523. "search_url": "https://yandex.kz/{yandex:searchPath}?text={searchTerms}",
  524. "suggest_url": "https://suggest.yandex.kz/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}",
  525. "image_url": "https://yandex.kz/images/search/?rpt=imageview",
  526. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  527. "new_tab_url": "https://www.yandex.kz/chrome/newtab",
  528. "type": "SEARCH_ENGINE_YANDEX",
  529. "id": 15
  530. },
  531. "yandex_ru": {
  532. "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
  533. "keyword": "yandex.ru",
  534. "favicon_url": "https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico",
  535. "logo_url": "https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable-xxhdpi/yandex.png",
  536. "search_url": "https://yandex.ru/{yandex:searchPath}?text={searchTerms}&{yandex:referralID}",
  537. "suggest_url": "https://suggest.yandex.ru/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}",
  538. "image_url": "https://yandex.ru/images/search/?rpt=imageview",
  539. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  540. "new_tab_url": "https://www.yandex.ru/chrome/newtab",
  541. "type": "SEARCH_ENGINE_YANDEX",
  542. "id": 15
  543. },
  544. "yandex_tr": {
  545. "name": "Yandex",
  546. "keyword": "yandex.com.tr",
  547. "favicon_url": "https://yastatic.net/lego/_/rBTjd6UOPk5913OSn5ZQVYMTQWQ.ico",
  548. "search_url": "https://www.yandex.com.tr/{yandex:searchPath}?text={searchTerms}",
  549. "suggest_url": "https://suggest.yandex.com.tr/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}",
  550. "image_url": "https://yandex.com.tr/gorsel/search?rpt=imageview",
  551. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  552. "new_tab_url": "https://www.yandex.com.tr/chrome/newtab",
  553. "type": "SEARCH_ENGINE_YANDEX",
  554. "id": 15
  555. },
  556. "yandex_ua": {
  557. "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
  558. "keyword": "yandex.ua",
  559. "favicon_url": "https://yastatic.net/lego/_/pDu9OWAQKB0s2J9IojKpiS_Eho.ico",
  560. "logo_url": "https://storage.ape.yandex.net/get/browser/Doodles/yandex/drawable-xxhdpi/yandex.png",
  561. "search_url": "https://yandex.ua/{yandex:searchPath}?text={searchTerms}",
  562. "suggest_url": "https://suggest.yandex.ua/suggest-ff.cgi?part={searchTerms}&{google:cursorPosition}",
  563. "image_url": "https://yandex.ua/images/search/?rpt=imageview",
  564. "image_url_post_params": "upfile={google:imageThumbnail},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight},prg=1",
  565. "new_tab_url": "https://www.yandex.ua/chrome/newtab",
  566. "type": "SEARCH_ENGINE_YANDEX",
  567. "id": 15
  568. },
  569. // UMA-only engines ////////////////////////////////////////////////////////
  570. // The following engines are not included in any of the country lists. They
  571. // are listed in |kAllEngines|, however, so that GetEngineType can find them
  572. // for UMA reporting purposes.
  573. "atlas_cz": {
  574. "name": "Atlas.cz",
  575. "keyword": "atlas.cz",
  576. "favicon_url": "https://searchatlas.centrum.cz/favicon.ico",
  577. "search_url": "https://searchatlas.centrum.cz/?q={searchTerms}",
  578. "alternate_urls": [
  579. "http://searchatlas.centrum.cz/?q={searchTerms}"
  580. ],
  581. "suggest_url": "http://radce.centrum.cz/?q={searchTerms}&of=1",
  582. "type": "SEARCH_ENGINE_ATLAS",
  583. "id": 27
  584. },
  585. "atlas_sk": {
  586. "name": "ATLAS.SK",
  587. "keyword": "atlas.sk",
  588. "favicon_url": "http://static.mediacentrum.sk/katalog/atlas.sk/images/favicon.ico",
  589. "search_url": "https://hladaj.atlas.sk/fulltext/?phrase={searchTerms}",
  590. "alternate_urls": [
  591. "http://hladaj.atlas.sk/fulltext/?phrase={searchTerms}"
  592. ],
  593. "type": "SEARCH_ENGINE_ATLAS",
  594. "id": 27
  595. },
  596. "avg": {
  597. "name": "AVG",
  598. "keyword": "search.avg.com",
  599. "favicon_url": "http://search.avg.com/favicon.ico",
  600. "search_url": "http://search.avg.com/search?q={searchTerms}",
  601. "alternate_urls": [
  602. "http://isearch.avg.com/search?q={searchTerms}",
  603. "http://search.avg.com/route/?q={searchTerms}&lng={language}",
  604. "https://isearch.avg.com/search?q={searchTerms}",
  605. "https://search.avg.com/route/?q={searchTerms}&lng={language}"
  606. ],
  607. "type": "SEARCH_ENGINE_AVG",
  608. "id": 50
  609. },
  610. "babylon": {
  611. "name": "Babylon",
  612. "keyword": "search.babylon.com",
  613. "favicon_url": "http://search.babylon.com/favicon.ico",
  614. "search_url": "http://search.babylon.com/home?q={searchTerms}",
  615. "alternate_urls": [
  616. "http://search.babylon.com/?q={searchTerms}"
  617. ],
  618. "type": "SEARCH_ENGINE_BABYLON",
  619. "id": 64
  620. },
  621. "conduit": {
  622. "name": "Conduit",
  623. "keyword": "conduit.com",
  624. "favicon_url": "http://www.conduit.com/favicon.ico",
  625. "search_url": "http://www.conduit.com/search?q={searchTerms}&ie={inputEncoding}&cx=010301873083402539744%3Anxaq5wgrtuo&cof=forid%3A11",
  626. "alternate_urls": [
  627. "http://search.conduit.com/Results.aspx?q={searchTerms}"
  628. ],
  629. "type": "SEARCH_ENGINE_CONDUIT",
  630. "id": 36
  631. },
  632. "delfi_lt": {
  633. "name": "DELFI",
  634. "keyword": "delfi.lt",
  635. "favicon_url": "https://www.delfi.lt/favicon.ico",
  636. "search_url": "https://www.delfi.lt/paieska/?q={searchTerms}",
  637. "alternate_urls": [
  638. "http://www.delfi.lt/paieska/?q={searchTerms}"
  639. ],
  640. "type": "SEARCH_ENGINE_DELFI",
  641. "id": 45
  642. },
  643. "delfi_lv": {
  644. "name": "DELFI",
  645. "keyword": "delfi.lv",
  646. "favicon_url": "http://g1.delphi.lv/favicon.ico",
  647. "search_url": "http://www.delfi.lv/search_all/?ie={inputEncoding}&q={searchTerms}&lang={language}&cx=partner-pub-7754285690273419%3A1507605038&cof=FORID%3A10",
  648. "type": "SEARCH_ENGINE_DELFI",
  649. "id": 45
  650. },
  651. "delta": {
  652. "name": "Delta",
  653. "keyword": "delta-search.com",
  654. "favicon_url": "http://www.delta-search.com/favicon.ico",
  655. "search_url": "http://www.delta-search.com/home?q={searchTerms}",
  656. "alternate_urls": [
  657. "http://www.delta-search.com/?q={searchTerms}",
  658. "http://www1.delta-search.com/home?q={searchTerms}",
  659. "http://www1.delta-search.com/?q={searchTerms}",
  660. "http://www2.delta-search.com/home?q={searchTerms}",
  661. "http://www2.delta-search.com/?q={searchTerms}",
  662. "http://www.search.delta-search.com/home?q={searchTerms}",
  663. "http://www.search.delta-search.com/?q={searchTerms}",
  664. "http://www.yhs.delta-search.com/home?q={searchTerms}",
  665. "http://www.yhs.delta-search.com/?q={searchTerms}",
  666. "http://mixidj.delta-search.com/home?q={searchTerms}",
  667. "http://mixidj.delta-search.com/?q={searchTerms}",
  668. "http://www.search.delta-search.com/home?q={searchTerms}",
  669. "http://www.search.delta-search.com/?q={searchTerms}"
  670. ],
  671. "type": "SEARCH_ENGINE_DELTA",
  672. "id": 66
  673. },
  674. "funmoods": {
  675. "name": "Funmoods",
  676. "keyword": "searchfunmoods.com",
  677. "favicon_url": "http://searchfunmoods.com/favicon.ico",
  678. "search_url": "http://searchfunmoods.com/results.php?q={searchTerms}",
  679. "type": "SEARCH_ENGINE_FUNMOODS",
  680. "id": 60
  681. },
  682. "givero": {
  683. "name": "Givero",
  684. "keyword": "givero.com",
  685. "favicon_url": "https://www.givero.com/favicon.ico",
  686. "search_url": "https://www.givero.com/search?q={searchTerms}",
  687. "suggest_url": "https://www.givero.com/suggest?q={searchTerms}",
  688. "type": "SEARCH_ENGINE_GIVERO",
  689. "id": 95
  690. },
  691. "gmx": {
  692. "name": "GMX Search",
  693. "keyword": "search.gmx.com",
  694. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  695. "search_url": "https://search.gmx.com/web/result?q={searchTerms}&sp=b",
  696. "suggest_url": "https://suggestplugin.gmx.com/s?q={searchTerms}&brand=gmxcom&enc={inputEncoding}&sp=b",
  697. "type": "SEARCH_ENGINE_GMX",
  698. "id": 96
  699. },
  700. "gmx_at": {
  701. "name": "GMX Suche",
  702. "keyword": "suche.gmx.at",
  703. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  704. "search_url": "https://suche.gmx.at/web/result?q={searchTerms}&sp=b",
  705. "suggest_url": "https://suggestplugin.gmx.at/s?q={searchTerms}&brand=gmxat&enc={inputEncoding}&sp=b",
  706. "type": "SEARCH_ENGINE_GMX",
  707. "id": 96
  708. },
  709. "gmx_de": {
  710. "name": "GMX Suche",
  711. "keyword": "suche.gmx.net",
  712. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  713. "search_url": "https://suche.gmx.net/web/result?q={searchTerms}&sp=b",
  714. "suggest_url": "https://suggestplugin.gmx.net/s?q={searchTerms}&brand=gmx&enc={inputEncoding}&sp=b",
  715. "type": "SEARCH_ENGINE_GMX",
  716. "id": 96
  717. },
  718. "gmx_es": {
  719. "name": "GMX Search",
  720. "keyword": "search.gmx.es",
  721. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  722. "search_url": "https://search.gmx.es/web/result?q={searchTerms}&sp=b",
  723. "suggest_url": "https://suggestplugin.gmx.es/s?q={searchTerms}&brand=gmxes&enc={inputEncoding}&sp=b",
  724. "type": "SEARCH_ENGINE_GMX",
  725. "id": 96
  726. },
  727. "gmx_fr": {
  728. "name": "GMX Search",
  729. "keyword": "search.gmx.fr",
  730. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  731. "search_url": "https://search.gmx.fr/web/result?q={searchTerms}&sp=b",
  732. "suggest_url": "https://suggestplugin.gmx.fr/s?q={searchTerms}&brand=gmxfr&enc={inputEncoding}&sp=b",
  733. "type": "SEARCH_ENGINE_GMX",
  734. "id": 96
  735. },
  736. "gmx_gb": {
  737. "name": "GMX Search",
  738. "keyword": "search.gmx.co.uk",
  739. "favicon_url": "https://dl.gmx.com/apps/favicon.ico",
  740. "search_url": "https://search.gmx.co.uk/web/result?q={searchTerms}&sp=b",
  741. "suggest_url": "https://suggestplugin.gmx.co.uk/s?q={searchTerms}&brand=gmxcouk&enc={inputEncoding}&sp=b",
  742. "type": "SEARCH_ENGINE_GMX",
  743. "id": 96
  744. },
  745. "goo": {
  746. "name": "goo",
  747. "keyword": "search.goo.ne.jp",
  748. "favicon_url": "https://search.goo.ne.jp/cdn/common/img/favicon.ico",
  749. "search_url": "https://search.goo.ne.jp/web.jsp?MT={searchTerms}&IE={inputEncoding}",
  750. "suggest_url": "https://search.goo.ne.jp/sgt.jsp?MT={searchTerms}&CL=plugin&FM=json&IE={inputEncoding}",
  751. "alternate_urls": [
  752. "http://search.goo.ne.jp/web.jsp?MT={searchTerms}&IE={inputEncoding}",
  753. "http://search.goo.ne.jp/sgt.jsp?MT={searchTerms}&CL=plugin&FM=json&IE={inputEncoding}"
  754. ],
  755. "encoding": "EUC-JP",
  756. "type": "SEARCH_ENGINE_GOO",
  757. "id": 23
  758. },
  759. "imesh": {
  760. "name": "IMesh",
  761. "keyword": "search.imesh.net",
  762. "favicon_url": "http://search.imesh.net/favicon.ico",
  763. "search_url": "http://search.imesh.net/music?hl={language}&si={searchTerms}",
  764. "type": "SEARCH_ENGINE_IMESH",
  765. "id": 81
  766. },
  767. "iminent": {
  768. "name": "SearchTheWeb",
  769. "keyword": "iminent.com",
  770. "favicon_url": "http://search.iminent.com/Shared/Images/favicon_gl.ico",
  771. "search_url": "http://search.iminent.com/?q={searchTerms}",
  772. "alternate_urls": [
  773. "http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Default.aspx#q={searchTerms}",
  774. "http://search.iminent.com/SearchTheWeb/v6/1033/homepage/Result.aspx#q={searchTerms}",
  775. "http://start.iminent.com/?q={searchTerms}",
  776. "http://start.iminent.com/StartWeb/1033/homepage/#q={searchTerms}"
  777. ],
  778. "type": "SEARCH_ENGINE_IMINENT",
  779. "id": 79
  780. },
  781. "in": {
  782. "name": "in.gr",
  783. "keyword": "in.gr",
  784. "favicon_url": "http://find.in.gr/Themes/1/Default/Media/Layout/icon_in.png",
  785. "search_url": "http://find.in.gr/?q={searchTerms}&ie={inputEncoding}&cx=partner-pub-3451081775397713%3Aklnvxp4nycj&cof=FORID%3A9",
  786. "type": "SEARCH_ENGINE_IN",
  787. "id": 54
  788. },
  789. "incredibar": {
  790. "name": "MyStart",
  791. "keyword": "mystart.incredibar.com",
  792. "favicon_url": "http://search.incredibar.com/favicon.ico",
  793. "search_url": "http://search.incredibar.com/search.php?q={searchTerms}",
  794. "alternate_urls": [
  795. "http://search.incredibar.com/?q={searchTerms}",
  796. "http://mystart.incredibar.com/?search={searchTerms}"
  797. ],
  798. "type": "SEARCH_ENGINE_INCREDIBAR",
  799. "id": 74
  800. },
  801. "info_com": {
  802. "name": "Info.com",
  803. "keyword": "info.com",
  804. "favicon_url": "https://www.info.com/static/www.info.com/favicon.ico",
  805. "search_url": "https://www.info.com/serp?q={searchTerms}&segment=info.0472",
  806. "type": "SEARCH_ENGINE_INFO_COM",
  807. "id": 97
  808. },
  809. "libero": {
  810. "name": "Libero",
  811. "keyword": "libero.it",
  812. "favicon_url": "http://ms1.iol.it/graph_hf/v.8.3.04/themes/default/img/favicon.ico",
  813. "search_url": "http://arianna.libero.it/search/abin/integrata.cgi?query={searchTerms}",
  814. "encoding": "ISO-8859-1",
  815. "type": "SEARCH_ENGINE_LIBERO",
  816. "id": 63
  817. },
  818. "metager_de": {
  819. "name": "MetaGer",
  820. "keyword": "metager.de",
  821. "favicon_url": "https://metager.de/favicon.ico",
  822. "search_url": "https://metager.de/meta/meta.ger3?eingabe={searchTerms}",
  823. "type": "SEARCH_ENGINE_METAGER",
  824. "id": 98
  825. },
  826. "metager_gb": {
  827. "name": "MetaGer",
  828. "keyword": "metager.org",
  829. "favicon_url": "https://metager.de/favicon.ico",
  830. "search_url": "https://metager.org/meta/meta.ger3?eingabe={searchTerms}",
  831. "type": "SEARCH_ENGINE_METAGER",
  832. "id": 98
  833. },
  834. "neti": {
  835. "name": "NETI",
  836. "keyword": "neti.ee",
  837. "favicon_url": "http://www.neti.ee/favicon.ico",
  838. "search_url": "http://www.neti.ee/cgi-bin/otsing?query={searchTerms}",
  839. "suggest_url": "http://www.neti.ee/api/suggestOS?suggestQuery={searchTerms}",
  840. "alternate_urls": [
  841. "https://www.neti.ee/cgi-bin/otsing?query={searchTerms}&src=web",
  842. "https://www.neti.ee/api/suggestOS?suggestVersion=1&suggestQuery={searchTerms}"
  843. ],
  844. "encoding": "ISO-8859-1",
  845. "type": "SEARCH_ENGINE_NETI",
  846. "id": 44
  847. },
  848. "nigma": {
  849. "name": "\u041d\u0438\u0433\u043c\u0430",
  850. "keyword": "nigma.ru",
  851. "favicon_url": "http://nigma.ru/themes/nigma/img/favicon.ico",
  852. "search_url": "http://nigma.ru/?s={searchTerms}",
  853. "suggest_url": "http://autocomplete.nigma.ru/complete/query_help.php?suggest=true&q={searchTerms}",
  854. "type": "SEARCH_ENGINE_NIGMA",
  855. "id": 43
  856. },
  857. "oceanhero":{
  858. "name": "OceanHero",
  859. "keyword": "oceanhero.today",
  860. "favicon_url": "https://oceanhero.today/favicon.ico",
  861. "search_url": "https://oceanhero.today/web?q={searchTerms}",
  862. "suggest_url": "https://api.oceanhero.today/suggestions?q={searchTerms}",
  863. "type": "SEARCH_ENGINE_OCEANHERO",
  864. "id": 99
  865. },
  866. "ok": {
  867. "name": "OK.hu",
  868. "keyword": "ok.hu",
  869. "favicon_url": "http://ok.hu/gfx/favicon.ico",
  870. "search_url": "http://ok.hu/katalogus?q={searchTerms}",
  871. "encoding": "ISO-8859-2",
  872. "type": "SEARCH_ENGINE_OK",
  873. "id": 6
  874. },
  875. "privacywall": {
  876. "name": "PrivacyWall",
  877. "keyword": "privacywall.org",
  878. "favicon_url": "https://www.privacywall.org/images/favicon_32x32.ico",
  879. "search_url": "https://www.privacywall.org/search/secure/?q={searchTerms}",
  880. "suggest_url": "https://search.privacywall.org/suggest.php?q={searchTerms}",
  881. "type": "SEARCH_ENGINE_PRIVACYWALL",
  882. "id": 100
  883. },
  884. "rambler": {
  885. "name": "\u0420\u0430\u043c\u0431\u043b\u0435\u0440",
  886. "keyword": "rambler.ru",
  887. "favicon_url": "http://i.rl0.ru/2011/icons/rambler.ico",
  888. "search_url": "http://nova.rambler.ru/search?query={searchTerms}",
  889. "suggest_url": "http://nova.rambler.ru/suggest?v=3&query={searchTerms}",
  890. "alternate_urls": [
  891. "https://nova.rambler.ru/search?query={searchTerms}",
  892. "https://nova.rambler.ru/suggest?v=3&query={searchTerms}"
  893. ],
  894. "type": "SEARCH_ENGINE_RAMBLER",
  895. "id": 16
  896. },
  897. "sapo": {
  898. "name": "SAPO",
  899. "keyword": "sapo.pt",
  900. "favicon_url": "http://imgs.sapo.pt/images/sapo.ico",
  901. "search_url": "http://pesquisa.sapo.pt/?q={searchTerms}",
  902. "suggest_url": "http://pesquisa.sapo.pt/livesapo?q={searchTerms}",
  903. "type": "SEARCH_ENGINE_SAPO",
  904. "id": 77
  905. },
  906. "searchnu": {
  907. "name": "searchnu",
  908. "keyword": "searchnu.com",
  909. "favicon_url": "http://www.searchnu.com/favicon.ico",
  910. "search_url": "http://www.searchnu.com/web?hl={language}&si={searchTerms}",
  911. "type": "SEARCH_ENGINE_SEARCHNU",
  912. "id": 61
  913. },
  914. "search_results": {
  915. "name": "Search-results",
  916. "keyword": "search-results.com",
  917. "favicon_url": "http://ak.apnstatic.com/media/images/favicon_search-results.ico",
  918. "search_url": "http://dts.search-results.com/sr?lng={language}&src=hmp&q={searchTerms}",
  919. "alternate_urls": [
  920. "http://www.search-results.com/web?q={searchTerms}"
  921. ],
  922. "type": "SEARCH_ENGINE_SEARCH_RESULTS",
  923. "id": 78
  924. },
  925. "snapdo": {
  926. "name": "SnapDo",
  927. "keyword": "search.snapdo.com",
  928. "favicon_url": "http://linkurystoragenorthus.blob.core.windows.net/static/favicon.ico",
  929. "search_url": "http://search.snapdo.com/?q={searchTerms}",
  930. "alternate_urls": [
  931. "http://search.snap.do/?q={searchTerms}",
  932. "http://feed.snapdo.com/?q={searchTerms}",
  933. "http://feed.snap.do/?q={searchTerms}"
  934. ],
  935. "type": "SEARCH_ENGINE_SNAPDO",
  936. "id": 70
  937. },
  938. "softonic": {
  939. "name": "softonic",
  940. "keyword": "search.softonic.com",
  941. "favicon_url": "http://search.softonic.com/img/favicon.ico",
  942. "search_url": "http://search.softonic.com/?q={searchTerms}",
  943. "alternate_urls": [
  944. "http://en.softonic.com/s/{searchTerms}",
  945. "http://www.softonic.com/s/{searchTerms}",
  946. "http://www.softonic.com.br/s/{searchTerms}",
  947. "http://buscador.softonic.com/?q={searchTerms}",
  948. "http://nl.softonic.com/s/{searchTerms}",
  949. "https://search.softonic.com/?q={searchTerms}",
  950. "https://en.softonic.com/s/{searchTerms}",
  951. "https://www.softonic.com/s/{searchTerms}",
  952. "https://www.softonic.com.br/s/{searchTerms}",
  953. "https://buscador.softonic.com/?q={searchTerms}",
  954. "https://nl.softonic.com/s/{searchTerms}"
  955. ],
  956. "type": "SEARCH_ENGINE_SOFTONIC",
  957. "id": 80
  958. },
  959. "sweetim": {
  960. "name": "SweetIM",
  961. "keyword": "home.sweetim.com",
  962. "favicon_url": "http://search.sweetim.com/favicon.ico",
  963. "search_url": "http://search.sweetim.com/search.asp?q={searchTerms}&ln={language}",
  964. "type": "SEARCH_ENGINE_SWEETPACKS",
  965. "id": 65
  966. },
  967. "sweetpacks": {
  968. "name": "Sweetpacks",
  969. "keyword": "start.sweetpacks.com",
  970. "favicon_url": "http://start.sweetpacks.com/favicon.ico",
  971. "search_url": "http://start.sweetpacks.com/search.asp?q={searchTerms}&ln={language}",
  972. "alternate_urls": [
  973. "http://start.sweetpacks.com/?q={searchTerms}",
  974. "http://mysearch.sweetpacks.com/?q={searchTerms}"
  975. ],
  976. "type": "SEARCH_ENGINE_SWEETPACKS",
  977. "id": 65
  978. },
  979. "terra_ar": {
  980. "name": "Terra Argentina",
  981. "keyword": "terra.com.ar",
  982. "favicon_url": "http://buscar.terra.com.ar/favicon.ico",
  983. "search_url": "http://buscar.terra.com.ar/Default.aspx?source=Search&ca=s&query={searchTerms}",
  984. "alternate_urls": [
  985. "https://buscador.terra.com.ar/Default.aspx?source=Search&ca=s&query={searchTerms}"
  986. ],
  987. "encoding": "ISO-8859-1",
  988. "type": "SEARCH_ENGINE_TERRA",
  989. "id": 90
  990. },
  991. "terra_es": {
  992. "name": "Terra",
  993. "keyword": "terra.es",
  994. "favicon_url": "http://buscador.terra.es/favicon.ico",
  995. "search_url": "http://buscador.terra.es/Default.aspx?source=Search&ca=s&query={searchTerms}",
  996. "alternate_urls": [
  997. "https://buscador.terra.es/Default.aspx?source=Search&ca=s&query={searchTerms}"
  998. ],
  999. "encoding": "ISO-8859-1",
  1000. "type": "SEARCH_ENGINE_TERRA",
  1001. "id": 90
  1002. },
  1003. "tut": {
  1004. "name": "TUT.BY",
  1005. "keyword": "tut.by",
  1006. "favicon_url": "http://search.tut.by/favicon.ico",
  1007. "search_url": "http://search.tut.by/?ru=1&query={searchTerms}",
  1008. "suggest_url": "http://suggest.yandex.ru/suggest-ff.cgi?part={searchTerms}&limit=10",
  1009. "type": "SEARCH_ENGINE_TUT",
  1010. "id": 17
  1011. },
  1012. "walla": {
  1013. "name": "\u05d5\u05d5\u05d0\u05dc\u05d4!",
  1014. "keyword": "walla.co.il",
  1015. "favicon_url": "http://www.walla.co.il/favicon.ico",
  1016. "search_url": "http://search.walla.co.il/?q={searchTerms}",
  1017. "alternate_urls": [
  1018. "https://search.walla.co.il/?q={searchTerms}"
  1019. ],
  1020. "type": "SEARCH_ENGINE_WALLA",
  1021. "id": 55
  1022. },
  1023. "wp": {
  1024. "name": "Wirtualna Polska",
  1025. "keyword": "wp.pl",
  1026. "favicon_url": "http://i.wp.pl/a/i/stg/500/favicon.ico",
  1027. "search_url": "http://szukaj.wp.pl/szukaj.html?q={searchTerms}",
  1028. "type": "SEARCH_ENGINE_WP",
  1029. "id": 76
  1030. },
  1031. "yahoo_qc": {
  1032. "name": "Yahoo! Qu\u00e9bec",
  1033. "keyword": "qc.yahoo.com",
  1034. "favicon_url": "https://qc.search.yahoo.com/favicon.ico",
  1035. "search_url": "https://qc.search.yahoo.com/search{google:pathWildcard}?ei={inputEncoding}&fr=crmas&p={searchTerms}",
  1036. "suggest_url": "https://qc.search.yahoo.com/sugg/chrome?output=fxjson&appid=crmas&command={searchTerms}",
  1037. "type": "SEARCH_ENGINE_YAHOO",
  1038. "id": 2
  1039. },
  1040. "zoznam": {
  1041. "name": "Zoznam",
  1042. "keyword": "zoznam.sk",
  1043. "favicon_url": "https://www.zoznam.sk/favicon.ico",
  1044. "search_url": "https://www.zoznam.sk/hladaj.fcgi?s={searchTerms}",
  1045. "alternate_urls": [
  1046. "http://www.zoznam.sk/hladaj.fcgi?s={searchTerms}"
  1047. ],
  1048. "encoding": "windows-1250",
  1049. "type": "SEARCH_ENGINE_ZOZNAM",
  1050. "id": 85
  1051. }
  1052. },
  1053. "generate_array": {
  1054. "array_name": "kAllEngines"
  1055. }
  1056. }