Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / remoting / webapp / app_remoting / manifest_common.json.jinja2
bloba1f87b8f1fd61a4550a714f8c9d99c6f5b7f8e16
1   {{ MANIFEST_KEY_FOR_UNOFFICIAL_BUILD }}
2   "name": "{{APP_NAME}}",
3   "description": "{{APP_DESCRIPTION}}",
4   "version": "{{ FULL_APP_VERSION }}",
5   "manifest_version": 2,
6   "default_locale": "en",
7   "app": {
8     "background": {
9       "page": "arv_background.html"
10     }
11   },
12   "import": [{
13       "id": "koejkfhmphamcgafjmkellhnekdkopod"
14     }
15   ],
16   "icons": {
17     "128": "icon128.png",
18     "48": "icon48.png",
19     "16": "icon16.png"
20   },
21   "optional_permissions": [
22     "<all_urls>"
23   ],
24   "permissions": [
25     "{{ APP_REMOTING_API_BASE_URL }}/*",
26     "{{ DIRECTORY_API_BASE_URL }}/*",
27     "{{ OAUTH2_ACCOUNTS_HOST }}/*",
28     "{{ OAUTH2_API_BASE_URL }}/*",
29     "{{ TALK_GADGET_HOST }}/talkgadget/*",
30     "app.window.shape",
31     "clipboardRead",
32     "clipboardWrite",
33     "contextMenus",
34     "fileSystem",
35     "fullscreen",
36     "https://relay.google.com/*",
37     "identity",
38     "pointerLock",
39     "storage",
40     {
41       "socket": [
42         "udp-send-to",
43         "udp-bind",
44         "udp-multicast-membership",
45         "resolve-host",
46         "network-state"
47       ]
48     }
49   ],
50   "sockets": {
51     "tcp": {
52       "connect": "{{ XMPP_SERVER }}"
53     }
54   },
55   "oauth2": {
56     "client_id": "{{ REMOTING_IDENTITY_API_CLIENT_ID }}",
57     "scopes": [
58       {{ OAUTH_GDRIVE_SCOPE }}
59       "https://www.googleapis.com/auth/appremoting.runapplication",
60       "https://www.googleapis.com/auth/googletalk",
61       "https://www.googleapis.com/auth/userinfo#email",
62       "https://www.googleapis.com/auth/userinfo.profile"
63     ]
64   },
65   "sandbox": {
66     "pages": [ "arv_wcs_sandbox.html" ]
67   }