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 "chrome://gdata/", |
23 "https://*.googleusercontent.com/" | 24 "https://*.googleusercontent.com/" |
24 ], | 25 ], |
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", |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "filesystem:*.gslides", | 120 "filesystem:*.gslides", |
120 "filesystem:*.gdraw", | 121 "filesystem:*.gdraw", |
121 "filesystem:*.gtable" | 122 "filesystem:*.gtable" |
122 ] | 123 ] |
123 } | 124 } |
124 ], | 125 ], |
125 "chrome_url_overrides": { | 126 "chrome_url_overrides": { |
126 "files": "main.html" | 127 "files": "main.html" |
127 } | 128 } |
128 } | 129 } |
OLD | NEW |