diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /browser/components/search/extensions/bing/manifest.json | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | browser/components/search/extensions/bing/manifest.json | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/browser/components/search/extensions/bing/manifest.json b/browser/components/search/extensions/bing/manifest.json new file mode 100644 index 0000000000..dc8afe1db2 --- /dev/null +++ b/browser/components/search/extensions/bing/manifest.json @@ -0,0 +1,61 @@ +{ + "name": "Bing", + "description": "Microsoft Bing", + "manifest_version": 2, + "version": "1.3", + "applications": { + "gecko": { + "id": "bing@search.mozilla.org" + } + }, + "hidden": true, + "icons": { + "16": "favicon.ico" + }, + "web_accessible_resources": [ + "favicon.ico" + ], + "chrome_settings_overrides": { + "search_provider": { + "keyword": "@bing", + "name": "Bing", + "search_url": "https://www.bing.com/search", + "search_form": "https://www.bing.com/search?pc=MOZI&q={searchTerms}", + "search_url_get_params": "pc=MOZI&q={searchTerms}", + "params": [ + { + "name": "form", + "condition": "purpose", + "purpose": "contextmenu", + "value": "MOZCON" + }, + { + "name": "form", + "condition": "purpose", + "purpose": "searchbar", + "value": "MOZSBR" + }, + { + "name": "form", + "condition": "purpose", + "purpose": "homepage", + "value": "MOZSPG" + }, + { + "name": "form", + "condition": "purpose", + "purpose": "keyword", + "value": "MOZLBR" + }, + { + "name": "form", + "condition": "purpose", + "purpose": "newtab", + "value": "MOZTSB" + } + ], + "suggest_url": "https://www.bing.com/osjson.aspx", + "suggest_url_get_params": "query={searchTerms}&form=OSDJAS&language={moz:locale}" + } + } +} |