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

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

Issue 10918244: Files app: change action name for "Open" for hosted documents (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/file_tasks.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": "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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "filesystem:*.mpeg4", 128 "filesystem:*.mpeg4",
129 "filesystem:*.mpg", 129 "filesystem:*.mpg",
130 "filesystem:*.mpg4", 130 "filesystem:*.mpg4",
131 "filesystem:*.ogm", 131 "filesystem:*.ogm",
132 "filesystem:*.ogv", 132 "filesystem:*.ogv",
133 "filesystem:*.ogx", 133 "filesystem:*.ogx",
134 "filesystem:*.webm" 134 "filesystem:*.webm"
135 ] 135 ]
136 }, 136 },
137 { 137 {
138 "id": "open-hosted", 138 "id": "open-hosted-generic",
139 "default_title": "__MSG_HOSTED__", 139 "default_title": "__MSG_HOSTED__",
140 "default_icon": "images/filetype_generic.png", 140 "default_icon": "images/filetype_generic.png",
141 "file_filters": [ 141 "file_filters": [
142 "filesystem:*.gdoc",
143 "filesystem:*.gsheet",
144 "filesystem:*.gslides",
145 "filesystem:*.gdraw", 142 "filesystem:*.gdraw",
146 "filesystem:*.gtable" 143 "filesystem:*.gtable"
147 ] 144 ]
145 },
146 {
147 "id": "open-hosted-gdoc",
148 "default_title": "__MSG_HOSTED__",
149 "default_icon": "images/filetype_generic.png",
150 "file_filters": [
151 "filesystem:*.gdoc"
152 ]
153 },
154 {
155 "id": "open-hosted-gsheet",
156 "default_title": "__MSG_HOSTED__",
157 "default_icon": "images/filetype_generic.png",
158 "file_filters": [
159 "filesystem:*.gsheet"
160 ]
161 },
162 {
163 "id": "open-hosted-gslides",
164 "default_title": "__MSG_HOSTED__",
165 "default_icon": "images/filetype_generic.png",
166 "file_filters": [
167 "filesystem:*.gslides"
168 ]
148 } 169 }
149 ], 170 ],
150 "chrome_url_overrides": { 171 "chrome_url_overrides": {
151 "files": "main.html" 172 "files": "main.html"
152 }, 173 },
153 "background": { 174 "background": {
154 "transient": true, 175 "transient": true,
155 "persistent": false, 176 "persistent": false,
156 "scripts": ["js/file_copy_manager.js", 177 "scripts": ["js/file_copy_manager.js",
157 "js/path_util.js", 178 "js/path_util.js",
158 "js/util.js"] 179 "js/util.js"]
159 } 180 }
160 } 181 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_tasks.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698