diff options
Diffstat (limited to 'comm/suite/components/search/searchplugins/google.xml')
-rw-r--r-- | comm/suite/components/search/searchplugins/google.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/comm/suite/components/search/searchplugins/google.xml b/comm/suite/components/search/searchplugins/google.xml new file mode 100644 index 0000000000..758b5ee482 --- /dev/null +++ b/comm/suite/components/search/searchplugins/google.xml @@ -0,0 +1,24 @@ +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> + +<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/"> +<ShortName>Google</ShortName> +<Description>Google Search</Description> +<InputEncoding>UTF-8</InputEncoding> +<Image width="16" height="16">resource://search-plugins/images/google.ico</Image> +<Url type="application/x-suggestions+json" + method="GET" + template="https://www.google.com/complete/search"> + <Param name="client" value="firefox"/> + <Param name="q" value="{searchTerms}"/> +</Url> +<Url type="text/html" + method="GET" + template="https://www.google.com/search" + rel="searchform"> + <Param name="q" value="{searchTerms}"/> + <Param name="ie" value="utf-8"/> + <Param name="oe" value="utf-8"/> +</Url> +</SearchPlugin> |