-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
144 lines (129 loc) · 3.03 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
body {
font-family: 'Roboto', sans-serif;
font-size: 14px;
}
img.logo {
height: 48px;
width: 132px;
}
img.anya {
float: right;
height: 128px;
width: 128px;
margin: 5px;
}
#lmnt_api_key {
font-family: 'Courier New', monospace;
margin-left: 8px;
width: 300px;
}
.centered {
margin: 24px auto;
max-width: 600px;
}
.section {
margin-bottom: 16px;
}
.disclaimer, #status {
font-style: italic;
}
.step .headline {
font-weight: bold;
font-size: 22px;
display: flex;
gap: 12px;
margin-bottom: 10px;
align-items: center;
}
.step {
margin-top: 40px;
}
.headline .number {
border-radius: 40px;
background: #1689d6;
width: 22px;
height: 19px;
text-align: center;
font-size: 14px;
padding-top: 3px;
color: white;
}
.step .section {
margin-left: 34px;
}
.apikey {
display: flex;
align-items: center;
}
.apikey button {
margin-left: 4px;
}
#voiceOptions {
margin-top: 80px;
}
</style>
<title>LMNT character.ai Speech Extension Options</title>
</head>
<body>
<div class="centered">
<div>
<a href="https://www.lmnt.com" target="_blank"><img src="./images/lmnt-logo.webp" class="logo" alt="LMNT, Inc. Logo"></a>
</div>
<h1>LMNT character.ai Speech Extension</h1>
<img src="./images/icon-128.png" alt="A sci-fi woman's profile image." class="anya">
<div class="disclaimer section">
*For entertainment purposes only, and not affiliated with <a href="https://www.character.ai" target="_blank">character.ai</a>.
</div>
<div class="section">
Experiment with <a href="https://www.lmnt.com" target="_blank">LMNT-produced</a> AI speech and talk with your favorite characters.
</div>
<div class="step">
<div class="headline">
<div class="number">
1
</div>
Get an LMNT API key
</div>
<div class="section">
Visit the <a href="https://app.lmnt.com/account" target="_blank">LMNT account page</a> and create a new API key.
</div>
<div class="section apikey">
<form>
<label for="lmnt_api_key">Paste it here:</label>
<input name="lmnt_api_key" id="lmnt_api_key">
</form>
<button id="save">Save</button>
</div>
<div id="status" class="section"></div>
</div>
<div class="step">
<div class="headline">
<div class="number">
2
</div>
<div>
Go to <a href="https://character.ai" target="_blank">character.ai</a>
</div>
</div>
<div class="section">
Chat with someone...and make sure you have your volume up.
</div>
<div class="section">
Have fun!
</div>
</div>
<div id="voiceOptions" style="display: none;">
<hr>
<h2>Additional options</h2>
<label for="voiceSelect">Default voice:</label>
<select id="voiceSelect"></select>
</div>
</div>
<script src="scripts/options.js"></script>
</body>
</html>