OLD | NEW |
1 { | 1 { |
2 "name": "__MSG_PRODUCT_NAME__", | 2 "name": "__MSG_PRODUCT_NAME__", |
3 "version": "FULL_APP_VERSION", | 3 "version": "FULL_APP_VERSION", |
4 "description": "__MSG_PRODUCT_DESCRIPTION__", | 4 "description": "__MSG_PRODUCT_DESCRIPTION__", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "default_locale": "en", | 6 "default_locale": "en", |
7 "app": { | 7 "app": { |
8 "launch": { | 8 "launch": { |
9 "local_path": "main.html" | 9 "local_path": "main.html" |
10 } | 10 } |
11 }, | 11 }, |
12 "icons": { | 12 "icons": { |
13 "128": "chromoting128.webp", | 13 "128": "chromoting128.webp", |
14 "48": "chromoting48.webp", | 14 "48": "chromoting48.webp", |
15 "16": "chromoting16.webp" | 15 "16": "chromoting16.webp" |
16 }, | 16 }, |
17 "content_scripts": [ | 17 "content_scripts": [ |
18 { | 18 { |
19 "matches": [ | 19 "matches": [ |
20 "OAUTH2_REDIRECT_URL" | 20 "OAUTH2_REDIRECT_URL" |
21 ], | 21 ], |
22 "js": [ "cs_oauth2_trampoline.js" ] | 22 "js": [ "cs_oauth2_trampoline.js" ] |
| 23 }, |
| 24 { |
| 25 "matches": [ |
| 26 "THIRD_PARTY_AUTH_REDIRECT_URL" |
| 27 ], |
| 28 "js": [ "cs_third_party_auth_trampoline.js" ] |
23 } | 29 } |
24 ], | 30 ], |
25 "content_security_policy": "default-src 'self'; script-src 'self' TALK_GADGET_
HOST; style-src 'self' https://fonts.googleapis.com; img-src 'self' TALK_GADGET_
HOST; font-src *; connect-src 'self' OAUTH2_ACCOUNTS_HOST GOOGLE_API_HOSTS TALK_
GADGET_HOST https://relay.google.com", | 31 "content_security_policy": "default-src 'self'; script-src 'self' TALK_GADGET_
HOST; style-src 'self' https://fonts.googleapis.com; img-src 'self' TALK_GADGET_
HOST; font-src *; connect-src 'self' OAUTH2_ACCOUNTS_HOST GOOGLE_API_HOSTS TALK_
GADGET_HOST https://relay.google.com", |
| 32 "optional_permissions": [ |
| 33 "<all_urls>" |
| 34 ], |
26 "permissions": [ | 35 "permissions": [ |
27 "OAUTH2_ACCOUNTS_HOST/*", | 36 "OAUTH2_ACCOUNTS_HOST/*", |
28 "OAUTH2_API_BASE_URL/*", | 37 "OAUTH2_API_BASE_URL/*", |
29 "DIRECTORY_API_BASE_URL/*", | 38 "DIRECTORY_API_BASE_URL/*", |
30 "TALK_GADGET_HOST/talkgadget/*", | 39 "TALK_GADGET_HOST/talkgadget/*", |
31 "https://relay.google.com/*", | 40 "https://relay.google.com/*", |
32 "storage", | 41 "storage", |
33 "clipboardRead", | 42 "clipboardRead", |
34 "clipboardWrite" | 43 "clipboardWrite", |
35 ], | 44 ], |
36 "plugins": [ | 45 "plugins": [ |
37 { "path": "remoting_host_plugin.dll", "public": false }, | 46 { "path": "remoting_host_plugin.dll", "public": false }, |
38 { "path": "libremoting_host_plugin.ia32.so", "public": false }, | 47 { "path": "libremoting_host_plugin.ia32.so", "public": false }, |
39 { "path": "libremoting_host_plugin.x64.so", "public": false }, | 48 { "path": "libremoting_host_plugin.x64.so", "public": false }, |
40 { "path": "remoting_host_plugin.plugin", "public": false } | 49 { "path": "remoting_host_plugin.plugin", "public": false } |
41 ], | 50 ], |
42 "requirements": { | 51 "requirements": { |
43 "plugins": { | 52 "plugins": { |
44 "npapi": false | 53 "npapi": false |
45 } | 54 } |
46 } | 55 } |
47 } | 56 } |
OLD | NEW |