-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
55 lines (55 loc) · 1.24 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
53
54
55
{
"name": "Mute for Google Meet™",
"version": "1.1.0",
"description": "Universal mute toggle for Google Meet",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": ["tabs", "notifications", "storage"],
"host_permissions": ["https://meet.google.com/*"],
"content_scripts": [{
"matches": ["https://meet.google.com/*"],
"js": ["togglemic.js", "returnToMeetHome.js", "switchToActiveTab.js"]
}],
"commands": {
"toggle-mic": {
"suggested_key": {
"default": "Ctrl+Shift+5"
},
"description": "Toggle Microphone",
"global": true
},
"return-home": {
"suggested_key": {
"default": "Ctrl+Shift+1"
},
"description": "Return to Meet Home",
"global": false
},
"switch-to-active-tab": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "Switch to active Meet tab",
"global": true
},
"toogle-notifications": {
"suggested_key": {
"default": "Ctrl+Shift+8"
},
"description": "Enable/Disable notifications",
"global": false
}
},
"action": {
"default_icon": {
"32": "icons/meet_assist_default.png"
}
},
"icons": {
"16": "icons/meet_assist_16.png",
"48": "icons/meet_assist_48.png",
"128": "icons/meet_assist_128.png"
}
}