-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (47 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<title>YT Title Color</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 10px;
}
h3 {
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="color"], input[type="range"] {
margin-bottom: 15px;
}
</style>
</head>
<body>
<h3>YouTube Title Color Changer</h3>
<p>Adjust settings in real-time:</p>
<label>
<input type="checkbox" id="toggleComments"> Show Comments Section
</label>
<label>
<input type="checkbox" id="toggleSimilarVideos"> Show Similar Videos Section
</label>
<label>
Caption Color:
<input type="color" id="captionColor" value="#ffff00">
</label>
<label>
Caption Size:
<input type="range" id="captionSize" min="20" max="50" value="35">
<span id="captionSizeValue">35px</span>
</label>
<label>
Black Box Opacity:
<input type="range" id="blackBoxOpacity" min="0" max="1" step="0.1" value="0">
<span id="blackBoxOpacityValue">0</span>
</label>
<script src="popup.js"></script>
</body>
</html>