-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
44 lines (44 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>mpvnet</title>
<link rel="stylesheet" href="popup.css">
<script defer src="popup.js"></script>
</head>
<body>
<p id="header">mpvnet</p>
<hr/>
<input id="input-resolution" type="text" placeholder="Resolution limit"/>
<div class="button" id="fit-resolution">Fit screen</div>
<div class="combined-button-wrapper">
<div class="combined-button-text">Video</div>
<div class="combined-button" id="video-play">
<svg>
<polygon points="3,3 17,10 3,17"/>
</svg>
</div>
<div class="combined-button" id="video-download">
<svg>
<polygon points="3,13 3,17 17,17 17,13 15,13 15,15 5,15 5,13"/>
<polygon points="9,3 11,3 11,8 15,8 10,13 5,8 9,8 9,3"/>
</svg>
</div>
</div>
<div class="combined-button-wrapper">
<div class="combined-button-text">Audio</div>
<div class="combined-button" id="audio-play">
<svg>
<polygon points="3,3 17,10 3,17"/>
</svg>
</div>
<div class="combined-button" id="audio-download">
<svg>
<polygon points="3,13 3,17 17,17 17,13 15,13 15,15 5,15 5,13"/>
<polygon points="9,3 11,3 11,8 15,8 10,13 5,8 9,8 9,3"/>
</svg>
</div>
</div>
<p id="status-bar"></p>
</body>
</html>