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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 }, | 68 }, |
69 { | 69 { |
70 "id": "view-in-browser", | 70 "id": "view-in-browser", |
71 "default_title": "__MSG_OPEN_ACTION__", | 71 "default_title": "__MSG_OPEN_ACTION__", |
72 "default_icon": "common/images/file_types/200/generic.png", | 72 "default_icon": "common/images/file_types/200/generic.png", |
73 "file_filters": [ | 73 "file_filters": [ |
74 "filesystem:*.htm", | 74 "filesystem:*.htm", |
75 "filesystem:*.html", | 75 "filesystem:*.html", |
76 "filesystem:*.mht", | 76 "filesystem:*.mht", |
77 "filesystem:*.mhtml", | 77 "filesystem:*.mhtml", |
| 78 "filesystem:*.shtml", |
| 79 "filesystem:*.xht", |
| 80 "filesystem:*.xhtml", |
78 "filesystem:*.svg", | 81 "filesystem:*.svg", |
79 "filesystem:*.txt" | 82 "filesystem:*.txt" |
80 ] | 83 ] |
81 }, | 84 }, |
82 { | 85 { |
83 "id": "open-hosted-generic", | 86 "id": "open-hosted-generic", |
84 "default_title": "__MSG_HOSTED__", | 87 "default_title": "__MSG_HOSTED__", |
85 "default_icon": "common/images/file_types/200generic.png", | 88 "default_icon": "common/images/file_types/200generic.png", |
86 "file_filters": [ | 89 "file_filters": [ |
87 "filesystem:*.gdraw", | 90 "filesystem:*.gdraw", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 "background/js/progress_center.js", | 187 "background/js/progress_center.js", |
185 "background/js/test_util.js", | 188 "background/js/test_util.js", |
186 "background/js/volume_manager.js", | 189 "background/js/volume_manager.js", |
187 "background/js/background.js" | 190 "background/js/background.js" |
188 ] | 191 ] |
189 }, | 192 }, |
190 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 193 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
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'" | 194 "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'" |
192 } | 195 } |
193 } | 196 } |
OLD | NEW |