-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
69 lines (61 loc) · 1.83 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="popup.css">
<script src="./popup.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<title>tweeks</title>
</head>
<body>
<div id="settings">
<div class="section">
<label class="check">
<div class="title">Hide Tweet views</div>
<input type="checkbox" id="hide-views">
</label>
</div>
<div class="section">
<label class="check">
<div class="title">Hide main menu items</div>
</label>
<div class="subsection">
<label class="check">
<div class="title">Explore</div>
<input type="checkbox" id="hide-explore">
</label>
<label class="check">
<div class="title">Bookmarks</div>
<input type="checkbox" id="hide-bookmarks">
</label>
<label class="check">
<div class="title">Lists</div>
<input type="checkbox" id="hide-lists">
</label>
<label class="check">
<div class="title">Messages</div>
<input type="checkbox" id="hide-messages">
</label>
</div>
</div>
<div class="section">
<label class="check">
<div class="title">Hide sidebar items</div>
</label>
<div class="subsection">
<label class="check">
<div class="title">What's happening</div>
<input type="checkbox" id="hide-whats-happening">
</label>
<label class="check">
<div class="title">Who to follow</div>
<input type="checkbox" id="hide-who-to-follow">
</label>
</div>
</div>
</div>
<div id="otherURL">
Tweeks is currently only supported on Twitter. Please visit Twitter to access the settings menu.
</div>
</body>
</html>