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

Side by Side Diff: ui/file_manager/gallery/manifest.json

Issue 246543002: Add script files of the separated Gallery.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 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 | « ui/file_manager/gallery/js/slide_mode.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://jcgeabjmjgoblfofpppfkcoakmfobdko/ 2 // chrome-extension://nlkncpkkdoccmpiclbokaimcnedabhhm/
3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw0/gRbJc545iEGRZs20Rl/HtrS Up8H3gJd4Y6hCe0CG1xQiJhZ5nc8qZyxa96gMxRAKBq54S6sjVVtV6uS70oU6FvrvwItByYkkqr4ZE7e MJKwMqnGItxWbh6KBodf89lpKoIy6MtYTqubBhXB/IQBZsXah90tXwRzaaJNWw+2BBRIhcPsH3ng+wgN 7rwFxo4HIv9ZpqkYlx90rwkfjOmKPPnSXyXFIBJfmqfdbd8PLtcxzzOTE+vxwoXZuYWrthKm4uKfNqXI Yns74sSJlqyKfctuR+nQdNh8uePv0e+/Ul3wER1/jIXULLjfyoaklyDs+ak3SDf+xWScJ+0LJ0AwIDAQ AB", 3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1hFTC+sl9e4ufs6ccGhspbgnMQ b3GMikA/QwghFVp00WDwFu7no8xIOWJwY9lFQP+NrbSsze3JL9Wg6FmHC6xKIncwZJKwyDDd2g+9/gEZ Ln5Ar1piPyf+ELtuX+m0Pjp0l2+rVMz2UiP5OUvFqvmCZqJJQnTVjRut3IMjDP6npb5HyDTgqlPgNHWm sLAQZZKTyYfqswBFkvmwiSHTNJuxkh+i1hxo2m8RcBQsXWL8Mt9+WPl0uABIZc7UvLoZwNz1pAKWb5sv 0y4oBugpw4ZVIvCT/pxplLXF35GGBNWAkgimkpYu+SldoZQV8SZW1kUSIcrpYW80mA7KxfK5H8vwIDAQ AB",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "name": "Gallery", 5 "name": "Gallery",
6 "version": "2.0", 6 "version": "2.0",
7 "description": "Picture and video browser app.", 7 "description": "Picture and video browser app.",
8 "display_in_launcher": false, 8 "display_in_launcher": false,
9 "incognito" : "split", 9 "incognito" : "split",
10 "icons": { 10 "icons": {
11 "16": "images/100/icon.png", 11 "16": "images/100/icon.png",
12 "32": "images/200/icon.png" 12 "32": "images/200/icon.png"
13 }, 13 },
14 "permissions": [ 14 "permissions": [
15 "fileSystem", 15 "fileSystem",
16 "fileBrowserPrivate", 16 "fileBrowserPrivate",
17 "fullscreen", 17 "fullscreen",
18 "mediaPlayerPrivate", 18 "mediaPlayerPrivate",
19 "metricsPrivate",
19 "storage", 20 "storage",
20 "chrome://theme/" 21 "chrome://theme/",
22 "chrome://resources/",
23 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj"
21 ], 24 ],
22 "file_handlers": { 25 "file_handlers": {
23 "video": { 26 "video": {
24 "types": [ 27 "types": [
25 "image/*" 28 "image/*"
26 ], 29 ],
27 "extensions": [ 30 "extensions": [
28 "bmp", 31 "bmp",
29 "gif", 32 "gif",
30 "ico", 33 "ico",
31 "jpg", 34 "jpg",
32 "jpeg", 35 "jpeg",
33 "png", 36 "png",
34 "webp" 37 "webp"
35 ], 38 ],
36 // TODO(hirono): Rename and localize this. 39 // TODO(hirono): Rename and localize this.
37 "title": "Open in new Gallery" 40 "title": "Open in new Gallery"
38 } 41 }
39 }, 42 },
40 "app": { 43 "app": {
41 "background": { 44 "background": {
42 "scripts": [ 45 "scripts": [
43 "js/error_util.js", 46 "chrome://resources/js/cr.js",
44 "js/test_util.js", 47 "chrome://resources/js/cr/event_target.js",
48 "chrome://resources/js/cr/ui/array_data_model.js",
49 "chrome://resources/js/load_time_data.js",
50 // util.js and async_util.js should be included before volume_manager.js .
51 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/common/js/util.js",
52 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/common/js/async_uti l.js",
53 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/common/js/path_util .js",
54 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/background/js/volum e_manager.js",
55 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/background/js/test_ util.js",
56 "chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/common/js/error_uti l.js",
45 "js/background.js" 57 "js/background.js"
46 ] 58 ]
47 }, 59 },
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'" 60 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r esources chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj; style-src 'self' ' unsafe-inline'; img-src 'self' chrome://resources chrome://theme data:; media-sr c 'self'; object-src 'self';"
49 } 61 }
50 } 62 }
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/js/slide_mode.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698