-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
81 lines (79 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>YTpop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<span class="inline">
<img src="/favicon.png" height="25">
<h1 style="margin:0">YT Pop</h1>
</span>
<details open>
<summary>Functional</summary>
<label class="switch">
<input type="checkbox" id="enabled">
<span class="slider"></span>
</label>
<label for="enabled">No ad player</label>
<br>
<label class="switch">
<input type="checkbox" id="down">
<span class="slider"></span>
</label>
<label for="down">Download button</label>
<br>
<label class="switch">
<input type="checkbox" id="noads">
<span class="slider"></span>
</label>
<label for="noads">No static ads</label>
<br>
<label class="switch">
<input type="checkbox" id="novideoads">
<span class="slider"></span>
</label>
<label for="novideoads">No video ads</label>
<br>
<label class="switch">
<input type="checkbox" id="norick">
<span class="slider"></span>
</label>
<label for="norick">No rickrolls :(</label>
</details>
<details open>
<summary>Styling</summary>
<label class="switch">
<input type="checkbox" id="nocurves">
<span class="slider"></span>
</label>
<label for="nocurves">No curves</label>
<br>
<label class="switch">
<input type="checkbox" id="noshorts">
<span class="slider"></span>
</label>
<label for="noshorts">No youtube shorts</label>
<br>
<label class="switch">
<input type="checkbox" id="nothanks">
<span class="slider"></span>
</label>
<label for="nothanks">No thanks button</label>
<br>
<label class="switch">
<input type="checkbox" id="nomix">
<span class="slider"></span>
</label>
<label for="nomix">No playlists (mix) videos</label>
<br>
<label class="switch">
<input type="checkbox" id="nopink">
<span class="slider"></span>
</label>
<label for="nopink">No pink progress</label>
</details>
<label id="ver" style="position:absolute;right:0;bottom:0;margin:2px;">v0</label>
<script src="popup.js"></script>
</body>
</html>