-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (33 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<div class="header">
<h1>Crunchyroll Spoilerblock</h1>
</div>
<div class="container">
<h2>Episode Thumbnail Hiding</h2>
<span class="switch-label">OFF</span>
<label class="switch">
<input id="imageToggle" type="checkbox" checked>
<span class="slider round"></span>
</label>
<span class="switch-label">ON</span>
<div class="spacer"></div>
<h2>Episode Title Hiding</h2>
<span class="switch-label">OFF</span>
<label class="switch">
<input id="titleToggle" type="checkbox" checked>
<span class="slider round"></span>
</label>
<span class="switch-label">ON</span>
</div>
<div class="footer">
<p>Did this tool help?<br>Check out other work<br>like this by visiting
<a href="http://saqif.com" target="_blank">saqif.com</a></p>
</div>
<script src="popup.js"></script>
</body>
</html>