| OLD | NEW |
| 1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} | 1 {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }} |
| 2 "name": "{{APP_NAME}}", | 2 "name": "{{APP_NAME}}", |
| 3 "description": "{{APP_DESCRIPTION}}", | 3 "description": "{{APP_DESCRIPTION}}", |
| 4 "version": "{{ FULL_APP_VERSION }}", | 4 "version": "{{ FULL_APP_VERSION }}", |
| 5 "manifest_version": 2, | 5 "manifest_version": 2, |
| 6 "default_locale": "en", | 6 "default_locale": "en", |
| 7 "app": { | 7 "app": { |
| 8 "background": { | 8 "background": { |
| 9 "scripts": ["ar_background.js", "platform.js"] | 9 "scripts": ["ar_background.js", "platform.js"] |
| 10 } | 10 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "udp-bind", | 42 "udp-bind", |
| 43 "udp-multicast-membership", | 43 "udp-multicast-membership", |
| 44 "resolve-host", | 44 "resolve-host", |
| 45 "network-state" | 45 "network-state" |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 ], | 48 ], |
| 49 "oauth2": { | 49 "oauth2": { |
| 50 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 50 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
| 51 "scopes": [ | 51 "scopes": [ |
| 52 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go
ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http
s://www.googleapis.com/auth/userinfo.profile https://docs.google.com/feeds/ http
s://www.googleapis.com/auth/drive" | 52 "https://www.googleapis.com/auth/appremoting.runapplication https://www.go
ogleapis.com/auth/googletalk https://www.googleapis.com/auth/userinfo#email http
s://www.googleapis.com/auth/userinfo.profile {{ OAUTH_GDRIVE_SCOPE }}" |
| 53 ] | 53 ] |
| 54 }, | 54 }, |
| 55 "sandbox": { | 55 "sandbox": { |
| 56 "pages": [ "wcs_sandbox.html" ] | 56 "pages": [ "wcs_sandbox.html" ] |
| 57 } | 57 } |
| OLD | NEW |