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

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

Issue 6912024: Support for component extensions as apps on the new tab page. Added filebrowser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | « no previous file | chrome/browser/resources/ntp/apps.js » ('j') | 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 }, 10 },
11 "permissions": [ 11 "permissions": [
12 "fileBrowserHandler", 12 "fileBrowserHandler",
13 "fileBrowserPrivate", 13 "fileBrowserPrivate",
14 "unlimitedStorage", 14 "unlimitedStorage",
15 "chrome://extension-icon/", 15 "chrome://extension-icon/",
16 "chrome://resources/" 16 "chrome://resources/"
17 ], 17 ],
18 "app": {
19 "launch": {
20 "local_path": "main.html"
21 }
22 },
18 "file_browser_handlers": [ 23 "file_browser_handlers": [
19 { 24 {
20 "id": "preview", 25 "id": "preview",
21 "default_title": "__MSG_PREVIEW_IMAGE__", 26 "default_title": "__MSG_PREVIEW_IMAGE__",
22 "default_icon": "images/icon_preview_16x16.png", 27 "default_icon": "images/icon_preview_16x16.png",
23 "file_filters": [ 28 "file_filters": [
24 "filesystem:*.gif", 29 "filesystem:*.gif",
25 "filesystem:*.jpg", 30 "filesystem:*.jpg",
26 "filesystem:*.jpeg", 31 "filesystem:*.jpeg",
27 "filesystem:*.webp", 32 "filesystem:*.webp",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "filesystem:*.wav", 95 "filesystem:*.wav",
91 "filesystem:*.WAV", 96 "filesystem:*.WAV",
92 "filesystem:*.mp3", 97 "filesystem:*.mp3",
93 "filesystem:*.MP3", 98 "filesystem:*.MP3",
94 "filesystem:*.m4a", 99 "filesystem:*.m4a",
95 "filesystem:*.M4A" 100 "filesystem:*.M4A"
96 ] 101 ]
97 } 102 }
98 ] 103 ]
99 } 104 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698