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 19 matching lines...) Expand all Loading... |
30 ], | 30 ], |
31 "js": [ "cs_oauth2_trampoline.js" ] | 31 "js": [ "cs_oauth2_trampoline.js" ] |
32 }, | 32 }, |
33 { | 33 { |
34 "matches": [ | 34 "matches": [ |
35 "{{ THIRD_PARTY_AUTH_REDIRECT_URL }}" | 35 "{{ THIRD_PARTY_AUTH_REDIRECT_URL }}" |
36 ], | 36 ], |
37 "js": [ "cs_third_party_auth_trampoline.js" ] | 37 "js": [ "cs_third_party_auth_trampoline.js" ] |
38 } | 38 } |
39 ], | 39 ], |
40 "content_security_policy": "default-src 'self'; script-src 'self' {{ TALK_GADG
ET_HOST }}; style-src 'self' https://fonts.googleapis.com; img-src 'self' {{ TAL
K_GADGET_HOST }} data:; font-src *; connect-src 'self' {{ OAUTH2_ACCOUNTS_HOST }
} {{ GOOGLE_API_HOSTS }} {{ TALK_GADGET_HOST }} https://relay.google.com", | 40 "content_security_policy": "default-src 'self'; script-src 'self' {{ TALK_GADG
ET_HOST }} https://www.gstatic.com; style-src 'self' https://fonts.googleapis.co
m; img-src 'self' {{ TALK_GADGET_HOST }} data:; font-src *; connect-src 'self' {
{ OAUTH2_ACCOUNTS_HOST }} {{ GOOGLE_API_HOSTS }} {{ TALK_GADGET_HOST }} https://
relay.google.com", |
41 {% endif %} | 41 {% endif %} |
42 "optional_permissions": [ | 42 "optional_permissions": [ |
43 "<all_urls>" | 43 "<all_urls>" |
44 ], | 44 ], |
45 | 45 |
46 {% if webapp_type != 'v1' %} | 46 {% if webapp_type != 'v1' %} |
47 "oauth2": { | 47 "oauth2": { |
48 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 48 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
49 "scopes": [ | 49 "scopes": [ |
50 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" | 50 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" |
(...skipping 29 matching lines...) Expand all Loading... |
80 "udp-send-to", | 80 "udp-send-to", |
81 "udp-bind", | 81 "udp-bind", |
82 "udp-multicast-membership", | 82 "udp-multicast-membership", |
83 "resolve-host", | 83 "resolve-host", |
84 "network-state" | 84 "network-state" |
85 ] | 85 ] |
86 } | 86 } |
87 {% endif %} | 87 {% endif %} |
88 ] | 88 ] |
89 } | 89 } |
OLD | NEW |