Skip to content

Instantly share code, notes, and snippets.

@adeekshith
Created January 20, 2017 15:51
Show Gist options
  • Save adeekshith/cd7a7358df0bb1862b24d5fd16ccf066 to your computer and use it in GitHub Desktop.
Save adeekshith/cd7a7358df0bb1862b24d5fd16ccf066 to your computer and use it in GitHub Desktop.
Sample search engines collection for Custom Search Webextension
{
"application" : {
"name" : "Custom Search",
"app_id" : "[email protected]",
"version" : "v0.1"
},
"search_engines" : [
{
"category": "General",
"name": "DuckDuckGo",
"api": "https://duckduckgo.com/?q=%s",
"pinned": false,
"last_used":0
},
{
"category": "General",
"name": "StartPage",
"api": "https://www.startpage.com/do/metasearch.pl?query=%s",
"pinned": false,
"last_used":0
},
{
"category": "Education",
"name": "Wolfram|Alpha",
"api": "https://www.wolframalpha.com/input/?i=%s",
"pinned": true,
"last_used":0
},
{
"category": "Education",
"name": "Google Scholar",
"api": "https://scholar.google.com/scholar?hl=en&q=%s",
"pinned": false,
"last_used":0
},
{
"category": "Programming",
"name": "WolframLanguage",
"api": "http://reference.wolfram.com/search/?query=%s",
"pinned": false,
"last_used":0
}
],
"user_preferences" : {
"version" : "0.1",
"extension_enable": true,
"privacy" : {
"collect_stats" : false
}
},
"user_data": {
"last_search_input": ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment