Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / api / fileSystemProvider / basic / manifest.json
1 {
2   "name": "File System Provider API Extension Example",
3   "version": "0.1",
4   "manifest_version": 2,
5   "description":
6       "Demonstrate features of the API like mounting, listing directories, etc for extensions.",
7   "permissions": [
8     "fileSystemProvider"
9   ],
10   "background": {
11     "scripts": [
12       "background.js"
13     ]
14   }
15 }