-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
49 lines (48 loc) · 1.12 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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Twitter Hider</h1>
<div class="main-container">
<div class="left-column">
<p>
<label>
Hide retweets
</label>
</p>
<p>
<label>
Hide self-replies
</label>
</p>
<p>
<label>
Enable on home feed
</label>
</p>
</div>
<div class="right-column">
<p>
<label>
<input type="checkbox" id="hideRetweetsCheckbox" class="toggle-input">
<span class="switch"></span>
</label>
</p>
<p>
<label>
<input type="checkbox" id="hideSelfRepliesCheckbox" class="toggle-input">
<span class="switch"></span>
</label>
</p>
<p>
<label>
<input type="checkbox" id="enableOnHomepageCheckbox" class="toggle-input">
<span class="switch"></span>
</label>
</p>
</div>
</div>
<script src="js/popup.js"></script>
</body>
</html>