-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
69 lines (67 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
<style>
body {
width: 250px;
padding: 10px;
font-family: Arial, sans-serif;
}
.toggle {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.toggle input {
margin-right: 10px;
}
button {
margin-top: 10px;
padding: 5px;
font-size: 14px;
cursor: pointer;
}
</style>
</head>
<body>
<h3>Settings</h3>
<div class="toggle">
<input type="checkbox" id="featureFollow" />
<label for="featureFollow">Enable Follow Channel (F)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featureNavigate" />
<label for="featureNavigate">Enable Navigate Channel (G)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featurePrev" />
<label for="featurePrev">Enable Previous Video (↑)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featureNext" />
<label for="featureNext">Enable Next Video (↓)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featurePlayPause" />
<label for="featurePlayPause">Enable Play/Pause (Space)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featureMute" />
<label for="featureMute">Enable Mute (M)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featureRewind" />
<label for="featureRewind">Enable Rewind (←)</label>
</div>
<div class="toggle">
<input type="checkbox" id="featureForward" />
<label for="featureForward">Enable Forward (→)</label>
</div>
<!-- Nút Save -->
<button id="saveButton">Save</button>
<script src="js/popup.js"></script>
</body>
</html>