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

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

Issue 9594037: Revert 124975 - [filebrowser] Introduce "Open" action for supported file types (e.g. pdf). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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/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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "filesystem:*.tar", 49 "filesystem:*.tar",
50 "filesystem:*.tar.bz2", 50 "filesystem:*.tar.bz2",
51 "filesystem:*.tar.gz", 51 "filesystem:*.tar.gz",
52 "filesystem:*.tbz", 52 "filesystem:*.tbz",
53 "filesystem:*.tbz2", 53 "filesystem:*.tbz2",
54 "filesystem:*.tgz", 54 "filesystem:*.tgz",
55 "filesystem:*.zip" 55 "filesystem:*.zip"
56 ] 56 ]
57 }, 57 },
58 { 58 {
59 "id": "view-pdf",
60 "default_title": "__MSG_OPEN_ACTION__",
61 "default_icon": "images/icon_preview_16x16.png",
62 "file_filters": [
63 "filesystem:*.pdf"
64 ]
65 },
66 {
67 "id": "view-txt",
68 "default_title": "__MSG_OPEN_ACTION__",
69 "default_icon": "images/icon_preview_16x16.png",
70 "file_filters": [
71 "filesystem:*.txt"
72 ]
73 },
74 {
75 "id": "install-crx",
76 "default_title": "__MSG_INSTALL_CRX__",
77 // TODO(dgozman): replace to the right icon.
78 "default_icon": "images/icon_preview_16x16.png",
79 "file_filters": [
80 "filesystem:*.crx"
81 ]
82 },
83 {
84 "id": "gallery", 59 "id": "gallery",
85 "default_title": "__MSG_OPEN_ACTION__", 60 "default_title": "__MSG_GALLERY__",
86 "default_icon": "images/icon_preview_16x16.png", 61 "default_icon": "images/icon_preview_16x16.png",
87 "file_filters": [ 62 "file_filters": [
88 // Image formats 63 // Image formats
89 "filesystem:*.bmp", 64 "filesystem:*.bmp",
90 "filesystem:*.gif", 65 "filesystem:*.gif",
91 "filesystem:*.jpg", 66 "filesystem:*.jpg",
92 "filesystem:*.jpeg", 67 "filesystem:*.jpeg",
93 "filesystem:*.png", 68 "filesystem:*.png",
94 "filesystem:*.webp", 69 "filesystem:*.webp",
95 // Video formats 70 // Video formats
(...skipping 10 matching lines...) Expand all
106 "filesystem:*.ogv", 81 "filesystem:*.ogv",
107 "filesystem:*.ogx", 82 "filesystem:*.ogx",
108 "filesystem:*.webm" 83 "filesystem:*.webm"
109 ] 84 ]
110 } 85 }
111 ], 86 ],
112 "chrome_url_overrides": { 87 "chrome_url_overrides": {
113 "files": "main.html" 88 "files": "main.html"
114 } 89 }
115 } 90 }
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