-
Notifications
You must be signed in to change notification settings - Fork 5
/
popup.html
45 lines (44 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clear Space</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<header>
<h1>Clear Space</h1>
</header>
<main>
<section class="current-features-canvas">
<ul id="youtube-features-list">
<li>Removes immediate access to shorts tabs on home page</li>
<li>Hides categories/tags container</li>
<li>Eliminates shorts navigation from home page</li>
</ul>
</section>
<div class="buttons-container">
<h3>Improve Clear space</h3>
<div class="feature-request-box">
<button id="feature-request-btn">
<a href="https://github.com/Santhoshmani1/Clear-Space/labels/feature" target="_blank">Request a Feature</a>
</button>
</div>
<div class="report-issue-box">
<button id="report-issue-btn">
<a href="https://github.com/Santhoshmani1/Clear-Space/issues" target="_blank">Report an Issue</a>
</button>
</div>
</div>
<section class="for-developers">
<h3>For Developers</h3>
<button>
<a href="https://github.com/Santhoshmani1/Clear-Space" target="_blank"
>View Source on Github</a
>
</button>
</section>
</main>
</body>
</html>