add audio transcription module

This commit is contained in:
makaveli10
2023-05-26 03:10:55 +08:00
parent 9a43ba607a
commit 9c2a4259d0
25 changed files with 1540 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<html>
<head>
<title>Audio Transcription</title>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css" type="text/css">
</head>
<body>
<div class="header"><img src="./collabora.png"/> <h1>Audio Transcription</h1></div>
<div id="status"></div>
<div id="timeRem"></div>
<div class="buttonContainer">
<div class="button" id="start">Start Capture</div>
<div class="button" id="finish">Save Capture</div>
<div class="button" id="cancel">Cancel Capture</div>
</div>
<div class="notes">After capture is finished, a new tab will be opened automatically for you to
name and save the file. Please do not close the tab before saving the file!</div>
<ul> Hotkeys:
<li id="startKey">Ctrl/Command + Shift + to start capture on current tab</li>
<li id="endKey">Ctrl/Command + Shift + X 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>
<p id="GitHub">GitHub</p>
</div>
</body>
</html>