OLD | NEW |
| (Empty) |
1 "key": "{{ MANIFEST_KEY }}", | |
2 "name": "{{APP_NAME}}", | |
3 "description": "{{APP_DESCRIPTION}}", | |
4 "version": "{{ FULL_APP_VERSION }}", | |
5 "manifest_version": 2, | |
6 "default_locale": "en", | |
7 "app": { | |
8 "background": { | |
9 "page": "arv_background.html" | |
10 } | |
11 }, | |
12 "import": [{ | |
13 "id": "koejkfhmphamcgafjmkellhnekdkopod" | |
14 } | |
15 ], | |
16 "icons": { | |
17 "128": "icon128.png", | |
18 "48": "icon48.png", | |
19 "16": "icon16.png" | |
20 }, | |
21 "optional_permissions": [ | |
22 "<all_urls>" | |
23 ], | |
24 "permissions": [ | |
25 "{{ APP_REMOTING_API_BASE_URL }}/*", | |
26 "{{ DIRECTORY_API_BASE_URL }}/*", | |
27 "{{ OAUTH2_ACCOUNTS_HOST }}/*", | |
28 "{{ OAUTH2_API_BASE_URL }}/*", | |
29 "{{ TALK_GADGET_HOST }}/talkgadget/*", | |
30 {{ CLOUD_PRINT_URL }} | |
31 "app.window.shape", | |
32 "clipboardRead", | |
33 "clipboardWrite", | |
34 "contextMenus", | |
35 "fileSystem", | |
36 "fullscreen", | |
37 "https://relay.google.com/*", | |
38 "identity", | |
39 "metricsPrivate", | |
40 "pointerLock", | |
41 "storage", | |
42 { | |
43 "socket": [ | |
44 "udp-send-to", | |
45 "udp-bind", | |
46 "udp-multicast-membership", | |
47 "resolve-host", | |
48 "network-state" | |
49 ] | |
50 }, | |
51 "webview" | |
52 ], | |
53 "sockets": { | |
54 "tcp": { | |
55 "connect": "{{ XMPP_SERVER }}" | |
56 } | |
57 }, | |
58 "oauth2": { | |
59 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | |
60 "scopes": [ | |
61 {{ OAUTH_CLOUD_PRINT_SCOPE }} | |
62 {{ OAUTH_GDRIVE_SCOPE }} | |
63 "https://www.googleapis.com/auth/appremoting.runapplication", | |
64 "https://www.googleapis.com/auth/googletalk", | |
65 "https://www.googleapis.com/auth/userinfo#email", | |
66 "https://www.googleapis.com/auth/userinfo.profile" | |
67 ] | |
68 }, | |
69 "sandbox": { | |
70 "pages": [ "arv_wcs_sandbox.html" ] | |
71 } | |
OLD | NEW |