-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
39 lines (39 loc) · 846 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>YouTube Volume Control</title>
<style>
body {
font-family: Arial, sans-serif;
width: 200px;
padding: 10px;
}
input[type="range"] {
width: 100%;
}
.disabled {
opacity: 0.5;
pointer-events: none;
}
#notYouTubeMessage {
color: #666;
font-style: italic;
display: none;
}
.volume-control {
margin-bottom: 15px;
}
</style>
</head>
<body>
<div id="controls">
<div class="volume-control">
<h3>Youtube Ad Volume <span id="adVolumeLabel">0%</span></h3>
<input type="range" id="adVolumeSlider" min="0" max="1" step="0.01">
</div>
</div>
<p id="notYouTubeMessage">Extension only works on YouTube</p>
<script src="constants.js"></script>
<script src="popup.js"></script>
</body>
</html>