OLD | NEW |
---|---|
1 { | 1 { |
2 "name": "Platform App Test: <webview>", | 2 "name": "Platform App Test: <webview>", |
3 "version": "2", | 3 "version": "2", |
4 "manifest_version": 2, | 4 "manifest_version": 2, |
5 "permissions": [ | 5 "permissions": [ |
6 "webview" | 6 "webview" |
7 ], | 7 ], |
8 "app": { | 8 "app": { |
9 "background": { | 9 "background": { |
10 "scripts": ["test.js"] | 10 "scripts": ["test.js"] |
11 } | 11 } |
12 }, | |
13 "webview": { | |
14 "partitions": [ | |
15 { | |
16 "name": "foobar", | |
17 "accessible_resources": [ | |
18 "guest_with_inline_script.html" | |
19 ] | |
20 } | |
21 ] | |
12 } | 22 } |
13 } | 23 } |
OLD | NEW |