-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
45 lines (42 loc) · 1.29 KB
/
Copy pathpopup.html
File metadata and controls
45 lines (42 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="app-container">
<div class="header">
<img src="icon.png" alt="Logo" class="logo" onerror="this.style.display='none'">
<div class="title-area">
<h1>Red Block <span class="beta-badge">BETA</span></h1>
<div class="status-indicator">
<span class="pulse" id="statusPulse"></span>
<span id="statusText">Active & Guarding</span>
</div>
</div>
</div>
<div class="toggle-container">
<span>Master Switch</span>
<label class="switch">
<input type="checkbox" id="masterToggle" checked>
<span class="slider"></span>
</label>
</div>
<div class="stats-grid">
<div class="stat-box">
<div class="stat-value" id="adsSkipped">0</div>
<div class="stat-label">Video Ads Skipped</div>
</div>
<div class="stat-box">
<div class="stat-value" id="timeSaved">0s</div>
<div class="stat-label">Time Saved</div>
</div>
<div class="stat-box full-width">
<div class="stat-value" id="bannersBlocked">0</div>
<div class="stat-label">Small Ads & Banners Destroyed</div>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>