-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (64 loc) · 2.29 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<main>
<header>
<div>Allow AddAd to enhance your viewing experience?</div>
<img id="ext-toggle" src="images/icon512.png" draggable="false">
</header>
<section id="options">
<ul>
<li>
<div>Enable Overlay Ads?</div>
<label id="overlay-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
<li>
<div>Enable Header Ads?</div>
<label id="header-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
<li>
<div>Enable Sidebar Ads?</div>
<label id="sidebar-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
<li>
<div>Enable Footer Ads?</div>
<label id="footer-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
<li>
<div>Enable Popup Ads?</div>
<label id="popup-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
<li>
<div>Enable Redirect Ads?</div>
<label id="redirect-toggle" class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
</li>
</ul>
</section>
<section id="refresh">
Not seeing all of the ads you want? Click <a href="#" id="refresh-ext">here</a> to refresh.
</section>
</main>
<script src="popup.js"></script>
</body>
</html>