summaryrefslogtreecommitdiffstats
path: root/devtools/client/aboutdebugging/test/browser/resources/bad-extensions/invalid-property/manifest.json
blob: 992818bd777a381528b802a25bc3d021a4be16ca (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": "test-invalid-extension",
  "version": "1",
  "description": "the name says it all",
  "permissions": ["*://*.foo.com/*", "alarms", "notifications", "tabs"],
  "background": {
    "scripts": ["background.js"]
  },
  "content_scripts": [
    {
      "matches": "*://*.foo.com/*",
      "js": ["content.js"]
    }
  ],
  "browser_action": {
    "default_icon": {
      "32": "home.svg"
    },
    "default_title": "foobarbaz (v1)",
    "browser_style": true
  }
}