OLD | NEW |
1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} | 1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} |
2 "name": "{{APP_NAME}}", | 2 "name": "{{APP_NAME}}", |
3 "description": "{{APP_DESCRIPTION}}", | 3 "description": "{{APP_DESCRIPTION}}", |
4 "version": "{{ FULL_APP_VERSION }}", | 4 "version": "{{ FULL_APP_VERSION }}", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "default_locale": "en", | 6 "default_locale": "en", |
7 "app": { | 7 "app": { |
8 "background": { | 8 "background": { |
9 "scripts": ["ar_background.js", "platform.js"] | 9 "scripts": ["ar_background.js", "platform.js"] |
10 } | 10 } |
(...skipping 15 matching lines...) Expand all Loading... |
26 "app.window.shape", | 26 "app.window.shape", |
27 "clipboardRead", | 27 "clipboardRead", |
28 "clipboardWrite", | 28 "clipboardWrite", |
29 "contextMenus", | 29 "contextMenus", |
30 "experimental", | 30 "experimental", |
31 "fileSystem", | 31 "fileSystem", |
32 "fullscreen", | 32 "fullscreen", |
33 "https://relay.google.com/*", | 33 "https://relay.google.com/*", |
34 "identity", | 34 "identity", |
35 "pointerLock", | 35 "pointerLock", |
36 "storage" | 36 "storage", |
| 37 { |
| 38 "socket": [ |
| 39 "tcp-connect", |
| 40 "tcp-listen", |
| 41 "udp-send-to", |
| 42 "udp-bind", |
| 43 "udp-multicast-membership", |
| 44 "resolve-host", |
| 45 "network-state" |
| 46 ] |
| 47 } |
37 ], | 48 ], |
38 "oauth2": { | 49 "oauth2": { |
39 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 50 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
40 "scopes": [ | 51 "scopes": [ |
41 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go
ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http
s://www.googleapis.com/auth/userinfo.profile https://docs.google.com/feeds/ http
s://www.googleapis.com/auth/drive" | 52 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go
ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http
s://www.googleapis.com/auth/userinfo.profile https://docs.google.com/feeds/ http
s://www.googleapis.com/auth/drive" |
42 ] | 53 ] |
43 }, | 54 }, |
44 "sandbox": { | 55 "sandbox": { |
45 "pages": [ "wcs_sandbox.html" ] | 56 "pages": [ "wcs_sandbox.html" ] |
46 } | 57 } |
OLD | NEW |