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