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

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

Issue 2507001: Enable Gmail chat interception. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | 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", 4 "version": "1.0.1",
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": [
15 "js/chatbridgeeventtypes.js", 15 "js/chatbridgeeventtypes.js",
16 "js/chatbridgehook.js" 16 "js/chatbridgehook.js"
17 ], 17 ],
18 "matches": [ 18 "matches": [
19 "http://talkgadget.google.com/*", 19 "http://talkgadget.google.com/*",
20 "https://talkgadget.google.com/*" 20 "https://talkgadget.google.com/*"
21 ], 21 ],
22 "run_at": "document_end", 22 "run_at": "document_end",
23 "all_frames": true 23 "all_frames": true
24 },{
25 "js": [
26 "js/chatbridgeeventtypes.js",
27 "js/gmailbridgehook.js"
28 ],
29 "matches": [
30 "http://mail.google.com/*",
31 "https://mail.google.com/*"
32 ],
33 "run_at": "document_end"
24 }], 34 }],
25 "permissions": [ 35 "permissions": [
26 "tabs", 36 "tabs",
27 "http://talkgadget.google.com/*", 37 "http://talkgadget.google.com/*",
28 "https://talkgadget.google.com/*" 38 "https://talkgadget.google.com/*"
29 ], 39 ],
30 "launch": { 40 "launch": {
31 "local_path": "central_roster_viewer.html", 41 "local_path": "central_roster_viewer.html",
32 "container": "panel" 42 "container": "panel"
33 } 43 }
34 } 44 }
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