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

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

Issue 12693003: Add support for mkv video files in Files.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added support for apps v2. Created 7 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
« no previous file with comments | « chrome/browser/resources/file_manager/manifest.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "name": "Files", 4 "name": "Files",
5 "version": "0.1", 5 "version": "0.1",
6 "description": "File Manager", 6 "description": "File Manager",
7 "incognito" : "split", 7 "incognito" : "split",
8 "icons": { 8 "icons": {
9 "16": "images/icon16.png", 9 "16": "images/icon16.png",
10 "128": "images/icon128.png" 10 "128": "images/icon128.png"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ] 46 ]
47 }, 47 },
48 { 48 {
49 "id": "watch", 49 "id": "watch",
50 "default_title": "__MSG_PLAY_MEDIA__", 50 "default_title": "__MSG_PLAY_MEDIA__",
51 "default_icon": "images/filetype_video.png", 51 "default_icon": "images/filetype_video.png",
52 "file_filters": [ 52 "file_filters": [
53 "filesystem:*.3gp", 53 "filesystem:*.3gp",
54 "filesystem:*.avi", 54 "filesystem:*.avi",
55 "filesystem:*.m4v", 55 "filesystem:*.m4v",
56 "filesystem:*.mkv",
56 "filesystem:*.mov", 57 "filesystem:*.mov",
57 "filesystem:*.mp4", 58 "filesystem:*.mp4",
58 "filesystem:*.mpeg", 59 "filesystem:*.mpeg",
59 "filesystem:*.mpeg4", 60 "filesystem:*.mpeg4",
60 "filesystem:*.mpg", 61 "filesystem:*.mpg",
61 "filesystem:*.mpg4", 62 "filesystem:*.mpg4",
62 "filesystem:*.ogm", 63 "filesystem:*.ogm",
63 "filesystem:*.ogv", 64 "filesystem:*.ogv",
64 "filesystem:*.ogx", 65 "filesystem:*.ogx",
65 "filesystem:*.webm" 66 "filesystem:*.webm"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "filesystem:*.bmp", 118 "filesystem:*.bmp",
118 "filesystem:*.gif", 119 "filesystem:*.gif",
119 "filesystem:*.jpg", 120 "filesystem:*.jpg",
120 "filesystem:*.jpeg", 121 "filesystem:*.jpeg",
121 "filesystem:*.png", 122 "filesystem:*.png",
122 "filesystem:*.webp", 123 "filesystem:*.webp",
123 // Video formats 124 // Video formats
124 "filesystem:*.3gp", 125 "filesystem:*.3gp",
125 "filesystem:*.avi", 126 "filesystem:*.avi",
126 "filesystem:*.m4v", 127 "filesystem:*.m4v",
128 "filesystem:*.mkv",
127 "filesystem:*.mov", 129 "filesystem:*.mov",
128 "filesystem:*.mp4", 130 "filesystem:*.mp4",
129 "filesystem:*.mpeg", 131 "filesystem:*.mpeg",
130 "filesystem:*.mpeg4", 132 "filesystem:*.mpeg4",
131 "filesystem:*.mpg", 133 "filesystem:*.mpg",
132 "filesystem:*.mpg4", 134 "filesystem:*.mpg4",
133 "filesystem:*.ogm", 135 "filesystem:*.ogm",
134 "filesystem:*.ogv", 136 "filesystem:*.ogv",
135 "filesystem:*.ogx", 137 "filesystem:*.ogx",
136 "filesystem:*.webm" 138 "filesystem:*.webm"
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 "files": "main.html" 176 "files": "main.html"
175 }, 177 },
176 "background": { 178 "background": {
177 "transient": true, 179 "transient": true,
178 "persistent": false, 180 "persistent": false,
179 "scripts": ["js/file_copy_manager.js", 181 "scripts": ["js/file_copy_manager.js",
180 "js/path_util.js", 182 "js/path_util.js",
181 "js/util.js"] 183 "js/util.js"]
182 } 184 }
183 } 185 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698