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

Side by Side Diff: ui/file_manager/zip_archiver/unpacker/manifest.json

Issue 2804453002: Move files from zip_archiver/unpacker/ to zip_archiver/. (Closed)
Patch Set: Move files from zip_archiver/unpacker/ to zip_archiver/. Created 3 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
OLDNEW
(Empty)
1 {
2 "name": "__MSG_name__",
3 "version": "0.76",
4 "manifest_version": 2,
5 "minimum_chrome_version": "44.0.2400.0",
6 "description": "__MSG_description__",
7 "default_locale": "en",
8 "display_in_launcher": false,
9 "permissions": [
10 "alwaysOnTopWindows",
11 "fileSystemProvider",
12 {"fileSystem": ["retainEntries", "write", "directory"]},
13 "notifications",
14 "storage"
15 ],
16 "file_system_provider_capabilities": {
17 "multipleMounts": true,
18 "source": "file"
19 },
20 "file_handlers": {
21 "add": {
22 "types":["application/zip"],
23 "extensions": ["zip"],
24 "verb": "add_to"
25 },
26 "pack": {
27 "types": ["*"],
28 "include_directories": true,
29 "verb": "pack_with"
30 }
31 },
32 "icons": {
33 "16": "icons/icon16.png",
34 "32": "icons/icon32.png",
35 "64": "icons/icon64.png",
36 "96": "icons/icon96.png",
37 "128": "icons/icon128.png"
38 },
39 "app": {
40 "background": {
41 "scripts": [
42 "js/unpacker.js",
43 "js/app.js",
44 "js/background.js",
45 "js/compressor.js",
46 "js/decompressor.js",
47 "js/passphrase-manager.js",
48 "js/request.js",
49 "js/types.js",
50 "js/volume.js"
51 ]
52 }
53 }
54 }
OLDNEW
« no previous file with comments | « ui/file_manager/zip_archiver/unpacker/js/volume.js ('k') | ui/file_manager/zip_archiver/unpacker/third-party/polymer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698