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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 "clipboardRead", | 52 "clipboardRead", |
53 "clipboardWrite", | 53 "clipboardWrite", |
54 "nativeMessaging" | 54 "nativeMessaging" |
55 {% if webapp_type != 'v1' %} | 55 {% if webapp_type != 'v1' %} |
56 , | 56 , |
57 "fullscreen", | 57 "fullscreen", |
58 "identity", | 58 "identity", |
59 "contextMenus", | 59 "contextMenus", |
60 "overrideEscFullscreen" | 60 "overrideEscFullscreen" |
61 {% endif %} | 61 {% endif %} |
| 62 {% if webapp_type == 'v2_pnacl' %} |
| 63 ,{ |
| 64 "socket": [ |
| 65 "tcp-connect", |
| 66 "tcp-listen", |
| 67 "udp-send-to", |
| 68 "udp-bind", |
| 69 "udp-multicast-membership", |
| 70 "resolve-host", |
| 71 "network-state" |
| 72 ] |
| 73 } |
| 74 {% endif %} |
62 ], | 75 ], |
63 | 76 |
64 {% if webapp_type == 'v1' %} | 77 {% if webapp_type == 'v1' %} |
65 "plugins": [ | 78 "plugins": [ |
66 { "path": "remoting_host_plugin.dll", "public": false }, | 79 { "path": "remoting_host_plugin.dll", "public": false }, |
67 { "path": "libremoting_host_plugin.ia32.so", "public": false }, | 80 { "path": "libremoting_host_plugin.ia32.so", "public": false }, |
68 { "path": "libremoting_host_plugin.x64.so", "public": false }, | 81 { "path": "libremoting_host_plugin.x64.so", "public": false }, |
69 { "path": "remoting_host_plugin.plugin", "public": false } | 82 { "path": "remoting_host_plugin.plugin", "public": false } |
70 ], | 83 ], |
71 "requirements": { | 84 "requirements": { |
72 "plugins": { | 85 "plugins": { |
73 "npapi": false | 86 "npapi": false |
74 } | 87 } |
75 } | 88 } |
76 {% else %} | 89 {% else %} |
77 "oauth2": { | 90 "oauth2": { |
78 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 91 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
79 "scopes": [ | 92 "scopes": [ |
80 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" | 93 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" |
81 ] | 94 ] |
82 }, | 95 }, |
83 "sandbox": { | 96 "sandbox": { |
84 "pages": [ "wcs_sandbox.html" ] | 97 "pages": [ "wcs_sandbox.html" ] |
85 } | 98 } |
86 {% endif %} | 99 {% endif %} |
87 | 100 |
88 } | 101 } |
OLD | NEW |