OLD | NEW |
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 } |
OLD | NEW |