-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
32 lines (28 loc) · 816 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Play Backlog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<img src="icons/icon48.png" alt="Watch backlog" class="logo">
<h1>Play Backlog</h1>
</header>
<button id="watch-later-tab" onClick="visitWatchLater()"> See Watch Later Videos </button>
<nav>
<ul>
<li><a href="https://github.com/hith3sh/PlayBacklog" target="_blank">GitHub</a></li>
<li><a href="https://github.com/hith3sh/PlayBacklog/issues" target="_blank">Help</a></li>
</ul>
</nav>
<footer>
<p>v1.0.0</p>
</footer>
</div>
<script src="popup.js"></script>
</body>
</html>