-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
36 lines (36 loc) · 836 Bytes
/
options.html
File metadata and controls
36 lines (36 loc) · 836 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Settings</title>
<style>
body { font-family: Arial, sans-serif; padding: 10px; }
label { display: block; margin-bottom: 8px; }
input[type=checkbox] { margin-right: 6px; }
</style>
</head>
<body>
<h2>Settings</h2>
<label>
<input type="checkbox" id="toggleHighlightMentions" />
Highlight mentions
</label>
<label>
<input type="checkbox" id="toggleHighlightModerator" />
Highlight moderarots
</label>
<label>
<input type="checkbox" id="toggleHighlight" />
Higlights word in words.json
</label>
<label>
<input type="checkbox" id="toggleDeleted" />
Auto-Show delated messages
</label>
<label>
<input type="checkbox" id="togglehighlightNewUser" />
Higlights New Users
</label>
<script src="options.js"></script>
</body>
</html>