forked from garanovich/Trimwise
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
60 lines (58 loc) · 2.02 KB
/
Copy pathoptions.html
File metadata and controls
60 lines (58 loc) · 2.02 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>Trimwise Options</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
padding: 20px;
max-width: 600px;
margin: 40px auto; /* Add space at the top */
background-color: #f9f9ff;
}
.container {
background-color: #ffffff; /* Different background color for the container */
border-radius: 18px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
}
input[type='range'] { width: 100%; }
p { text-align: center; }
.centered {
text-align: center;
margin-bottom: 20px;
}
button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #d0e8f2;
color: #333;
border: none;
border-radius: 18px;
cursor: pointer;
font-size: 16px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
button:hover {
background-color: #b2d4e7;
}
</style>
</head>
<body>
<div class="container">
<h1 class="centered">ChatGPT Lag Fixer Extension Settings</h1>
<p class="centered">Welcome to the ChatGPT Lag Fixer settings page. Adjust the number of messages displayed and contribute to our project.</p>
<label for="batchSizeRange">Select number of messages to display:</label>
<input id="batchSizeRange" type="range" min="5" max="100" step="5" value="50">
<p id="batchSizeValue">50 messages</p>
<button id="saveButton">Save</button>
<p class="centered">Feel free to <a href="https://github.com/garanovich/Trimwise" target="_blank">contribute on GitHub</a> or report issues.</p>
</div>
<script src="options.js"></script>
</body>
</html>