OLD | NEW |
1 { | 1 { |
2 "name": "App Extension API Stubs Test", | 2 "name": "App Extension API Stubs Test", |
3 "version": "1.0", | 3 "version": "1.0", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "app": { | 5 "app": { |
6 "background": { | 6 "background": { |
7 "scripts": ["background.js"] | 7 "scripts": ["background.js"] |
8 } | 8 } |
9 }, | 9 }, |
10 "permissions": [ | 10 "permissions": [ |
11 "alarms", | 11 "alarms", |
12 "audio", | 12 "audio", |
13 "audioCapture", | 13 "audioCapture", |
14 "clipboardRead", | 14 "clipboardRead", |
15 "clipboardWrite", | 15 "clipboardWrite", |
16 "contextMenus", | 16 "contextMenus", |
17 "desktopCapture", | 17 "desktopCapture", |
18 "fileBrowserHandler", | 18 "fileBrowserHandler", |
19 "fileSystem", | 19 "fileSystem", |
20 "gcm", | 20 "gcm", |
21 "geolocation", | 21 "geolocation", |
22 "hid", | 22 "hid", |
23 "identity", | 23 "identity", |
| 24 "identity.email", |
24 "idle", | 25 "idle", |
25 "location", | 26 "location", |
26 {"mediaGalleries": ["read", "allAutoDetected"]}, | 27 {"mediaGalleries": ["read", "allAutoDetected"]}, |
27 "nativeMessaging", | 28 "nativeMessaging", |
28 "notifications", | 29 "notifications", |
29 "pointerLock", | 30 "pointerLock", |
30 "power", | 31 "power", |
31 "pushMessaging", | 32 "pushMessaging", |
32 "serial", | 33 "serial", |
33 "signedInDevices", | 34 "signedInDevices", |
34 {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]}, | 35 {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]}, |
35 "storage", | 36 "storage", |
36 "tts", | 37 "tts", |
37 "unlimitedStorage", | 38 "unlimitedStorage", |
38 "usb", | 39 "usb", |
39 "videoCapture" | 40 "videoCapture" |
40 ], | 41 ], |
41 "bluetooth": {}, | 42 "bluetooth": {}, |
42 "commands": {}, | 43 "commands": {}, |
43 "sockets": {} | 44 "sockets": {} |
44 } | 45 } |
OLD | NEW |