-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
38 lines (32 loc) · 928 Bytes
/
settings.html
File metadata and controls
38 lines (32 loc) · 928 Bytes
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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Extension Settings</title>
<link rel="stylesheet" href="settings.css" />
</head>
<body>
<div class="container">
<h1>⚙️ Settings</h1>
<div class="setting-item">
<label>Tab Switch Threshold</label>
<input type="number" id="thresholdInput" min="1" value="10" />
</div>
<div class="setting-item">
<label>
<input type="checkbox" id="enableSound" /> Enable Sound Alert
</label>
</div>
<div class="setting-item">
<label>
<input type="checkbox" id="enableDark" /> Force Dark Mode
</label>
</div>
<button id="saveBtn">Save Settings</button>
<p id="status"></p>
<a class="back" href="popup.html">← Back to Popup</a>
</div>
<script src="settings.js"></script>
</body>
</html>