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": "images/icon16.png", | 10 "16": "images/icon16.png", |
11 "32": "images/icon32.png", | 11 "32": "images/icon32.png", |
12 "48": "images/icon48.png", | 12 "48": "images/icon48.png", |
13 "64": "images/icon64.png", | 13 "64": "images/icon64.png", |
14 "96": "images/icon96.png", | 14 "96": "images/icon96.png", |
15 "128": "images/icon128.png", | 15 "128": "images/icon128.png", |
16 "256": "images/icon256.png" | 16 "256": "images/icon256.png" |
17 }, | 17 }, |
18 "permissions": [ | 18 "permissions": [ |
| 19 "contextMenus", |
19 "experimental", | 20 "experimental", |
20 "storage", | 21 "storage", |
21 "fileBrowserHandler", | 22 "fileBrowserHandler", |
22 "fileBrowserPrivate", | 23 "fileBrowserPrivate", |
23 "fullscreen", | 24 "fullscreen", |
24 "mediaPlayerPrivate", | 25 "mediaPlayerPrivate", |
25 "mediaGalleriesPrivate", | 26 "mediaGalleriesPrivate", |
26 "metricsPrivate", | 27 "metricsPrivate", |
27 "commandLinePrivate", | 28 "commandLinePrivate", |
28 "unlimitedStorage", | 29 "unlimitedStorage", |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 "js/async_util.js", | 225 "js/async_util.js", |
225 "js/path_util.js", | 226 "js/path_util.js", |
226 "js/util.js", | 227 "js/util.js", |
227 "js/test_util.js", | 228 "js/test_util.js", |
228 "js/background.js"] | 229 "js/background.js"] |
229 }, | 230 }, |
230 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 231 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
231 "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" | 232 "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" |
232 } | 233 } |
233 } | 234 } |
OLD | NEW |