diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /browser/components/search/extensions/bing/manifest.json | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.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..fb2c6e90b4 --- /dev/null +++ b/browser/components/search/extensions/bing/manifest.json @@ -0,0 +1,61 @@ +{ + "name": "Bing", + "description": "Microsoft Bing", + "manifest_version": 2, + "version": "1.4", + "browser_specific_settings": { + "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}" + } + } +} |