-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
37 lines (34 loc) · 851 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>X Posts Hider</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="popup.js"></script>
</head>
<body>
<label>
<input type="checkbox" id="likesCheckbox" checked>
Min Likes:
</label>
<input type="number" id="likes" />
<br />
<label>
<input type="checkbox" id="retweetsCheckbox" checked>
Min Retweets:
</label>
<input type="number" id="retweets" />
<br />
<label>
<input type="checkbox" id="commentsCheckbox" checked>
Min Comments:
</label>
<input type="number" id="comments" />
<br />
<label>
<input type="checkbox" id="nonVerifiedCheckbox">
Include non-verified users
</label>
<br />
<button id="saveButton">Save Settings</button>
</body>
</html>