-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (29 loc) · 784 Bytes
/
Copy pathpopup.html
File metadata and controls
34 lines (29 loc) · 784 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<header>
<img src="icons/icon48.png" alt="" />
<h1>X Mate</h1>
</header>
<div class="stat">
<span id="count">0</span>
<label>ads blocked</label>
</div>
<label class="switch-row">
<span>Block ads on X</span>
<span class="switch">
<input type="checkbox" id="enabled-toggle" />
<span class="slider"></span>
</span>
</label>
<button id="reset-btn">Reset counter</button>
<footer>
<a href="https://github.com/alixaprodev/x_mate" target="_blank" rel="noopener noreferrer">Source on GitHub</a>
</footer>
<script src="popup.js"></script>
</body>
</html>