- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / deviceInfo / basic / manifest.json
1 {
2   "name": "My Devices",
3   "version": "1.1",
4   "description": "A browser action with a popup dump of all devices signed into the same account as the current profile.",
5   "permissions": [
6      "signedInDevices"
7   ],
8   "browser_action": {
9       "default_title": "My Devices",
10       "default_icon": "icon.png",
11       "default_popup": "popup.html"
12   },
13   "manifest_version": 2,
14   "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
15 }