Files
tubestation/browser/components/preferences/tests/engine1/manifest.json
William Durand 12a393c465 Bug 1797050 - Part 6 - Use browser_specific_settings instead of applications in test manifests. r=rpl,perftest-reviewers,sparky
We want to encourage extension developers to use `browser_specific_settings` instead of `applications`, which will be unsupported in Manifest Version 3+. This patch makes sure test manifests in m-c won't cause any issues in the future.

Depends on D160541

Differential Revision: https://phabricator.services.mozilla.com/D160668
2022-11-03 16:23:03 +00:00

28 lines
519 B
JSON

{
"name": "engine1",
"manifest_version": 2,
"version": "1.0",
"browser_specific_settings": {
"gecko": {
"id": "engine1@search.mozilla.org"
}
},
"hidden": true,
"description": "A small test engine",
"icons": {
"16": "favicon.ico"
},
"chrome_settings_overrides": {
"search_provider": {
"name": "engine1",
"search_url": "https://1.example.com/search",
"params": [
{
"name": "q",
"value": "{searchTerms}"
}
]
}
}
}