-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
40 lines (40 loc) · 898 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
33
34
35
36
37
38
39
40
<!doctype html>
<html>
<head>
<title>Set video playback rate</title>
<style>
body {
overflow: hidden;
margin: 0px;
padding: 0px;
background: white;
}
div {
cursor: pointer;
text-align: center;
padding: 1px 3px;
font-family: sans-serif;
font-size: 16px;
width: 140px;
background: #ffffff;
border-bottom: 1px solid;
padding: 15px 0;
}
div:hover {
background: #aaaaaa;
}
div:first-child:hover {
background: #ffffff;
cursor: default;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div>Select playback rate for current page</div>
<div data-rate="1">x1</div>
<div data-rate="1.25">x1.25</div>
<div data-rate="1.5">x1.5</div>
<div data-rate="2">x2</div>
</body>
</html>