mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
24 lines
534 B
JSON
24 lines
534 B
JSON
{
|
|
|
|
"manifest_version": 2,
|
|
"name": "Discogs search engine",
|
|
"description": "Adds a search engine that searches discogs.com",
|
|
"version": "1.0",
|
|
"applications": {
|
|
"gecko": {
|
|
"strict_min_version": "55"
|
|
}
|
|
},
|
|
"chrome_settings_overrides": {
|
|
"search_provider": {
|
|
"name": "Discogs",
|
|
"search_url": "https://www.discogs.com/search/?q={searchTerms}",
|
|
"keyword": "disc",
|
|
"favicon_url": "https://www.discogs.com/favicon.ico",
|
|
"is_default": false,
|
|
"encoding": "UTF-8"
|
|
}
|
|
}
|
|
|
|
}
|