Chromium Code Reviews| 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/06/30 08:30:31
nit: period at the end of the description.
| |
| 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 |