-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
74 lines (62 loc) · 2.34 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
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles/global_styles.css">
<link rel="stylesheet" href="styles/popup_styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<h1>YouTube Spoiler Guard</h1>
<img id="options-link" class="icon-link options-icon" src="rsc/images/settings.svg" alt="settings" height="20px">
</header>
<main>
<!-- <div class="section">
<h2 class="mt-0">This Page</h2>
<div class="options">
<div class="option">
<div>
<h3>Hide spoilers on this page</h3>
<div class="sub-text">youtube.com/subscriptions</div>
</div>
<div class="switch">
<input type="checkbox" class="switch-input">
<div class="switch-control"></div>
</div>
</div>
</div>
</div> -->
<div class="section section2">
<h2>Pinned filters</h2>
<div id="pinned-grid" class="pinned-grid"></div>
</div>
<!-- <div class="section section2">
<h2>Number of videos hidden</h2>
<div class="info-card">
<div class="card-section">
<h1 id="spoiler-count">0</h1>
</div>
<div class="card-section">
<h1>Videos Hidden</h1>
</div>
</div>
</div> -->
</main>
<footer class="footer">
<div class="footer-link">
<div></div>
<div class="external-links">
<a href="https://www.github.com/ngeldvis/Youtube-Spoiler-Guard">
<img class="icon-link" src="rsc/images/github.svg" alt="github" height="20px">
</a>
<a href="/">
<img class="icon-link" src="rsc/images/share.svg" alt="github" height="20px">
</a>
</div>
</div>
</footer>
<script src="popup.js"></script>
</body>
</html>