| 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", |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "file_filters": [] | 206 "file_filters": [] |
| 207 }, | 207 }, |
| 208 // Opens the passed directory after launching Files.app. | 208 // Opens the passed directory after launching Files.app. |
| 209 { | 209 { |
| 210 "id": "open", | 210 "id": "open", |
| 211 "default_title": "__MSG_OPEN_ACTION__", | 211 "default_title": "__MSG_OPEN_ACTION__", |
| 212 "default_icon": "images/filetype_generic.png", | 212 "default_icon": "images/filetype_generic.png", |
| 213 "file_filters": [] | 213 "file_filters": [] |
| 214 } | 214 } |
| 215 ], | 215 ], |
| 216 "chrome_url_overrides": { | |
| 217 "files": "main.html" | |
| 218 }, | |
| 219 // Required to import scripts in a web worker. Note, that in Apps v2, it is | 216 // Required to import scripts in a web worker. Note, that in Apps v2, it is |
| 220 // enough that anything is passed to web_accessible_resources. If there is | 217 // enough that anything is passed to web_accessible_resources. If there is |
| 221 // at least any file, then all files are allowed. http://crbug.com/179127. | 218 // at least any file, then all files are allowed. http://crbug.com/179127. |
| 222 "web_accessible_resources": ["js/metadata/byte_reader.js"], | 219 "web_accessible_resources": ["js/metadata/byte_reader.js"], |
| 223 "app": { | 220 "app": { |
| 224 "background": { | 221 "background": { |
| 225 "scripts": [ | 222 "scripts": [ |
| 226 "chrome://resources/js/load_time_data.js", | 223 "chrome://resources/js/load_time_data.js", |
| 227 "chrome://resources/js/cr.js", | 224 "chrome://resources/js/cr.js", |
| 228 "chrome://resources/js/cr/event_target.js", | 225 "chrome://resources/js/cr/event_target.js", |
| 229 "chrome://resources/js/cr/ui/array_data_model.js", | 226 "chrome://resources/js/cr/ui/array_data_model.js", |
| 230 "js/util.js", | 227 "js/util.js", |
| 231 "js/path_util.js", | 228 "js/path_util.js", |
| 232 "js/async_util.js", | 229 "js/async_util.js", |
| 233 "js/volume_manager.js", | 230 "js/volume_manager.js", |
| 234 "js/file_operation_manager.js", | 231 "js/file_operation_manager.js", |
| 235 "js/test_util.js", | 232 "js/test_util.js", |
| 236 "js/progress_center_common.js", | 233 "js/progress_center_common.js", |
| 237 "js/progress_center.js", | 234 "js/progress_center.js", |
| 238 "js/background.js"] | 235 "js/background.js"] |
| 239 }, | 236 }, |
| 240 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. | 237 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e
xtension. |
| 241 "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'" |
| 242 } | 239 } |
| 243 } | 240 } |
| OLD | NEW |