OLD | NEW |
1 { | 1 { |
2 "name": "chrome.fileSystem save from background.", | 2 "name": "chrome.fileSystem save from background.", |
3 "version": "0.1", | 3 "version": "0.1", |
4 "description": "Test for chrome.fileSystem.chooseFile save from background.", | 4 "description": "Test for chrome.fileSystem.chooseFile save from background.", |
5 "app": { | 5 "app": { |
6 "background": { | 6 "background": { |
7 "scripts": ["background.js"] | 7 "scripts": ["background.js"] |
8 } | 8 } |
9 }, | 9 }, |
10 "permissions": [ | 10 "permissions": [ |
11 "experimental", | |
12 { | 11 { |
13 "fileSystem": ["write"] | 12 "fileSystem": ["write"] |
14 } | 13 } |
15 ] | 14 ] |
16 } | 15 } |
OLD | NEW |