forked from muaz-khan/Chrome-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
69 lines (61 loc) · 1.5 KB
/
options.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<style>
body: {
padding: 10px;
}
h2 {
font-size: 1.5em;
font-weight: bold;
}
select {
font-size: 1.2em;
border: 1px solid;
padding: 0;
outline: none!important;
border: 1px solid black !important;
}
select option {
padding: 2px 5px;
border-bottom: 1px solid black;
}
select option:last-child {
border-bottom: 0;
}
label {
font-size: 1.2em;
font-weight: bold;
}
select[disabled] {
background-color: rgba(232, 229, 229, 0.17);
color: rgb(84, 82, 82);
}
</style>
<h2>Select Screen Resolutions:</h2>
<select id="resolutions" size="4">
<option value="fit-screen" selected>Fit Screen</option>
<option value="1080p">Full-HD (1080p)</option>
<option value="720p">HD (720p)</option>
<option value="360p">SD (360p)</option>
</select>
<hr>
<h2>Set Bandwidth:</h2>
<label for="min_bandwidth">Minimum Bandwidth</label>
<input type="text" id="min_bandwidth" value="512" style="width: 40px;">kbps
<br><br>
<label for="max_bandwidth">Maximum Bandwidth</label>
<input type="text" id="max_bandwidth" value="1048" style="width: 40px;">kbps
<hr>
<h2>Password Protected Room?</h2>
<label for="room_password">Set Password</label>
<input type="password" id="room_password" value="">
<br>
<small>Keep empty for NO password.</small>
<hr>
<h2>Set Your Own Room ID:</h2>
<label for="room_id">Set Room ID</label>
<input type="text" id="room_id" value="">
<br>
<small>
It will use your room-id instead of generating random string.
</small>
<hr>
<script src="options.js"></script>