summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/schemas/search.json
blob: f9b00d225769980734464348f36ad4b26156d141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* 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/. */

[
  {
    "namespace": "manifest",
    "types": [
      {
        "$extend": "OptionalPermissionNoPrompt",
        "choices": [{
          "type": "string",
          "enum": [
            "search"
          ]
        }]
      }
    ]
  },
  {
    "namespace": "search",
    "description": "Use browser.search to interact with search engines.",
    "permissions": ["search"],
    "types": [
      {
        "id": "SearchEngine",
        "type": "object",
        "description": "An object encapsulating a search engine",
        "properties": {
          "name": {
            "type": "string"
          },
          "isDefault": {
            "type": "boolean"
          },
          "alias": {
            "type": "string",
            "optional": true
          },
          "favIconUrl": {
            "type": "string",
            "optional": true,
            "format": "url"
          }
        }
      }
    ],
    "functions": [
      {
        "name": "get",
        "type": "function",
        "description": "Gets a list of search engines.",
        "async": true,
        "parameters": []
      },
      {
        "name": "search",
        "type": "function",
        "description": "Perform a search.",
        "async": true,
        "parameters": [
          {
            "type": "object",
            "name": "searchProperties",
            "properties": {
              "query": {
                "type": "string",
                "description": "Terms to search for."
              },
              "engine": {
                "type": "string",
                "optional": true,
                "description": "Search engine to use. Uses the default if not specified."
              },
              "tabId": {
                "type": "integer",
                "optional": true,
                "description": "The ID of the tab for the search results. If not specified, a new tab is created."
              }
            }
          }
        ]
      }
    ]
  }
]