This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
47 lines (47 loc) · 1.75 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<div id="popup-wrapper">
<div id="popup-header">
<h1>9GAG Posts Filter</h1>
</div>
<div id="popup-containers">
<div class="popup-form">
<label for="days">Display days next to username</label>
<input type="checkbox" name="days" id="days_checkbox" >
</br>
<label for="min_days">Minimum account age</label>
<input type="number" name="min_days" id="days_input" placeholder="example: 300">
</br>
<label for="anon">Hide anonymous 9GAGGER</label>
<input type="checkbox" name="anon" id="anon_checkbox" >
</br>
<label for="verified">Hide verified accounts</label>
<input type="checkbox" name="verified" id="verified_checkbox">
</br>
<label for="promoted">Hide promoted posts</label>
<input type="checkbox" name="promoted" id="promoted_checkbox">
</br>
<label for="tags">Hide tags (seperate with commas)</label>
<textarea name="tags" id="tags_area" placeholder="example: 9gag,wtf,dark humour"></textarea>
<label for="title">Include words in title</label>
<input type="checkbox" name="title" id="title_checkbox">
</br>
<label for="spammers">Mark spammers</label>
<input type="checkbox" name="spammers" id="spammers_checkbox">
<input type="number" name="spammers_hours" id="spammers_input" placeholder="average hours between posts">
</br>
<label for="cheers">Hide cheers</label>
<input type="checkbox" name="cheers" id="cheers_checkbox">
</div>
</br>
<a href="https://github.com/AmitBokoDev/9gag-post-filter" id="sauce">view sauce code</a>
</div>
</div>
<script src="assets/js/jquery_slim_mini.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>