OLD | NEW |
---|---|
(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", | |
mtomasz
2014/07/01 01:31:29
nit: the period (.) is still missing in the descri
cmihail
2014/07/01 01:40:03
Done.
| |
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 } | |
OLD | NEW |