-
Notifications
You must be signed in to change notification settings - Fork 116
/
popup.html
26 lines (26 loc) · 987 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
<html>
<head>
<title>Chrome Audio Capture</title>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css" type="text/css">
</head>
<body>
<div class="header"><img src="./icon.png"/> <h1>Chrome Audio Capture</h1></div>
<div class="buttonContainer">
<div class="button" id="start">Start Capture</div>
<div class="button" id="finish">Finish Capture</div>
<div class="button" id="cancel">Cancel Capture</div>
</div>
<div id="status"></div>
<div id="timeRem"></div>
<ul> Hotkeys:
<li id="startKey">MacCtrl + U to start capture on current tab</li>
<li id="endKey">MacCtrl + I to stop capture on current tab</li>
</ul>
<p class="extra">Hotkeys may not work if another extension is using the same hotkeys</p>
<p class="extra">Currently the max capture time is 20 minutes due to Chrome memory contraints</p>
<div class="links">
<p id="options">Options</p>
</div>
</body>
</html>