1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDrlwvcbUtVrbQvI7EPV1BTa63N8YkbBToHzxlMl0IzSBwOV+TUOsHE8vRq0HZWuwMAGeH8WdWVC3HRNdES8lScjlzxb1TsTQJAsF+hLXgcjgCUSSSGCfFzypvuvKsRQTx0d02yfWKJa47o0Ws5wL72NVtc7c51HujwWYg+Mz01wIDAQAB",
"name": "Google Chat Manager",
"version": "1.0.1",
"icons": {
"128": "128.png",
"24": "24.png",
"32": "32.png",
"48": "48.png"
},
"description": "Google Chat Manager",
"background_page": "background.html",
"content_scripts": [ {
"js": [
"js/chatbridgeeventtypes.js",
"js/chatbridgehook.js"
],
"matches": [
"http://talkgadget.google.com/*",
"https://talkgadget.google.com/*"
],
"run_at": "document_end",
"all_frames": true
},{
"js": [
"js/chatbridgeeventtypes.js",
"js/gmailbridgehook.js"
],
"matches": [
"http://mail.google.com/*",
"https://mail.google.com/*"
],
"run_at": "document_end"
}],
"permissions": [
"tabs",
"http://talkgadget.google.com/*",
"https://talkgadget.google.com/*"
],
"launch": {
"local_path": "central_roster_viewer.html",
"container": "panel"
},
"app": {
"launch": {
"local_path": "central_roster_viewer.html",
"container": "panel"
}
}
}
|