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

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

Issue 9395077: [filebrowser] Introduce View 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
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 {
59 "id": "gallery", 84 "id": "gallery",
60 "default_title": "__MSG_GALLERY__", 85 "default_title": "__MSG_OPEN_ACTION__",
61 "default_icon": "images/icon_preview_16x16.png", 86 "default_icon": "images/icon_preview_16x16.png",
62 "file_filters": [ 87 "file_filters": [
63 // Image formats 88 // Image formats
64 "filesystem:*.bmp", 89 "filesystem:*.bmp",
65 "filesystem:*.gif", 90 "filesystem:*.gif",
66 "filesystem:*.jpg", 91 "filesystem:*.jpg",
67 "filesystem:*.jpeg", 92 "filesystem:*.jpeg",
68 "filesystem:*.png", 93 "filesystem:*.png",
69 "filesystem:*.webp", 94 "filesystem:*.webp",
70 // Video formats 95 // Video formats
(...skipping 10 matching lines...) Expand all
81 "filesystem:*.ogv", 106 "filesystem:*.ogv",
82 "filesystem:*.ogx", 107 "filesystem:*.ogx",
83 "filesystem:*.webm" 108 "filesystem:*.webm"
84 ] 109 ]
85 } 110 }
86 ], 111 ],
87 "chrome_url_overrides": { 112 "chrome_url_overrides": {
88 "files": "main.html" 113 "files": "main.html"
89 } 114 }
90 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698