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
|
{
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDrlwvcbUtVrbQvI7EPV1BTa63N8YkbBToHzxlMl0IzSBwOV+TUOsHE8vRq0HZWuwMAGeH8WdWVC3HRNdES8lScjlzxb1TsTQJAsF+hLXgcjgCUSSSGCfFzypvuvKsRQTx0d02yfWKJa47o0Ws5wL72NVtc7c51HujwWYg+Mz01wIDAQAB",
"name": "Gmail to Chrome chat bridge (by Google)",
"version": "1.0",
"description": "Gmail to Chrome chat bridge",
"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/*",
"http://mail.google.com/*",
"https://mail.google.com/*"
]
}
|