OLD | NEW |
1 { | 1 { |
2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} | 2 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} |
3 "name": "__MSG_PRODUCT_NAME__", | 3 "name": "__MSG_PRODUCT_NAME__", |
4 "version": "{{ FULL_APP_VERSION }}", | 4 "version": "{{ FULL_APP_VERSION }}", |
5 "description": "__MSG_PRODUCT_DESCRIPTION__", | 5 "description": "__MSG_PRODUCT_DESCRIPTION__", |
6 "manifest_version": 2, | 6 "manifest_version": 2, |
7 "default_locale": "en", | 7 "default_locale": "en", |
8 "minimum_chrome_version": "32", | 8 "minimum_chrome_version": "32", |
9 "app": { | 9 "app": { |
10 {% if webapp_type == 'v1' %} | 10 {% if webapp_type == 'v1' %} |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "scopes": [ | 55 "scopes": [ |
56 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" | 56 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" |
57 ] | 57 ] |
58 }, | 58 }, |
59 "sandbox": { | 59 "sandbox": { |
60 "pages": [ "wcs_sandbox.html" ] | 60 "pages": [ "wcs_sandbox.html" ] |
61 }, | 61 }, |
62 {% endif %} | 62 {% endif %} |
63 "externally_connectable": { | 63 "externally_connectable": { |
64 "matches": [ | 64 "matches": [ |
65 "https://*.talkgadget.google.com/*" | 65 "https://*.google.com/hangouts*" |
66 ] | 66 ] |
67 }, | 67 }, |
68 "permissions": [ | 68 "permissions": [ |
69 "{{ OAUTH2_ACCOUNTS_HOST }}/*", | 69 "{{ OAUTH2_ACCOUNTS_HOST }}/*", |
70 "{{ OAUTH2_API_BASE_URL }}/*", | 70 "{{ OAUTH2_API_BASE_URL }}/*", |
71 "{{ DIRECTORY_API_BASE_URL }}/*", | 71 "{{ DIRECTORY_API_BASE_URL }}/*", |
72 "{{ TALK_GADGET_HOST }}/talkgadget/*", | 72 "{{ TALK_GADGET_HOST }}/talkgadget/*", |
73 "https://relay.google.com/*", | 73 "https://relay.google.com/*", |
74 "storage", | 74 "storage", |
75 "clipboardRead", | 75 "clipboardRead", |
(...skipping 15 matching lines...) Expand all Loading... |
91 "udp-send-to", | 91 "udp-send-to", |
92 "udp-bind", | 92 "udp-bind", |
93 "udp-multicast-membership", | 93 "udp-multicast-membership", |
94 "resolve-host", | 94 "resolve-host", |
95 "network-state" | 95 "network-state" |
96 ] | 96 ] |
97 } | 97 } |
98 {% endif %} | 98 {% endif %} |
99 ] | 99 ] |
100 } | 100 } |
OLD | NEW |