-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
29 lines (25 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NSFW Safe History Settings</title>
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="p-4">
<div class="container">
<h1 class="text-2xl font-bold mb-4">NSFW Safe History Settings</h1>
<label class="flex items-center mb-4">
<input type="checkbox" id="autoDelete" class="mr-2" />
<span>Automatically delete flagged pages from history</span>
</label>
<h2 class="text-xl font-semibold mb-2">Keywords</h2>
<input type="file" id="fileInput" class="mb-4" />
<ul id="keywordList" class="list-disc pl-5 mb-4"></ul>
<div class="flex items-center mb-4">
<input type="text" id="newKeyword" placeholder="Add a keyword" class="border p-2 rounded mr-2" />
<button id="addKeyword" class="bg-blue-500 text-white p-2 rounded">Add</button>
</div>
</div>
<script src="options.js"></script>
</body>
</html>