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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 // Required to import scripts in a web worker. Note, that in Apps v2, it is | 192 // Required to import scripts in a web worker. Note, that in Apps v2, it is |
193 // enough that anything is passed to web_accessible_resources. If there is | 193 // enough that anything is passed to web_accessible_resources. If there is |
194 // at least any file, then all files are allowed. http://crbug.com/179127. | 194 // at least any file, then all files are allowed. http://crbug.com/179127. |
195 "web_accessible_resources": [ | 195 "web_accessible_resources": [ |
196 "background/js/test_util.js", | 196 "background/js/test_util.js", |
197 "background/js/volume_manager.js", | 197 "background/js/volume_manager.js", |
198 "common/js/async_util.js", | 198 "common/js/async_util.js", |
199 "common/js/error_util.js", | 199 "common/js/error_util.js", |
200 "common/js/path_util.js", | 200 "common/js/path_util.js", |
201 "common/js/util.js", | 201 "common/js/util.js", |
| 202 "common/js/volume_manager_common.js", |
| 203 "foreground/js/file_type.js", |
202 "foreground/js/metadata/byte_reader.js", | 204 "foreground/js/metadata/byte_reader.js", |
203 "foreground/js/metadata/exif_parser.js", | 205 "foreground/js/metadata/exif_parser.js", |
204 "foreground/js/metadata/function_parallel.js", | 206 "foreground/js/metadata/function_parallel.js", |
205 "foreground/js/metadata/function_sequence.js", | 207 "foreground/js/metadata/function_sequence.js", |
206 "foreground/js/metadata/id3_parser.js", | 208 "foreground/js/metadata/id3_parser.js", |
207 "foreground/js/metadata/image_parsers.js", | 209 "foreground/js/metadata/image_parsers.js", |
208 "foreground/js/metadata/metadata_cache.js", | 210 "foreground/js/metadata/metadata_cache.js", |
209 "foreground/js/metadata/metadata_dispatcher.js", | 211 "foreground/js/metadata/metadata_dispatcher.js", |
210 "foreground/js/metadata/metadata_parser.js", | 212 "foreground/js/metadata/metadata_parser.js", |
211 "foreground/js/metadata/mpeg_parser.js" | 213 "foreground/js/metadata/mpeg_parser.js" |
(...skipping 17 matching lines...) Expand all Loading... |
229 "background/js/progress_center.js", | 231 "background/js/progress_center.js", |
230 "background/js/test_util.js", | 232 "background/js/test_util.js", |
231 "background/js/volume_manager.js", | 233 "background/js/volume_manager.js", |
232 "background/js/background.js" | 234 "background/js/background.js" |
233 ] | 235 ] |
234 }, | 236 }, |
235 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 237 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
236 "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'" | 238 "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'" |
237 } | 239 } |
238 } | 240 } |
OLD | NEW |