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

Side by Side Diff: chrome/browser/resources/chat_manager/manifest.json

Issue 3184018: Fix the size of the roster chat panel and update the JSON format. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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
« 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDrlwvcbUtVrbQvI7EPV1BTa63N8YkbB ToHzxlMl0IzSBwOV+TUOsHE8vRq0HZWuwMAGeH8WdWVC3HRNdES8lScjlzxb1TsTQJAsF+hLXgcjgCUS SSGCfFzypvuvKsRQTx0d02yfWKJa47o0Ws5wL72NVtc7c51HujwWYg+Mz01wIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDrlwvcbUtVrbQvI7EPV1BTa63N8YkbB ToHzxlMl0IzSBwOV+TUOsHE8vRq0HZWuwMAGeH8WdWVC3HRNdES8lScjlzxb1TsTQJAsF+hLXgcjgCUS SSGCfFzypvuvKsRQTx0d02yfWKJa47o0Ws5wL72NVtc7c51HujwWYg+Mz01wIDAQAB",
3 "name": "Google Chat Manager", 3 "name": "Google Chat Manager",
4 "version": "1.0.3", 4 "version": "1.0.8",
5 "icons": { 5 "icons": {
6 "128": "128.png", 6 "128": "128.png",
7 "24": "24.png", 7 "24": "24.png",
8 "32": "32.png", 8 "32": "32.png",
9 "48": "48.png" 9 "48": "48.png"
10 }, 10 },
11 "description": "Google Chat Manager", 11 "description": "Google Chat Manager",
12 "background_page": "background.html", 12 "background_page": "background.html",
13 "content_scripts": [ { 13 "content_scripts": [ {
14 "js": [ 14 "js": [
(...skipping 12 matching lines...) Expand all
27 ], 27 ],
28 "matches": [ 28 "matches": [
29 "*://mail.google.com/*" 29 "*://mail.google.com/*"
30 ], 30 ],
31 "run_at": "document_end" 31 "run_at": "document_end"
32 }], 32 }],
33 "permissions": [ 33 "permissions": [
34 "tabs", 34 "tabs",
35 "*://talkgadget.google.com/*" 35 "*://talkgadget.google.com/*"
36 ], 36 ],
37 "launch": {
38 "local_path": "central_roster_viewer.html",
39 "container": "panel"
40 },
41 "app": { 37 "app": {
42 "launch": { 38 "launch": {
43 "local_path": "central_roster_viewer.html", 39 "local_path": "central_roster_viewer.html",
44 "container": "panel" 40 "container": "panel",
41 "width": 225,
42 "height": 360
45 } 43 }
46 } 44 }
47 } 45 }
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