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 "name": "File Manager", | 4 "name": "File Manager", |
5 "version": "0.1", | 5 "version": "0.1", |
6 "description": "File Manager", | 6 "description": "File Manager", |
7 "incognito" : "split", | 7 "incognito" : "split", |
8 "icons": { | 8 "icons": { |
9 "16": "images/icon16.png", | 9 "16": "images/icon16.png", |
10 "128": "images/icon128.png" | 10 "128": "images/icon128.png" |
11 }, | 11 }, |
12 "permissions": [ | 12 "permissions": [ |
13 "fileBrowserHandler", | 13 "fileBrowserHandler", |
14 "fileBrowserPrivate", | 14 "fileBrowserPrivate", |
15 "mediaPlayerPrivate", | 15 "mediaPlayerPrivate", |
16 "metricsPrivate", | 16 "metricsPrivate", |
17 "unlimitedStorage", | 17 "unlimitedStorage", |
18 "chrome://extension-icon/", | 18 "chrome://extension-icon/", |
19 "chrome://resources/", | 19 "chrome://resources/", |
20 "tabs", | 20 "tabs", |
21 "clipboardWrite", | 21 "clipboardWrite", |
22 "clipboardRead", | 22 "clipboardRead", |
23 "https://*.googleusercontent.com/" | 23 "https://*.googleusercontent.com/" |
24 ], | 24 ], |
| 25 "content_security_policy": "default-src 'none'; script-src 'self'; style-src '
self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' data: filesystem:
https://*.googleusercontent.com; media-src filesystem: https://*.googleusercont
ent.com;", |
25 "app": { | 26 "app": { |
26 "launch": { | 27 "launch": { |
27 "local_path": "main.html" | 28 "local_path": "main.html" |
28 } | 29 } |
29 }, | 30 }, |
30 "file_browser_handlers": [ | 31 "file_browser_handlers": [ |
31 { | 32 { |
32 "id": "play", | 33 "id": "play", |
33 "default_title": "__MSG_PLAY_MEDIA__", | 34 "default_title": "__MSG_PLAY_MEDIA__", |
34 "default_icon": "images/icon_play_16x16.png", | 35 "default_icon": "images/icon_play_16x16.png", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "filesystem:*.gslides", | 124 "filesystem:*.gslides", |
124 "filesystem:*.gdraw", | 125 "filesystem:*.gdraw", |
125 "filesystem:*.gtable" | 126 "filesystem:*.gtable" |
126 ] | 127 ] |
127 } | 128 } |
128 ], | 129 ], |
129 "chrome_url_overrides": { | 130 "chrome_url_overrides": { |
130 "files": "main.html" | 131 "files": "main.html" |
131 } | 132 } |
132 } | 133 } |
OLD | NEW |