-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
30 lines (28 loc) · 1.26 KB
/
popup.html
File metadata and controls
30 lines (28 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JumpKey - Open Videos</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="popup-container">
<div class="popup-header">
<div class="header-title">
<img class="extension-icon" src="icons/icon24.png" alt="JumpKey">
<h2 data-i18n="videosViewTitle">Up Next</h2>
</div>
<div class="header-controls">
<input id="filterInput" class="filter-input" type="search" placeholder="Filter videos..." title="Filter videos" aria-label="Filter videos" data-i18n-placeholder="filterPlaceholder" data-i18n-title="filterPlaceholder" data-i18n-aria-label="filterPlaceholder">
<button id="headerRandomBtn" class="btn-random" data-i18n-title="randomNowBtnTitle" data-i18n-aria-label="randomNowBtnTitle" title="Pick Random" aria-label="Pick Random">⤨</button>
<button id="optionsBtn" class="btn-options" data-i18n="optionsBtn">⚙️</button>
</div>
</div>
<div id="videosList" class="videos-list">
<div class="loading" data-i18n="loadingVideos">Loading videos...</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>