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

Side by Side Diff: chrome/browser/resources/chromeos/echo/manifest.json

Issue 10558009: [Chrome OS ECHO]: Add favicon and intent handler title. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc 2 // chrome-extension://dfgpjpjbeeflfdhdpabeeeheghdmeigc
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzzB6c4Z0cusW6trA/issIOyMaxXtPfM YQclO0Dg5rOrS8SZLOAio0G4TpYDvY8z/BPdAH3a1BOSeetey8tBSdcIhOoYpqN3i9yIFuZVwHuOt83A WnJrxinVUpY05HtTblopGvGtQNlCR5crMdG+uc2yI3NlPOFZVDrFXtOv/LXQIDAQAB",
4 "name": "Chrome OS ECHO Extension", 4 "name": "Chrome OS ECHO Extension",
5 "version": "0.0.3", 5 "version": "0.0.3",
6 "description": "Chrome OS ECHO Extension", 6 "description": "Chrome OS ECHO Extension",
7 "manifest_version": 2, 7 "manifest_version": 2,
8 "content_security_policy": "default-src 'self'; connect-src 'self' https://chr omeos-registration.googleapis.com", 8 "content_security_policy": "default-src 'self'; connect-src 'self' https://chr omeos-registration.googleapis.com",
9 "permissions": [ 9 "permissions": [
10 "cookies", 10 "cookies",
11 "echoPrivate", 11 "echoPrivate",
12 "https://*/*" 12 "https://*/*"
13 ], 13 ],
14 "icons": {
15 "16": "chrome16.png"
16 },
14 "default_locale": "en", 17 "default_locale": "en",
15 "web_accessible_resources": [ 18 "web_accessible_resources": [
16 "main.html", 19 "main.html",
17 "main.js", 20 "main.js",
18 "style.css" 21 "style.css"
19 ], 22 ],
20 "intents": { 23 "intents": {
21 "https://crosecho.com/startEcho": [{ 24 "https://crosecho.com/startEcho": [{
22 "type" : ["application/vnd.chromeos.echo"], 25 "type" : ["application/vnd.chromeos.echo"],
23 "title" : "", 26 "title" : "chrome",
24 "path" : "main.html", 27 "path" : "main.html",
25 "disposition" : "inline" 28 "disposition" : "inline"
26 }] 29 }]
27 } 30 }
28 } 31 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698