-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (31 loc) · 1023 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bionic Reader Settings</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container">
<h2>Bionic Reader Settings</h2>
<label for="percentage-slider">Bold Percentage:</label>
<input type="range" id="percentage-slider" min="0" max="100" value="50" />
<span id="percentage-value">50%</span>
<label for="word-count">Bold Every X Words:</label>
<input type="number" id="word-count" min="1" value="3" />
<label for="bold-weight-slider">Bold Weight:</label>
<input
type="range"
id="bold-weight-slider"
min="100"
max="900"
step="100"
value="700"
/>
<span id="bold-weight-value">700</span>
<button id="toggle-bionic">Enable Bionic Reading</button>
</div>
<script src="popup.js"></script>
</body>
</html>