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 "default_locale": "en", | 5 "default_locale": "en", |
6 "app": { | 6 "app": { |
7 "launch": { | 7 "launch": { |
8 "local_path": "main.html" | 8 "local_path": "main.html" |
9 } | 9 } |
10 }, | 10 }, |
11 "icons": { | 11 "icons": { |
12 "128": "chromoting128.png", | 12 "128": "chromoting128.png", |
13 "48": "chromoting48.png", | 13 "48": "chromoting48.png", |
14 "16": "chromoting16.png" | 14 "16": "chromoting16.png" |
15 }, | 15 }, |
16 "content_scripts": [ | 16 "content_scripts": [ |
17 { | 17 { |
18 "matches": [ | 18 "matches": [ |
19 "OAUTH2_REDIRECT_URL" | 19 "OAUTH2_REDIRECT_URL" |
20 ], | 20 ], |
21 "js": [ "cs_oauth2_trampoline.js" ] | 21 "js": [ "cs_oauth2_trampoline.js" ] |
22 } | 22 } |
23 ], | 23 ], |
24 "permissions": [ | 24 "permissions": [ |
25 "https://accounts.google.com/o/oauth2/*", | 25 "https://accounts.google.com/*", |
26 "https://www.google.com/accounts/*", | |
27 "https://www.googleapis.com/chromoting/*", | 26 "https://www.googleapis.com/chromoting/*", |
28 "https://talkgadget.google.com/talkgadget/*", | 27 "https://talkgadget.google.com/talkgadget/*", |
29 "https://relay.google.com/*", | 28 "https://relay.google.com/*", |
30 "clipboardRead", | 29 "clipboardRead", |
31 "clipboardWrite" | 30 "clipboardWrite" |
32 ], | 31 ], |
33 "plugins": [ | 32 "plugins": [ |
34 { "path": "remoting_host_plugin.dll", "public": false }, | 33 { "path": "remoting_host_plugin.dll", "public": false }, |
35 { "path": "libremoting_host_plugin.ia32.so", "public": false }, | 34 { "path": "libremoting_host_plugin.ia32.so", "public": false }, |
36 { "path": "libremoting_host_plugin.x64.so", "public": false }, | 35 { "path": "libremoting_host_plugin.x64.so", "public": false }, |
37 { "path": "remoting_host_plugin.plugin", "public": false } | 36 { "path": "remoting_host_plugin.plugin", "public": false } |
38 ] | 37 ] |
39 } | 38 } |
OLD | NEW |