summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/update-with-perms-2/manifest.json
blob: 9571bdabb21d48b034f5d0c2eb293b7a1c7835a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "manifest_version": 2,
  "name": "update",
  "browser_specific_settings": {
    "gecko": {
      "id": "update-with-perms@example.com"
    }
  },
  "version": "2.0",
  "description": "Adds a blue border to all webpages matching example.com.",
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["borderify.js"]
    }
  ],
  "permissions": ["tabs"]
}