Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: ui/file_manager/file_manager/manifest.json

Issue 641283002: Separate the audio player app from Files.app Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clean up Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 24 matching lines...) Expand all
35 "mediaPlayerPrivate", 35 "mediaPlayerPrivate",
36 "metricsPrivate", 36 "metricsPrivate",
37 "notifications", 37 "notifications",
38 "power", 38 "power",
39 "storage", 39 "storage",
40 "unlimitedStorage", 40 "unlimitedStorage",
41 "webview" 41 "webview"
42 ], 42 ],
43 "file_browser_handlers": [ 43 "file_browser_handlers": [
44 { 44 {
45 "id": "play",
46 "default_title": "__MSG_PLAY_MEDIA__",
47 "default_icon": "common/images/file_types/200/audio.png",
48 "file_filters": [
49 "filesystem:*.amr",
50 "filesystem:*.flac",
51 "filesystem:*.m4a",
52 "filesystem:*.mp3",
53 "filesystem:*.oga",
54 "filesystem:*.ogg",
55 "filesystem:*.wav"
56 ]
57 },
58 {
59 "id": "mount-archive", 45 "id": "mount-archive",
60 "default_title": "__MSG_MOUNT_ARCHIVE__", 46 "default_title": "__MSG_MOUNT_ARCHIVE__",
61 "default_icon": "common/images/file_types/200/archive.png", 47 "default_icon": "common/images/file_types/200/archive.png",
62 "file_filters": [ 48 "file_filters": [
63 "filesystem:*.rar", 49 "filesystem:*.rar",
64 "filesystem:*.zip" 50 "filesystem:*.zip"
65 ] 51 ]
66 }, 52 },
67 { 53 {
68 "id": "view-pdf", 54 "id": "view-pdf",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 "background/js/progress_center.js", 184 "background/js/progress_center.js",
199 "background/js/test_util.js", 185 "background/js/test_util.js",
200 "background/js/volume_manager.js", 186 "background/js/volume_manager.js",
201 "background/js/background.js" 187 "background/js/background.js"
202 ] 188 ]
203 }, 189 },
204 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension. 190 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension.
205 "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'" 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'"
206 } 192 }
207 } 193 }
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/js/file_tasks.js ('k') | ui/file_manager/file_manager_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698