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

Side by Side Diff: chrome/browser/resources/file_manager/manifest.json

Issue 210623003: [VideoPlayer] Remove the old video player from Files.app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "filesystem:*.amr", 50 "filesystem:*.amr",
51 "filesystem:*.flac", 51 "filesystem:*.flac",
52 "filesystem:*.m4a", 52 "filesystem:*.m4a",
53 "filesystem:*.mp3", 53 "filesystem:*.mp3",
54 "filesystem:*.oga", 54 "filesystem:*.oga",
55 "filesystem:*.ogg", 55 "filesystem:*.ogg",
56 "filesystem:*.wav" 56 "filesystem:*.wav"
57 ] 57 ]
58 }, 58 },
59 { 59 {
60 "id": "watch",
61 "default_title": "__MSG_PLAY_MEDIA__",
62 "default_icon": "common/images/file_types/200/video.png",
63 "file_filters": [
64 "filesystem:*.3gp",
65 "filesystem:*.avi",
66 "filesystem:*.m4v",
67 "filesystem:*.mkv",
68 "filesystem:*.mov",
69 "filesystem:*.mp4",
70 "filesystem:*.mpeg",
71 "filesystem:*.mpeg4",
72 "filesystem:*.mpg",
73 "filesystem:*.mpg4",
74 "filesystem:*.ogm",
75 "filesystem:*.ogv",
76 "filesystem:*.ogx",
77 "filesystem:*.webm"
78 ]
79 },
80 {
81 "id": "mount-archive", 60 "id": "mount-archive",
82 "default_title": "__MSG_MOUNT_ARCHIVE__", 61 "default_title": "__MSG_MOUNT_ARCHIVE__",
83 "default_icon": "common/images/file_types/200/archive.png", 62 "default_icon": "common/images/file_types/200/archive.png",
84 "file_filters": [ 63 "file_filters": [
85 "filesystem:*.rar", 64 "filesystem:*.rar",
86 "filesystem:*.zip" 65 "filesystem:*.zip"
87 ] 66 ]
88 }, 67 },
89 { 68 {
90 "id": "view-pdf", 69 "id": "view-pdf",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 "background/js/progress_center.js", 204 "background/js/progress_center.js",
226 "background/js/test_util.js", 205 "background/js/test_util.js",
227 "background/js/volume_manager.js", 206 "background/js/volume_manager.js",
228 "background/js/background.js" 207 "background/js/background.js"
229 ] 208 ]
230 }, 209 },
231 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension. 210 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension.
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; object-src 'self'" 211 "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'"
233 } 212 }
234 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698