summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/test-support/manifest.json
blob: 133eed898502ad988d44146bfcbaee0bc9c4ed62 (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
{
  "manifest_version": 2,
  "name": "Test support",
  "version": "1.0",
  "description": "Helper script for GeckoView tests",
  "browser_specific_settings": {
    "gecko": {
      "id": "test-support@tests.mozilla.org"
    }
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["test-support.js"],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "background": {
    "scripts": ["background.js"]
  },
  "experiment_apis": {
    "test": {
      "schema": "test-schema.json",
      "parent": {
        "scopes": ["addon_parent"],
        "script": "test-api.js",
        "events": ["startup"],
        "paths": [["test"]]
      }
    }
  },
  "options_ui": {
    "page": "dummy.html"
  },
  "permissions": [
    "geckoViewAddons",
    "nativeMessaging",
    "nativeMessagingFromContent"
  ]
}