-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpopup.html
More file actions
29 lines (27 loc) · 756 Bytes
/
popup.html
File metadata and controls
29 lines (27 loc) · 756 Bytes
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
<!doctype html>
<html>
<head>
<title>Watch Next Extension's Popup</title>
<link rel="stylesheet" href="popup.css" />
<meta charset="utf-8" />
<script src="scripts/credentials.js"></script>
<script src="scripts/config.js"></script>
<script src="scripts/popup.js"></script>
</head>
<body>
<div class="playlistControl">
<input type="checkbox" id="watchNextEnabled" />
<label for="watchNextEnabled" class="autoplay switch">
Autoplay
</label>
<div class="deleteall" id="deleteall">
</div>
<div class="options">
<button id="optionsButton">⚙</button>
</div>
</div>
<div id="history" class="history"></div>
<div id="watchNext" class="watchNext clearfix"></div>
<div class="playlistDuration" id="duration"></div>
</body>
</html>