-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
51 lines (43 loc) · 1.3 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<title>ChatGPT Chrome Extension</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="main">
<label for="api-key-input">Enter your ChatGPT API key</label>
<input type="text" id="api-key-input">
<div style="display: flex; justify-content: center;">
<button id="save-api-key">Save</button>
</div>
</div>
<h2>Extension Options</h2>
<div>
<label class="list">
<form>
<label for="model-select">Choose a model</label>
<select id="model-select" name="model-select">
</select>
</form>
</label>
</div>
<div>
<label class="switch">
<input type="checkbox" id="addCopyButtonToggle">
<span class="slider round"></span>
</label>
<label for="addCopyButtonToggle">Add Copy Button to Interface</label>
</div>
<div>
<label class="switch">
<input type="checkbox" id="autoCopyResultToggle">
<span class="slider round"></span>
</label>
<label for="autoCopyResultToggle">Automatically Copy Result to Clipboard</label>
</div>
<div style="padding-bottom: 15px;">
</div>
<script src="popup.js"></script>
</body>
</html>