-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
60 lines (54 loc) · 1.7 KB
/
Copy pathpopup.html
File metadata and controls
60 lines (54 loc) · 1.7 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voice Claude</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>Voice Claude</h1>
<p class="subtitle">Voice interface for Claude.ai</p>
</div>
<div class="status">
<div class="status-item">
<span class="status-label">Extension:</span>
<span class="status-value active">Active</span>
</div>
<div class="status-item">
<span class="status-label">Page:</span>
<span class="status-value" id="pageStatus">Not on Claude.ai</span>
</div>
</div>
<div class="settings">
<h3>Settings</h3>
<div class="setting-item">
<div class="setting-info">
<label for="autoSpeakToggle">Auto-speak responses</label>
<p class="setting-description">Automatically speak Claude's responses without asking</p>
</div>
<label class="toggle">
<input type="checkbox" id="autoSpeakToggle">
<span class="toggle-slider"></span>
</label>
</div>
</div>
<div class="instructions">
<h3>How to use</h3>
<ol>
<li>Go to <strong>claude.ai</strong></li>
<li>Click the <strong>microphone button</strong> in the chat input</li>
<li>Speak your message</li>
<li>When Claude responds, you'll get a notification</li>
<li>Click <strong>"Yes, let's hear"</strong> to hear the response</li>
</ol>
</div>
<div class="footer">
<p>Made with voice tech</p>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>