-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
30 lines (27 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
</head>
<body>
<div class="card card-body">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="showRelatedToggle">
<label class="form-check-label" for="showRelatedToggle">Show related videos sidebar</label>
</div>
</div>
<div class="card card-body">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="showEndscreenToggle">
<label class="form-check-label" for="showEndscreenToggle">Show endscreen videos</label>
</div>
</div>
<div class="card card-body">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="logoLinkToggle">
<label class="form-check-label" for="logoLinkToggle">Logo link to homepage</label>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>