| 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 %} | |
| 75 ], | 62 ], |
| 76 | 63 |
| 77 {% if webapp_type == 'v1' %} | 64 {% if webapp_type == 'v1' %} |
| 78 "plugins": [ | 65 "plugins": [ |
| 79 { "path": "remoting_host_plugin.dll", "public": false }, | 66 { "path": "remoting_host_plugin.dll", "public": false }, |
| 80 { "path": "libremoting_host_plugin.ia32.so", "public": false }, | 67 { "path": "libremoting_host_plugin.ia32.so", "public": false }, |
| 81 { "path": "libremoting_host_plugin.x64.so", "public": false }, | 68 { "path": "libremoting_host_plugin.x64.so", "public": false }, |
| 82 { "path": "remoting_host_plugin.plugin", "public": false } | 69 { "path": "remoting_host_plugin.plugin", "public": false } |
| 83 ], | 70 ], |
| 84 "requirements": { | 71 "requirements": { |
| 85 "plugins": { | 72 "plugins": { |
| 86 "npapi": false | 73 "npapi": false |
| 87 } | 74 } |
| 88 } | 75 } |
| 89 {% else %} | 76 {% else %} |
| 90 "oauth2": { | 77 "oauth2": { |
| 91 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 78 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
| 92 "scopes": [ | 79 "scopes": [ |
| 93 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" | 80 "https://www.googleapis.com/auth/chromoting https://www.googleapis.com/aut
h/googletalk https://www.googleapis.com/auth/userinfo#email" |
| 94 ] | 81 ] |
| 95 }, | 82 }, |
| 96 "sandbox": { | 83 "sandbox": { |
| 97 "pages": [ "wcs_sandbox.html" ] | 84 "pages": [ "wcs_sandbox.html" ] |
| 98 } | 85 } |
| 99 {% endif %} | 86 {% endif %} |
| 100 | 87 |
| 101 } | 88 } |
| OLD | NEW |