summaryrefslogtreecommitdiffstats
path: root/browser/components/extensions/schemas/url_overrides.json
blob: 8c8449ee5725c9df9246a2f2a3ab488e3f6ba048 (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
[
  {
    "namespace": "manifest",
    "types": [
      {
        "$extend": "WebExtensionManifest",
        "properties": {
          "chrome_url_overrides": {
            "type": "object",
            "optional": true,
            "properties": {
              "newtab": {
                "$ref": "ExtensionURL",
                "optional": true,
                "preprocess": "localize"
              },
              "bookmarks": {
                "unsupported": true,
                "$ref": "ExtensionURL",
                "optional": true,
                "preprocess": "localize"
              },
              "history": {
                "unsupported": true,
                "$ref": "ExtensionURL",
                "optional": true,
                "preprocess": "localize"
              }
            }
          }
        }
      }
    ]
  }
]