-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
51 lines (47 loc) · 1.63 KB
/
popup.html
File metadata and controls
51 lines (47 loc) · 1.63 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hush Mode</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="wrap">
<header>
<h1>Hush Mode</h1>
<p class="tag">Remove sound layers. Keep the words.</p>
</header>
<div class="row toggle">
<label class="switch">
<input id="enabled" type="checkbox" />
<span class="slider"></span>
</label>
<span class="label">Enable</span>
</div>
<div class="group">
<div class="row">
<label>Voice boost <span id="voiceBoostVal">+6 dB</span></label>
<input id="voiceBoostDb" type="range" min="0" max="12" step="1" value="6" />
</div>
<div class="row">
<label>Music suppress <span id="musicCutVal">−12 dB</span></label>
<input id="musicCutDb" type="range" min="0" max="24" step="1" value="12" />
</div>
<div class="row">
<label>Bass cut (HPF) <span id="bassCutVal">120 Hz</span></label>
<input id="bassCutHz" type="range" min="20" max="240" step="5" value="120" />
</div>
<div class="row">
<label>Sparkle limit (LPF) <span id="sparkleVal">8000 Hz</span></label>
<input id="sparkleCutHz" type="range" min="2000" max="20000" step="250" value="8000" />
</div>
</div>
<footer>
<button id="reset">Reset</button>
<span class="status" id="status">Idle</span>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>