summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/update-postpone-1/manifest.json
blob: 5011e1ea05191c2a15a50f4cab4077a508f6ca25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "manifest_version": 2,
  "name": "update",
  "browser_specific_settings": {
    "gecko": {
      "id": "update-postpone@example.com",
      "update_url": "https://example.org/tests/junit/update_manifest.json"
    }
  },
  "background": {
    "scripts": ["background.js"]
  },
  "version": "1.0",
  "description": "Adds a red border to all webpages matching example.com.",
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["borderify.js"]
    }
  ]
}