-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
59 lines (46 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Hide Twitter Elements - HTE</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- _________ Fonts _______ -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="assets/fonts/stylesheet.css">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="main-container">
<header>
<div class="container">
<div class="header-wrap">
<br>
<h6 style="color:#fff">Hide Twitter Elements</h2>
<br>
<label class="switch" style="color:#fff;"> Analytics
<input type="checkbox" id="on-off-analytics">
<span class="slider round"></span>
</label>
<hr>
<label class="switch" style="color:#fff"> Comments
<input type="checkbox" id="on-off-comments">
<span class="slider round comments-toggle"></span>
</label>
<hr>
<label class="switch" style="color:#fff"> Retweets
<input type="checkbox" id="on-off-retweets">
<span class="slider round retweets-toggle"></span>
</label>
<hr>
<label class="switch" style="color:#fff"> Like
<input type="checkbox" id="on-off-like">
<span class="slider round like-toggle"></span>
</label>
</div>
</div>
</header>
<script src="assets/lib/jquery.min.js"></script>
<script src="popop.js"></script>
</body>
</html>