| 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 "page": "arv_background.html" |
| 10 } | 10 } |
| 11 }, | 11 }, |
| 12 "import": [{ |
| 13 "id": "koejkfhmphamcgafjmkellhnekdkopod" |
| 14 } |
| 15 ], |
| 12 "icons": { | 16 "icons": { |
| 13 "128": "icon128.png", | 17 "128": "icon128.png", |
| 14 "48": "icon48.png", | 18 "48": "icon48.png", |
| 15 "16": "icon16.png" | 19 "16": "icon16.png" |
| 16 }, | 20 }, |
| 17 "optional_permissions": [ | 21 "optional_permissions": [ |
| 18 "<all_urls>" | 22 "<all_urls>" |
| 19 ], | 23 ], |
| 20 "permissions": [ | 24 "permissions": [ |
| 21 "{{ APP_REMOTING_API_BASE_URL }}/*", | 25 "{{ APP_REMOTING_API_BASE_URL }}/*", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 52 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", | 56 "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}", |
| 53 "scopes": [ | 57 "scopes": [ |
| 54 {{ OAUTH_GDRIVE_SCOPE }} | 58 {{ OAUTH_GDRIVE_SCOPE }} |
| 55 "https://www.googleapis.com/auth/appremoting.runapplication", | 59 "https://www.googleapis.com/auth/appremoting.runapplication", |
| 56 "https://www.googleapis.com/auth/googletalk", | 60 "https://www.googleapis.com/auth/googletalk", |
| 57 "https://www.googleapis.com/auth/userinfo#email", | 61 "https://www.googleapis.com/auth/userinfo#email", |
| 58 "https://www.googleapis.com/auth/userinfo.profile" | 62 "https://www.googleapis.com/auth/userinfo.profile" |
| 59 ] | 63 ] |
| 60 }, | 64 }, |
| 61 "sandbox": { | 65 "sandbox": { |
| 62 "pages": [ "wcs_sandbox.html" ] | 66 "pages": [ "arv_wcs_sandbox.html" ] |
| 63 } | 67 } |
| OLD | NEW |