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

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

Issue 246983002: Move Gallery.app files to ui/file_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 8 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
(Empty)
1 {
2 // chrome-extension://jcgeabjmjgoblfofpppfkcoakmfobdko/
3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw0/gRbJc545iEGRZs20Rl/HtrS Up8H3gJd4Y6hCe0CG1xQiJhZ5nc8qZyxa96gMxRAKBq54S6sjVVtV6uS70oU6FvrvwItByYkkqr4ZE7e MJKwMqnGItxWbh6KBodf89lpKoIy6MtYTqubBhXB/IQBZsXah90tXwRzaaJNWw+2BBRIhcPsH3ng+wgN 7rwFxo4HIv9ZpqkYlx90rwkfjOmKPPnSXyXFIBJfmqfdbd8PLtcxzzOTE+vxwoXZuYWrthKm4uKfNqXI Yns74sSJlqyKfctuR+nQdNh8uePv0e+/Ul3wER1/jIXULLjfyoaklyDs+ak3SDf+xWScJ+0LJ0AwIDAQ AB",
4 "manifest_version": 2,
5 "name": "Gallery",
6 "version": "2.0",
7 "description": "Picture and video browser app.",
8 "display_in_launcher": false,
9 "incognito" : "split",
10 "icons": {
11 "16": "images/100/icon.png",
12 "32": "images/200/icon.png"
13 },
14 "permissions": [
15 "fileSystem",
16 "fileBrowserPrivate",
17 "fullscreen",
18 "mediaPlayerPrivate",
19 "storage",
20 "chrome://theme/"
21 ],
22 "file_handlers": {
23 "video": {
24 "types": [
25 "image/*"
26 ],
27 "extensions": [
28 "bmp",
29 "gif",
30 "ico",
31 "jpg",
32 "jpeg",
33 "png",
34 "webp"
35 ],
36 // TODO(hirono): Rename and localize this.
37 "title": "Open in new Gallery"
38 }
39 },
40 "app": {
41 "background": {
42 "scripts": [
43 "js/error_util.js",
44 "js/test_util.js",
45 "js/background.js"
46 ]
47 },
48 "content_security_policy": "default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' chrome://theme data:; media-src 'self'; object-src 'self'"
49 }
50 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/gallery/js/test_util.js ('k') | ui/file_manager/file_manager_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698