summaryrefslogtreecommitdiff
path: root/chromium/chrome/common/extensions/docs/examples/api/notifications/manifest.json
blob: 1f77d635210e35aa3dd9cb8dfda053b8dd826a5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "name": "Notification Demo",
  "version": "1.1",
  "description":
    "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.",
  "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
  "permissions": [
    "notifications"
  ],
  "options_page": "options.html",
  "background": { "scripts": ["background.js"] },
  "manifest_version": 2,

  // crbug.com/134315
  "web_accessible_resources": [
    "48.png"
  ]
}