-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (43 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="slider.css">
</head>
<body>
<div class="container">
<div class="searchContainer">
<input class="searchInput" type="text" placeholder="Search" id="searchBox" />
</div>
<div class="tableWrapper">
<table id="dataTable">
<thead>
<tr>
<th>
Channel
</th>
<th>
Rate
</th>
<th></th>
</tr>
</thead>
<tbody id="tableBody"> </tbody>
</table>
</div>
<ul id="instructionsContainer"> </ul>
<div id="defaultPlaybackRateContainer">
<div id="slider-header">
<span id="slider-key" class="slider-key">Default Playback Rate</span>
<span id="slider-value" class="slider-value">1</span>
</div>
<div class="slider-container">
<input type="range" class="youtube-slider" id="youtube-slider" min="1" max="3" step="0.5" value="1">
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>