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

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

Issue 587293002: Add fileSystemProvider API extension example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change basic example to a extension from app. Created 6 years, 3 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json » ('j') | 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 "name": "Fake Archive Handler", 2 "name": "Fake Archive Handler App",
3 "version": "0.1", 3 "version": "0.1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": "Demonstrate File System Provider API usage for archives.", 5 "description": "Demonstrate File System Provider API usage for apps.",
6 "permissions": [ 6 "permissions": [
7 "fileSystemProvider", 7 "fileSystemProvider",
8 {"fileSystem": ["retainEntries"]}, 8 {"fileSystem": ["retainEntries"]},
9 "storage" 9 "storage"
10 ], 10 ],
11 "file_handlers": { 11 "file_handlers": {
12 "fake": { 12 "fake": {
13 "types": ["application/fake"], 13 "types": ["application/fake"],
14 "extensions": ["fake"], 14 "extensions": ["fake"],
15 "title": "Open fake archive" 15 "title": "Open fake archive"
16 } 16 }
17 }, 17 },
18 "app": { 18 "app": {
19 "background": { 19 "background": {
20 "scripts": [ 20 "scripts": [
21 "background.js" 21 "background.js"
22 ] 22 ]
23 } 23 }
24 } 24 }
25 } 25 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698