-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (50 loc) · 1.13 KB
/
popup.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
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>YouTube Feed Detoxify</title>
<style>
body {
width: 300px;
padding: 10px;
font-family: Arial, sans-serif;
}
#keywords {
width: 100%;
height: 100px;
margin-bottom: 10px;
}
.control-group {
display: flex;
align-items: center;
margin-bottom: 10px;
}
#save-btn {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
#status {
margin-top: 10px;
text-align: center;
color: green;
}
</style>
</head>
<body>
<h2>YouTube Feed Detoxify</h2>
<textarea id="keywords" placeholder="Enter keywords (one per line)"></textarea>
<div class="control-group">
<label>Filter Mode:</label>
<select id="filter-mode">
<option value="hide">Hide Keywords</option>
<option value="show">Show Only Keywords</option>
</select>
</div>
<button id="save-btn">Save Keywords</button>
<div id="status"></div>
<script src="popup.js"></script>
</body>
</html>