forked from Nandika-A/EyeProtection
-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.html
33 lines (32 loc) · 1.12 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Eye Protection Extension Settings</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="container">
<h1>Eye Protection Extension Settings</h1>
<div class="setting-group">
<h2>Keyboard Shortcut</h2>
<p>Set a custom shortcut to toggle Eye Protection Mode:</p>
<div class="input-group">
<input type="text" id="shortcut" placeholder="e.g., Ctrl+E">
<button id="saveShortcut">Save</button>
</div>
<p class="hint">Press the desired key combination and click Save.</p>
</div>
<p id="message"></p>
<div class="setting-group">
<h2>Custom Alert Message</h2>
<p>Set a custom alert message for yourself as a reminder</p>
<div class="input-group">
<input type="text" id="userinput" placeholder="your message">
<button id="saveMessage">Save</button>
</div>
</div>
<p id="messagesaved"></p>
</div>
<script src="options.js"></script>
</body>
</html>