-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (51 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>YouTube Ad Blocker</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<!-- Header with logo -->
<div class="header">
<div class="logo">
<img src="assets/icon-48.png" alt="Logo">
<h1>YouTube Ad Blocker</h1>
</div>
<!-- Toggle switch -->
<label class="switch">
<input type="checkbox" id="toggleButton" checked>
<span class="slider"></span>
</label>
</div>
<!-- Stats card -->
<div class="stats-card">
<div class="counter-container">
<div class="counter" id="adsBlocked">0</div>
<div class="counter-label">Ads Blocked</div>
</div>
<div class="time-saved">
<div class="time" id="timeSaved">0</div>
<div class="time-label">Minutes Saved</div>
</div>
</div>
<!-- Action buttons -->
<div class="actions">
<a href="https://github.com/sh13y/youtube-ad-blocker" target="_blank" class="button github">
<img src="assets/github.svg" alt="GitHub">
Star on GitHub
</a>
<a href="https://www.buymeacoffee.com/sh13y" target="_blank" class="button donate">
☕ Buy me a coffee
</a>
</div>
<!-- Status -->
<div class="status">
<div class="status-dot active"></div>
<span>Protection Active</span>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>