summaryrefslogtreecommitdiffstats
path: root/browser/extensions/formautofill/manifest.json
blob: f79a3fdb76ed5c5f09f38ca9d03985ec5d64cdbc (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
{
  "manifest_version": 2,
  "name": "Form Autofill",
  "version": "1.0.1",

  "browser_specific_settings": {
    "gecko": {
      "id": "formautofill@mozilla.org"
    }
  },

  "background": {
    "scripts": ["background.js"]
  },

  "experiment_apis": {
    "formautofill": {
      "schema": "schema.json",
      "parent": {
        "scopes": ["addon_parent"],
        "script": "api.js",
        "events": ["startup"]
      }
    }
  }
}