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