summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/borderify-mv3/manifest.json
blob: f1dbe5fe71ab3e917ddb99d924ccc18f118bba29 (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": 3,
  "name": "Borderify",
  "version": "1.0",
  "description": "Adds a red border to all webpages matching example.com.",
  "browser_specific_settings": {
    "gecko": {
      "id": "borderify@tests.mozilla.org"
    }
  },
  "icons": {
    "48": "icons/border-48.png"
  },
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["borderify.js"]
    }
  ],
  "options_ui": {
    "page": "dummy.html"
  },
  "granted_host_permissions": true,
  "optional_permissions": ["clipboardRead", "*://opt-host-perm.example.com/*"],
  "host_permissions": ["*://host-perm.example.com/*"]
}