-
Notifications
You must be signed in to change notification settings - Fork 116
/
options.html
32 lines (32 loc) · 1.46 KB
/
options.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
<html>
<head>
<title>Chrome Audio Capture Options</title>
<script src="options.js"></script>
<link rel="stylesheet" href="options.css" type="text/css">
</head>
<body>
<div class="header"><img src="./icon.png"/> <h1>Chrome Audio Capture</h1></div>
<div class="inner">
<h2>Options</h2>
<ul class="options-list">
<li><input type="checkbox" id="mute"><label for="mute">Mute tabs that are being captured</label></li>
<li class="time"><label for="maxTime">Maximum capture time <p class="limit">(enter value from 1 - 20)</p>: </label><input type="text" id="maxTime"> min(s)</li>
<li><input type="checkbox" id="removeLimit"><label for="removeLimit">Remove capture time limit (not recommended)</label></li>
<li id="outputType"><label for="outputType">Output file format:</label>
<input class="radioChoice" id="mp3" type="radio" name="format" value="mp3"> <label for="mp3">.mp3</label>
<input class="radioChoice" id="wav" type="radio" name="format" value="wav"> <label for="wav">.wav</label>
</li>
<li id="qualityLi">
<label for="quality">MP3 Quality: </label>
<select id="quality">
<option value="96">Low</option>
<option value="192">Medium</option>
<option value="320">High</option>
</select>
</li>
</ul>
</div>
<div class="button" id="save">Save Settings</div>
<div id="status"></div>
</body>
</html>