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": "2.0", | 6 "version": "2.0", |
7 "description": "File Manager", | 7 "description": "File Manager", |
8 "incognito" : "split", | 8 "incognito" : "split", |
9 "icons": { | 9 "icons": { |
10 "16": "images/icon16.png", | 10 "16": "images/icon16.png", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "chrome://resources/", | 24 "chrome://resources/", |
25 "chrome://theme/", | 25 "chrome://theme/", |
26 "tabs", | 26 "tabs", |
27 "clipboardWrite", | 27 "clipboardWrite", |
28 "clipboardRead", | 28 "clipboardRead", |
29 "https://docs.google.com/", | 29 "https://docs.google.com/", |
30 "https://*.googleusercontent.com/", | 30 "https://*.googleusercontent.com/", |
31 "https://drive.google.com/" | 31 "https://drive.google.com/" |
32 ], | 32 ], |
33 "file_browser_handlers": [ | 33 "file_browser_handlers": [ |
| 34 // Automatically opens a volume and later close Files.app when unmounted. |
| 35 // TODO(mtomasz): Implement a better filtering than using file_filters. |
| 36 { |
| 37 "id": "auto-open", |
| 38 "default_title": "__MSG_OPEN_ACTION__", |
| 39 "default_icon": "images/filetype_generic.png", |
| 40 "file_filters": [ |
| 41 "filesystem:*" |
| 42 ] |
| 43 }, |
| 44 // Selects the passed file after launching Files.app. |
| 45 { |
| 46 "id": "select", |
| 47 "default_title": "__MSG_OPEN_ACTION__", |
| 48 "default_icon": "images/filetype_generic.png", |
| 49 "file_filters": [ |
| 50 "filesystem:*" |
| 51 ] |
| 52 }, |
| 53 // Opens the passed directory after launching Files.app. |
| 54 // TODO(mtomasz): Implement a directories filtering instead of files. |
| 55 { |
| 56 "id": "open", |
| 57 "default_title": "__MSG_OPEN_ACTION__", |
| 58 "default_icon": "images/filetype_generic.png", |
| 59 "file_filters": [ |
| 60 "filesystem:*" |
| 61 ] |
| 62 }, |
34 { | 63 { |
35 "id": "play", | 64 "id": "play", |
36 "default_title": "__MSG_PLAY_MEDIA__", | 65 "default_title": "__MSG_PLAY_MEDIA__", |
37 "default_icon": "images/filetype_audio.png", | 66 "default_icon": "images/filetype_audio.png", |
38 "file_filters": [ | 67 "file_filters": [ |
39 "filesystem:*.amr", | 68 "filesystem:*.amr", |
40 "filesystem:*.flac", | 69 "filesystem:*.flac", |
41 "filesystem:*.m4a", | 70 "filesystem:*.m4a", |
42 "filesystem:*.mp3", | 71 "filesystem:*.mp3", |
43 "filesystem:*.oga", | 72 "filesystem:*.oga", |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "js/file_copy_manager.js", | 222 "js/file_copy_manager.js", |
194 "js/path_util.js", | 223 "js/path_util.js", |
195 "js/util.js", | 224 "js/util.js", |
196 "js/test_util.js", | 225 "js/test_util.js", |
197 "js/background.js"] | 226 "js/background.js"] |
198 }, | 227 }, |
199 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 228 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
200 "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" | 229 "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" |
201 } | 230 } |
202 } | 231 } |
OLD | NEW |