| OLD | NEW |
| (Empty) |
| 1 { | |
| 2 "name": "__MSG_name__", | |
| 3 "version": "0.76", | |
| 4 "manifest_version": 2, | |
| 5 "minimum_chrome_version": "44.0.2400.0", | |
| 6 "description": "__MSG_description__", | |
| 7 "default_locale": "en", | |
| 8 "display_in_launcher": false, | |
| 9 "permissions": [ | |
| 10 "alwaysOnTopWindows", | |
| 11 "fileSystemProvider", | |
| 12 {"fileSystem": ["retainEntries", "write", "directory"]}, | |
| 13 "notifications", | |
| 14 "storage" | |
| 15 ], | |
| 16 "file_system_provider_capabilities": { | |
| 17 "multipleMounts": true, | |
| 18 "source": "file" | |
| 19 }, | |
| 20 "file_handlers": { | |
| 21 "add": { | |
| 22 "types":["application/zip"], | |
| 23 "extensions": ["zip"], | |
| 24 "verb": "add_to" | |
| 25 }, | |
| 26 "pack": { | |
| 27 "types": ["*"], | |
| 28 "include_directories": true, | |
| 29 "verb": "pack_with" | |
| 30 } | |
| 31 }, | |
| 32 "icons": { | |
| 33 "16": "icons/icon16.png", | |
| 34 "32": "icons/icon32.png", | |
| 35 "64": "icons/icon64.png", | |
| 36 "96": "icons/icon96.png", | |
| 37 "128": "icons/icon128.png" | |
| 38 }, | |
| 39 "app": { | |
| 40 "background": { | |
| 41 "scripts": [ | |
| 42 "js/unpacker.js", | |
| 43 "js/app.js", | |
| 44 "js/background.js", | |
| 45 "js/compressor.js", | |
| 46 "js/decompressor.js", | |
| 47 "js/passphrase-manager.js", | |
| 48 "js/request.js", | |
| 49 "js/types.js", | |
| 50 "js/volume.js" | |
| 51 ] | |
| 52 } | |
| 53 } | |
| 54 } | |
| OLD | NEW |