-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
49 lines (49 loc) · 1.22 KB
/
popup.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>RC Video Companion</title>
<style>
body {
width: 300px;
}
main > div {
margin: 10px 0;
}
main > div > button {
width: 200px;
padding: 4px;
border-radius: 4px;
border: 1px solid #ccc;
}
button + span {
margin-left: 15px;
}
main > p > button {
border: none;
background: none;
color: dodgerblue;
text-decoration: underline;
cursor: pointer;
}
</style>
</head>
<body>
<main>
<div>
<button id="switch-to-rcv-tab">Switch To RCV tab</button><span></span>
</div>
<div>
<button id="toggle-rcv-mute">Toggle Mic Mute</button><span></span>
</div>
<div>
<button id="toggle-rcv-camera">Toggle Camera On/Off</button><span></span>
</div>
<div>
<button id="toggle-rcv-sharing">Start/Stop Screen Sharing</button><span></span>
</div>
<p style="text-align:center"><button id="configureShortcuts">Configure Shortcuts</button></p>
</main>
<script src="commands.js"></script>
<script src="popup.js"></script>
</body>
</html>