forked from valpackett/soundfixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
42 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css">
<div id="elements-pane">
<header>
<h1>SoundFixer</h1>
<a href="https://github.com/unrelentingtech/soundfixer" class="info-opener" target="_blank"><img src="info.svg" alt="Extension Info"></a>
</header>
<template id="elements-tpl">
<li>
<div class="element-label"></div>
<label>
<span>Gain</span>
<input type="range" class="element-gain" min="0" max="5" step="0.05" />
<span class="target"></span>
</label>
<label>
<span>Pan</span>
<input type="range" class="element-pan" min="-1" max="1" step="0.05" />
<span class="target"></span>
</label>
<div class="checkboxes">
<label>
<span>Mono</span>
<input type="checkbox" class="element-mono" />
</label>
<label>
<span>Flip L/R</span>
<input type="checkbox" class="element-flip" />
</label>
</div>
</li>
</template>
<ul id="elements-list">
</ul>
<p class="info">
Note: if you get silence after touching a control, that means this extension can't do anything on this site because the site uses cross-domain media. Because Security™ :(
</p>
</div>
<script src="popup.js"></script>