-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
38 lines (38 loc) · 1.51 KB
/
popup.html
File metadata and controls
38 lines (38 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>OpenQuant Solver Settings</title>
<style>
body { font-family: sans-serif; width: 250px; padding: 10px; }
.setting { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.slider-container { display: flex; align-items: center; }
#speedSlider { flex-grow: 1; margin: 0 10px; }
#speedValue { min-width: 30px; text-align: right; }
.credits { font-size: 0.8em; margin-top: 15px; border-top: 1px solid #ccc; padding-top: 10px; }
.credits a { color: #3366cc; text-decoration: none; }
.credits a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h3>OpenQuant Solver</h3>
<div class="setting">
<label for="toggleSolver">Enable Solver:</label>
<input type="checkbox" id="toggleSolver">
</div>
<div class="setting">
<label for="speedSlider">Speed:</label>
<div class="slider-container">
<span>Slow</span>
<input type="range" id="speedSlider" min="1" max="100" step="1">
<span>Fast</span>
</div>
<span id="speedValue"></span>
</div>
<div class="credits">
<p>Credits to: jashgro</p>
<p><a href="https://github.com/BlackHatDevX/OpenQuant.co-Math-Game-Solver-Extension" target="_blank">GitHub Repo</a></p>
<p><a href="https://www.linkedin.com/in/jash-gro/" target="_blank">LinkedIn Profile</a></p>
</div>
<script src="popup.js"></script>
</body>
</html>