-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
48 lines (34 loc) · 1.34 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
<html>
<head>
<title>Filter Anime</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<div id = "container">
<div class = "header header-background unselectable">
MAL Filter
</div>
<div class = "switch-text unselectable">Enabled</div>
<label class = "switch">
<input id = "s-m" type = "checkbox">
<div class = "slider round"></div>
</label>
<div class = "separator"></div>
<div class = "separator-text unselectable">Extras</div>
<div class = "separator"></div>
<div class = "switch-text unselectable" title = "renumbers top anime list after removing filtered anime">Renumber</div>
<label class = "switch">
<input id = "s-renumber" type = "checkbox">
<div class = "slider round"></div>
</label>
<div class = "switch-text unselectable"
title = "if anime are filtered out, their titles will be listed at bottom of the page">Footer</div>
<label class = "switch">
<input id = "s-footer" type = "checkbox">
<div class = "slider round"></div>
</label>
<button id = "go-to-options" class = "options-button">Filters</button>
<script type="text/javascript" src="./popup.js"></script>
</div>
</body>
</html>