| 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", | |
| 19 "fileSystem", | 18 "fileSystem", |
| 20 "gcm", | 19 "gcm", |
| 21 "geolocation", | 20 "geolocation", |
| 22 "hid", | 21 "hid", |
| 23 "identity", | 22 "identity", |
| 24 "identity.email", | 23 "identity.email", |
| 25 "idle", | 24 "idle", |
| 26 "location", | 25 "location", |
| 27 {"mediaGalleries": ["read", "allAutoDetected"]}, | 26 {"mediaGalleries": ["read", "allAutoDetected"]}, |
| 28 "nativeMessaging", | 27 "nativeMessaging", |
| 29 "notifications", | 28 "notifications", |
| 30 "pointerLock", | 29 "pointerLock", |
| 31 "power", | 30 "power", |
| 32 "serial", | 31 "serial", |
| 33 "signedInDevices", | 32 "signedInDevices", |
| 34 {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]}, | 33 {"socket": ["tcp-connect", "tcp-listen", "udp-send-to", "udp-bind"]}, |
| 35 "storage", | 34 "storage", |
| 36 "tts", | 35 "tts", |
| 37 "unlimitedStorage", | 36 "unlimitedStorage", |
| 38 "usb", | 37 "usb", |
| 39 "videoCapture" | 38 "videoCapture" |
| 40 ], | 39 ], |
| 41 "bluetooth": {}, | 40 "bluetooth": {}, |
| 42 "commands": {}, | 41 "commands": {}, |
| 43 "sockets": {} | 42 "sockets": {} |
| 44 } | 43 } |
| OLD | NEW |