Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(483)

Side by Side Diff: remoting/webapp/manifest.json

Issue 12566035: Added survey butter-bar to web-app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
(...skipping 11 matching lines...) Expand all
22 "js": [ "cs_oauth2_trampoline.js" ] 22 "js": [ "cs_oauth2_trampoline.js" ]
23 } 23 }
24 ], 24 ],
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", 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",
26 "permissions": [ 26 "permissions": [
27 "OAUTH2_ACCOUNTS_HOST/*", 27 "OAUTH2_ACCOUNTS_HOST/*",
28 "OAUTH2_API_BASE_URL/*", 28 "OAUTH2_API_BASE_URL/*",
29 "DIRECTORY_API_BASE_URL/*", 29 "DIRECTORY_API_BASE_URL/*",
30 "TALK_GADGET_HOST/talkgadget/*", 30 "TALK_GADGET_HOST/talkgadget/*",
31 "https://relay.google.com/*", 31 "https://relay.google.com/*",
32 "storage",
32 "clipboardRead", 33 "clipboardRead",
33 "clipboardWrite" 34 "clipboardWrite"
34 ], 35 ],
35 "plugins": [ 36 "plugins": [
36 { "path": "remoting_host_plugin.dll", "public": false }, 37 { "path": "remoting_host_plugin.dll", "public": false },
37 { "path": "libremoting_host_plugin.ia32.so", "public": false }, 38 { "path": "libremoting_host_plugin.ia32.so", "public": false },
38 { "path": "libremoting_host_plugin.x64.so", "public": false }, 39 { "path": "libremoting_host_plugin.x64.so", "public": false },
39 { "path": "remoting_host_plugin.plugin", "public": false } 40 { "path": "remoting_host_plugin.plugin", "public": false }
40 ], 41 ],
41 "requirements": { 42 "requirements": {
42 "plugins": { 43 "plugins": {
43 "npapi": false 44 "npapi": false
44 } 45 }
45 } 46 }
46 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698