-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
42 lines (41 loc) · 1.11 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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Content Filter Settings</title>
<style>
body {
width: 500px;
padding: 20px;
font-family: Arial, sans-serif;
}
textarea {
width: 100%;
height: 150px;
margin-bottom: 10px;
}
button {
padding: 10px 15px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h2>Filter Settings</h2>
<h3>Blocked Sites</h3>
<textarea id="blockedSites" placeholder="Enter one site per line"></textarea>
<h3>Inappropriate Keywords</h3>
<textarea id="inappropriateKeywords" placeholder="Enter one keyword per line"></textarea>
<button id="saveBtn">Save</button>
<p id="status"></p>
<script src="options.js"></script>
</body>
</html>