-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (39 loc) · 966 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 250px;
}
#search-input {
width: 100%;
padding: 6px;
margin-bottom: 16px;
}
#results-container {
list-style-type: none;
padding: 0;
margin: 0;
}
#results-container li {
padding: 6px 0;
}
#results-container li a {
text-decoration: none;
color: #1a0dab;
}
#results-container li a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
Load a ChatGPT conversation for the Save button to appear. <br/><br/>
To save a new conversation, refresh the page and click the conversation name for proper functionality.
<h3>Search</h3>
<input type="text" id="search-input">
<ul id="results-container"></ul>
<script src="shared.js"></script>
<script src="popup.js"></script>
</body>
</html>