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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json

Issue 360673004: Demonstrate the functionality of the File System Provider API for archives. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split readMetadataFromFile function in order to make the code more readable and correct some commen… Created 6 years, 5 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": "Fake Archive Handler",
3 "version": "0.1",
4 "manifest_version": 2,
5 "description": "Demonstrate File System Provider API usage for archives",
6 "permissions": [
7 "fileSystemProvider",
8 {"fileSystem": ["retainEntries"]},
9 "storage"
10 ],
11 "file_handlers": {
12 "fake": {
13 "types": ["application/fake"],
14 "extensions": ["fake"],
15 "title": "Open fake archive"
16 }
17 },
18 "app": {
19 "background": {
20 "scripts": [
21 "background.js"
22 ]
23 }
24 }
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698