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

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

Issue 8799006: Replace the Slideshow with the Photo Editor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated manifest, postponed deleting slideshow.html Created 9 years 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"
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 ], 21 ],
22 "app": { 22 "app": {
23 "launch": { 23 "launch": {
24 "local_path": "main.html" 24 "local_path": "main.html"
25 } 25 }
26 }, 26 },
27 "file_browser_handlers": [ 27 "file_browser_handlers": [
28 { 28 {
29 "id": "preview",
30 "default_title": "__MSG_PREVIEW_IMAGE__",
31 "default_icon": "images/icon_preview_16x16.png",
32 "file_filters": [
33 "filesystem:*.bmp",
34 "filesystem:*.gif",
35 "filesystem:*.jpg",
36 "filesystem:*.jpeg",
37 "filesystem:*.webp",
38 "filesystem:*.png"
39 ]
40 },
41 {
42 "id": "play", 29 "id": "play",
43 "default_title": "__MSG_PLAY_MEDIA__", 30 "default_title": "__MSG_PLAY_MEDIA__",
44 "default_icon": "images/icon_play_16x16.png", 31 "default_icon": "images/icon_play_16x16.png",
45 "file_filters": [ 32 "file_filters": [
46 "filesystem:*.3gp", 33 "filesystem:*.3gp",
47 "filesystem:*.avi", 34 "filesystem:*.avi",
48 "filesystem:*.webm", 35 "filesystem:*.webm",
49 "filesystem:*.flac", 36 "filesystem:*.flac",
50 "filesystem:*.mp4", 37 "filesystem:*.mp4",
51 "filesystem:*.m4v", 38 "filesystem:*.m4v",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 "filesystem:*.jpeg", 94 "filesystem:*.jpeg",
108 "filesystem:*.webp", 95 "filesystem:*.webp",
109 "filesystem:*.png" 96 "filesystem:*.png"
110 ] 97 ]
111 } 98 }
112 ], 99 ],
113 "chrome_url_overrides": { 100 "chrome_url_overrides": {
114 "files": "main.html" 101 "files": "main.html"
115 } 102 }
116 } 103 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698