Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Replace & with &
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdh committed Aug 2, 2016
1 parent e9ba607 commit 688fa23
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions js/data/searchProviders.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,34 @@ module.exports = { "providers" :
"name" : "Amazon",
"image" : "http://www.amazon.com/favicon.ico",
"search" : "http://www.amazon.com/exec/obidos/external-search/?field-keywords={searchTerms}&mode=blended",
"autocomplete" : "http://completion.amazon.com/search/complete?method=completion&q={searchTerms}&search-alias=aps&client=amazon-search-ui&mkt=1",
"autocomplete" : "http://completion.amazon.com/search/complete?method=completion&q={searchTerms}&search-alias=aps&client=amazon-search-ui&mkt=1",
"shortcut" : "a"
},
{
"name" : "Bing",
"image" : "https://www.bing.com/favicon.ico",
"search" : "https://www.bing.com/search?q={searchTerms}",
"autocomplete" : "http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}&form=OSDJAS",
"autocomplete" : "http://api.bing.com/osjson.aspx?query={searchTerms}&language={language}&form=OSDJAS",
"shortcut" : "b"
},
{
"name" : "DuckDuckGo",
"image" : "https://duckduckgo.com/favicon.ico",
"search" : "https://duckduckgo.com/?q={searchTerms}&t=brave",
"autocomplete" : "https://ac.duckduckgo.com/ac/?q={searchTerms}&type=list",
"search" : "https://duckduckgo.com/?q={searchTerms}&t=brave",
"autocomplete" : "https://ac.duckduckgo.com/ac/?q={searchTerms}&type=list",
"shortcut" : "d"
},
{
"name" : "Google",
"image" : "https://www.google.com/favicon.ico",
"search" : "https://www.google.com/search?q={searchTerms}",
"autocomplete" : "https://suggestqueries.google.com/complete/search?client=chrome&q={searchTerms}",
"autocomplete" : "https://suggestqueries.google.com/complete/search?client=chrome&q={searchTerms}",
"shortcut" : "g"
},
{
"name" : "Twitter",
"image" : "https://twitter.com/favicon.ico",
"search" : "https://twitter.com/search?q={searchTerms}&source=desktop-search",
"search" : "https://twitter.com/search?q={searchTerms}&source=desktop-search",
"autocomplete" : "https://api.twitter.com/1.1/search/tweets.json?q={searchTerms}",
"shortcut" : "t"
},
Expand All @@ -49,15 +49,15 @@ module.exports = { "providers" :
{
"name" : "Yahoo",
"image" : "https://search.yahoo.com/favicon.ico",
"search" : "https://search.yahoo.com/search?p={searchTerms}&fr=opensearch",
"autocomplete": "https://search.yahoo.com/sugg/os?command={searchTerms}&output=fxjson&fr=opensearch",
"search" : "https://search.yahoo.com/search?p={searchTerms}&fr=opensearch",
"autocomplete": "https://search.yahoo.com/sugg/os?command={searchTerms}&output=fxjson&fr=opensearch",
"shortcut" : "y"
},
{
"name" : "Youtube",
"image" : "https://www.youtube.com/favicon.ico",
"search" : "https://www.youtube.com/results?search_type=search_videos&search_query={searchTerms}&search_sort=relevance&search_category=0&page=",
"autocomplete": "http://suggestqueries.google.com/complete/search?output=chrome&client=chrome&hl=it&q={searchTerms}&ds=yt",
"search" : "https://www.youtube.com/results?search_type=search_videos&search_query={searchTerms}&search_sort=relevance&search_category=0&page=",
"autocomplete": "http://suggestqueries.google.com/complete/search?output=chrome&client=chrome&hl=it&q={searchTerms}&ds=yt",
"shortcut" : "yt"
}
]
Expand Down

0 comments on commit 688fa23

Please sign in to comment.