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

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

Issue 10831007: [File Manager] Always open as window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 4 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 | 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"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "fileBrowserHandler", 13 "fileBrowserHandler",
14 "fileBrowserPrivate", 14 "fileBrowserPrivate",
15 "mediaPlayerPrivate", 15 "mediaPlayerPrivate",
16 "metricsPrivate", 16 "metricsPrivate",
17 "unlimitedStorage", 17 "unlimitedStorage",
18 "chrome://extension-icon/", 18 "chrome://extension-icon/",
19 "chrome://resources/", 19 "chrome://resources/",
20 "tabs", 20 "tabs",
21 "clipboardWrite", 21 "clipboardWrite",
22 "clipboardRead", 22 "clipboardRead",
23 "https://*.googleusercontent.com/" 23 "https://*.googleusercontent.com/"
24 ], 24 ],
25 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' data: filesystem: https://docs.google.com https://*.googleusercontent.com chrome://extension-icon ; media-src filesystem: https://*.googleusercontent.com;", 25 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' data: filesystem: https://docs.google.com https://*.googleusercontent.com chrome://extension-icon ; media-src filesystem: https://*.googleusercontent.com;",
26 "app": { 26 "app": {
27 "launch": { 27 "launch": {
28 "container": "panel",
28 "local_path": "main.html" 29 "local_path": "main.html"
29 } 30 }
30 }, 31 },
31 "file_browser_handlers": [ 32 "file_browser_handlers": [
32 { 33 {
33 "id": "play", 34 "id": "play",
34 "default_title": "__MSG_PLAY_MEDIA__", 35 "default_title": "__MSG_PLAY_MEDIA__",
35 "default_icon": "images/filetype_audio.png", 36 "default_icon": "images/filetype_audio.png",
36 "file_filters": [ 37 "file_filters": [
37 "filesystem:*.flac", 38 "filesystem:*.flac",
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "filesystem:*.gslides", 144 "filesystem:*.gslides",
144 "filesystem:*.gdraw", 145 "filesystem:*.gdraw",
145 "filesystem:*.gtable" 146 "filesystem:*.gtable"
146 ] 147 ]
147 } 148 }
148 ], 149 ],
149 "chrome_url_overrides": { 150 "chrome_url_overrides": {
150 "files": "main.html" 151 "files": "main.html"
151 } 152 }
152 } 153 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698