-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
65 lines (65 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
{
"name": "RC Video Companion",
"description": "Use RC Video with ease",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "serviceWorker.js"
},
"permissions": ["tabs"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
}
},
"icons": {
"16": "/images/icon16.png",
"32": "/images/icon32.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
},
"commands": {
"switch-to-rcv-tab": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Switch to RCV tab",
"global": true
},
"toggle-rcv-mute": {
"suggested_key": {
"default": "Alt+Shift+M",
"mac": "Command+MacCtrl+M"
},
"description": "Toggle RCV microphone mute",
"global": false
},
"toggle-rcv-camera": {
"suggested_key": {
"default": "Alt+Shift+V",
"mac": "Command+MacCtrl+V"
},
"description": "Toggle RCV camera on/off",
"global": false
},
"toggle-rcv-sharing": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Command+MacCtrl+S"
},
"description": "Start/stop RCV screen sharing",
"global": false
}
},
"content_scripts": [
{
"matches": ["https://v.ringcentral.com/*"],
"js": ["contentScript.js"]
}
]
}