forked from normful/Chrome-Audio-Capturer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplete.html
24 lines (24 loc) · 849 Bytes
/
complete.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
<html>
<head>
<title>Chrome Audio Capture Options</title>
<script src="complete.js"></script>
<link rel="stylesheet" href="complete.css" type="text/css">
</head>
<body>
<div class="header"><img src="./icon.png"/> <h1 class="header-title">Chrome Audio Capture</h1></div>
<div class="inner">
<div class="progress">
<label for="progrssContainer">Encoding Progress:</label>
<div id="progressContainer">
<div id="encodeProgress"></div>
</div>
</div>
<p id="status"></p>
</div>
<div class="buttonContainer">
<div class="button" id="saveCapture">Save Capture</div>
<div class="button" id="close">Close</div>
</div>
<div class="notes">Thank you for using the extension! Please go <div id="review">here</div> to leave a review!</div>
</body>
</html>