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

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

Issue 9452007: Enable rar, tar, tar.gz and tar.bz2 archive support in CrOS file manager. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 10 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/js/mock_chrome.js ('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": "File Manager", 4 "name": "File Manager",
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "filesystem:*.oga", 51 "filesystem:*.oga",
52 "filesystem:*.ogg", 52 "filesystem:*.ogg",
53 "filesystem:*.wav" 53 "filesystem:*.wav"
54 ] 54 ]
55 }, 55 },
56 { 56 {
57 "id": "mount-archive", 57 "id": "mount-archive",
58 "default_title": "__MSG_MOUNT_ARCHIVE__", 58 "default_title": "__MSG_MOUNT_ARCHIVE__",
59 "default_icon": "images/icon_mount_archive_16x16.png", 59 "default_icon": "images/icon_mount_archive_16x16.png",
60 "file_filters": [ 60 "file_filters": [
61 "filesystem:*.rar",
62 "filesystem:*.tar",
63 "filesystem:*.tar.bz2",
64 "filesystem:*.tar.gz",
65 "filesystem:*.tbz",
66 "filesystem:*.tbz2",
67 "filesystem:*.tgz",
61 "filesystem:*.zip" 68 "filesystem:*.zip"
62 ] 69 ]
63 }, 70 },
64 { 71 {
65 "id": "gallery", 72 "id": "gallery",
66 "default_title": "__MSG_GALLERY__", 73 "default_title": "__MSG_GALLERY__",
67 "default_icon": "images/icon_preview_16x16.png", 74 "default_icon": "images/icon_preview_16x16.png",
68 "file_filters": [ 75 "file_filters": [
69 // Image formats 76 // Image formats
70 "filesystem:*.bmp", 77 "filesystem:*.bmp",
(...skipping 16 matching lines...) Expand all
87 "filesystem:*.ogv", 94 "filesystem:*.ogv",
88 "filesystem:*.ogx", 95 "filesystem:*.ogx",
89 "filesystem:*.webm" 96 "filesystem:*.webm"
90 ] 97 ]
91 } 98 }
92 ], 99 ],
93 "chrome_url_overrides": { 100 "chrome_url_overrides": {
94 "files": "main.html" 101 "files": "main.html"
95 } 102 }
96 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698