-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
29 lines (29 loc) · 1015 Bytes
/
popup.html
File metadata and controls
29 lines (29 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YT Audio Toggle</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="card">
<div class="tools">
<div class="circle"><span class="red box"></span></div>
<div class="circle"><span class="yellow box"></span></div>
<div class="circle"><span class="green box"></span></div>
</div>
<div class="card__content">
<h1>Audio Toggle</h1>
<p>Hide or show video while keeping the audio active.</p>
<div class="toggle-switcher">
<input type="checkbox" id="toggle-switch" class="toggle-input">
<label for="toggle-switch" class="toggle-label"></label>
</div>
<p class="status-message">Video playback is currently <span id="video-status">visible</span>.</p>
<footer>Built with ❤️ by Supratim</footer>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>