summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/messaging-iframe/manifest.json
blob: f9039fd2e877aee028aa5e905ddb1116ef80ae3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "manifest_version": 2,
  "name": "messaging",
  "version": "1.0",
  "description": "Test messaging between app and web extension",
  "browser_specific_settings": {
    "gecko": {
      "id": "messaging-iframe@tests.mozilla.org"
    }
  },
  "content_scripts": [
    {
      "matches": ["*://localhost/*"],
      "js": ["messaging.js"],
      "all_frames": true
    }
  ],
  "permissions": [
    "geckoViewAddons",
    "nativeMessaging",
    "nativeMessagingFromContent"
  ]
}