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

Side by Side Diff: chrome/common/extensions/docs/examples/api/fileSystemProvider/basic/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, 2 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 | « chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json ('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 "name": "File System Provider API Example", 2 "name": "File System Provider API Extension Example",
3 "version": "0.1", 3 "version": "0.1",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "description": 5 "description":
6 "Demonstrate features of the API like mounting, listing directories, etc", 6 "Demonstrate features of the API like mounting, listing directories, etc f or extensions.",
7 "permissions": [ 7 "permissions": [
8 "fileSystemProvider" 8 "fileSystemProvider"
9 ], 9 ],
10 "app": { 10 "background": {
11 "background": { 11 "scripts": [
12 "scripts": [ 12 "background.js"
13 "background.js" 13 ]
14 ]
15 }
16 } 14 }
17 } 15 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/fileSystemProvider/archive/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698