| OLD | NEW |
| 1 { | 1 { |
| 2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/ | 2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/ |
| 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3
5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB
h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==", | 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3
5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB
h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==", |
| 4 "manifest_version": 2, | 4 "manifest_version": 2, |
| 5 "name": "Files", | 5 "name": "Files", |
| 6 "version": "3.0", | 6 "version": "3.0", |
| 7 "description": "File Manager", | 7 "description": "File Manager", |
| 8 "incognito" : "split", | 8 "incognito" : "split", |
| 9 "icons": { | 9 "icons": { |
| 10 "16": "common/images/icon16.png", | 10 "16": "common/images/icon16.png", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "mediaPlayerPrivate", | 35 "mediaPlayerPrivate", |
| 36 "metricsPrivate", | 36 "metricsPrivate", |
| 37 "notifications", | 37 "notifications", |
| 38 "power", | 38 "power", |
| 39 "storage", | 39 "storage", |
| 40 "unlimitedStorage", | 40 "unlimitedStorage", |
| 41 "webview" | 41 "webview" |
| 42 ], | 42 ], |
| 43 "file_browser_handlers": [ | 43 "file_browser_handlers": [ |
| 44 { | 44 { |
| 45 "id": "play", | |
| 46 "default_title": "__MSG_PLAY_MEDIA__", | |
| 47 "default_icon": "common/images/file_types/200/audio.png", | |
| 48 "file_filters": [ | |
| 49 "filesystem:*.amr", | |
| 50 "filesystem:*.flac", | |
| 51 "filesystem:*.m4a", | |
| 52 "filesystem:*.mp3", | |
| 53 "filesystem:*.oga", | |
| 54 "filesystem:*.ogg", | |
| 55 "filesystem:*.wav" | |
| 56 ] | |
| 57 }, | |
| 58 { | |
| 59 "id": "mount-archive", | 45 "id": "mount-archive", |
| 60 "default_title": "__MSG_MOUNT_ARCHIVE__", | 46 "default_title": "__MSG_MOUNT_ARCHIVE__", |
| 61 "default_icon": "common/images/file_types/200/archive.png", | 47 "default_icon": "common/images/file_types/200/archive.png", |
| 62 "file_filters": [ | 48 "file_filters": [ |
| 63 "filesystem:*.rar", | 49 "filesystem:*.rar", |
| 64 "filesystem:*.zip" | 50 "filesystem:*.zip" |
| 65 ] | 51 ] |
| 66 }, | 52 }, |
| 67 { | 53 { |
| 68 "id": "view-pdf", | 54 "id": "view-pdf", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "background/js/progress_center.js", | 184 "background/js/progress_center.js", |
| 199 "background/js/test_util.js", | 185 "background/js/test_util.js", |
| 200 "background/js/volume_manager.js", | 186 "background/js/volume_manager.js", |
| 201 "background/js/background.js" | 187 "background/js/background.js" |
| 202 ] | 188 ] |
| 203 }, | 189 }, |
| 204 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 190 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
| 205 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r
esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' '
unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom
e://resources chrome://theme data: https://docs.google.com https://*.googleuserc
ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent
.com; connect-src https://drive.google.com; object-src 'self'" | 191 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r
esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' '
unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom
e://resources chrome://theme data: https://docs.google.com https://*.googleuserc
ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent
.com; connect-src https://drive.google.com; object-src 'self'" |
| 206 } | 192 } |
| 207 } | 193 } |
| OLD | NEW |