-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
71 lines (70 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
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>YouTube Ad Skipper</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 10px;
text-align: center;
background-color: #1c1c1c;
color: #ff4545;
border-radius: 30px;
}
h1 {
color: #ff4545;
font-size: 24px;
}
.button {
display: inline-block;
padding: 10px 20px;
margin: 10px;
font-size: 14px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #0088cc;
border: none;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s;
}
.button:hover {
background-color: #005c99;
}
.button:active {
background-color: #005c99;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.banner {
margin-top: 20px;
padding: 10px;
border-radius: 15px;
}
.banner img {
height: 50px;
border-radius: 10px;
}
p.status {
color: #4CAF50;
}
</style>
</head>
<body>
<h1>YouTube Ad Skipper</h1>
<p class="status">Status: Active </p>
<p></p>
<p>Skipped ads: <span id="adsSkippedCount">Loading...</span></p>
<a href="https://t.me/omar07ibrahim" target="_blank" class="button">My Telegram</a>
<div class="banner">
<a href="https://www.buymeacoffee.com/omar7i" target="_blank">
<img src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-1.svg" alt="Buy Me A Coffee">
</a>
</div>
<script src="popup.js"></script>
</body>
</html>