-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (43 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>YouTube Thumbnail Downloader</title>
<!-- - CUSTOM CSS -->
<link rel="stylesheet" href="./assets/popup.css" />
</head>
<body>
<!-- - wrapper -->
<div class="container">
<div class="logo">
<img
src="./assets/youtube-icon.png"
width="50"
height="50"
alt="youtube download icon"
/>
</div>
<label for="url-input">Paste Video URL:</label>
<div class="input-box">
<input type="text" id="url-input" placeholder="Paste YouTube URL" />
</div>
<div class="thumbnail-container">
<div id="thumbnail-preview">
<img
src="./assets/placeholer-image.svg"
alt="image placeholder"
data-previewImage
/>
</div>
<div id="spinner" class="spinner" style="display: none"></div>
</div>
<p data-text="true" style="color: aliceblue; margin-top: 10px"></p>
<button id="download-btn">Download Thumbnail</button>
</div>
<div class="glow-overlay"></div>
<!-- - JS -->
<script src="./assets/popup.js"></script>
<script src="./content.js"></script>
</body>
</html>