- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / notifications / manifest.json
1 {
2   "name": "Notification Demo",
3   "version": "1.1",
4   "description":
5     "Shows off desktop notifications, which are \"toast\" windows that pop up on the desktop.",
6   "icons": {"16": "16.png", "48": "48.png", "128": "128.png"},
7   "permissions": [
8     "notifications"
9   ],
10   "options_page": "options.html",
11   "background": { "scripts": ["background.js"] },
12   "manifest_version": 2,
13
14   // crbug.com/134315
15   "web_accessible_resources": [
16     "48.png"
17   ]
18 }