-
Notifications
You must be signed in to change notification settings - Fork 4
/
popup.html
54 lines (54 loc) · 1.87 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Classic YouTube Design</title>
<link rel="stylesheet" href="popup.css">
<script defer src="popup.js"></script>
</head>
<body>
<main>
<div class="sidebar">
<ul class="tabs">
<li class="tab tab--active" data-tab-target="#general">__MSG_general__</li>
<li class="tab" data-tab-target="#watched-overlay">__MSG_watched_overlay__</li>
<li class="tab" data-tab-target="#about">__MSG_about__</li>
</ul>
</div>
<div class="tab-contents">
<div class="tab-content tab-content--active" id="general">
<h1>__MSG_general__</h1>
<div class="toggle">
<input type="checkbox" name="classicYoutubeCheckox" id="classicYoutubeCheckox">
<label for="classicYoutubeCheckox">__MSG_activate_classic_youtube_design__</label>
</div>
<div class="alert alert--blue">
__MSG_please_note_to_apply_changes_you_have_to_reload_page__
</div>
</div>
<div class="tab-content" id="watched-overlay">
<h1>__MSG_watched_overlay__</h1>
<div class="alert alert--yellow">
This option will be accessible in the upcoming 0.2.1 release!
</div>
<!-- <div class="toggle">
<input type="checkbox" name="watchedOverlayCheckbox" id="watchedOverlayCheckbox">
<label for="watchedOverlayCheckbox">__MSG_activate_watched_overlay__</label>
</div> -->
<img src="assets/img/__MSG_@@watched_overlay_img__">
</div>
<div class="tab-content" id="about">
<h1>__MSG_about__</h1>
<div style="text-align: left;">
<ul>
<li>Version: 0.2.0</li>
<li>Author: NebelNidas (Julian Burner)</li>
<li>Homepage: <a href="https://github.com/Cicero-Interactive/Classic-YouTube-Design/">GitHub</a></li>
</ul>
</div>
</div>
</div>
</main>
</body>
</html>