-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
executable file
·52 lines (52 loc) · 1.08 KB
/
manifest.json
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
51
52
{
"name":"Common Hangouts",
"version":"36.0",
"manifest_version":2,
"description":"Google Hangouts, but better",
"homepage_url":"http://bit.ly/1BuZ4nS",
"icons":{
"16":"icons/ch-ico-16.png",
"24":"icons/ch-ico-24.png",
"32":"icons/ch-ico-32.png",
"48":"icons/ch-ico-48.png",
"64":"icons/ch-ico-64.png",
"128":"icons/ch-ico-128.png"
},
"default_locale":"en",
"background":{
"scripts":[
"src/bg.js"
],
"persistent":false
},
"browser_action":{
"default_icon":{
"16":"icons/ch-ico-16.png",
"24":"icons/ch-ico-24.png",
"32":"icons/ch-ico-32.png",
"48":"icons/ch-ico-48.png",
"64":"icons/ch-ico-64.png",
"128":"icons/ch-ico-128.png"
},
"default_title":"Common Hangouts"
},
"content_scripts":[
{
"matches":[
"*://hangouts.google.com/*",
"*://talkgadget.google.com/*/talkgadget/*"
],
"css":[
"src/common.css"
],
// "js":[
// "src/common-h.js"
// ],
"all_frames":true
}
],
"web_accessible_resources": [
"icons/ch-favicon.ico",
"icons/common-h-icons.png"
]
}