-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.86 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.86 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en" style="font-size: 10px; font-family: Roboto, Arial, sans-serif">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Content Script Test</title>
</head>
<body style="padding-bottom: 50vh">
<ytd-player id="ytd-player">
<div id="container"></div>
</ytd-player>
<div id="above-the-fold">
<div id="top-row">
<div id="owner"></div>
</div>
</div>
<div id="actions"></div>
<!-- temp for testing -->
<div style="position: relative; margin-top: 57vh">
<div id="player-container" style="width: 640px; margin-block: 2em">
<div
class="ytp-progress-bar-container"
style="
position: absolute;
width: 606px;
margin-block: 2em;
background: #ffffff00;
translate: 3% 316px;
z-index: 10;
height: 4px;
"
></div>
<div id="ytd-player"></div>
</div>
<video id="video" width="640" height="360" controls muted>
<!-- use https://www.youtube.com/watch?v=Y3_XCQ09f-Q -->
<source
src="./mock_video/The Most Beautiful Shots From Hayao Miyazaki & Studio Ghibli.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
</div>
<div
id="mock-container"
style="margin-top: 50vh; margin-bottom: 50vh; position: absolute; bottom: -88px"
></div>
<div
id="popup-mock"
style="
position: absolute;
top: 1em;
right: 1em;
border: 1px solid black;
width: 320px;
background-color: white;
"
></div>
<script type="module" src="extension/src/content/index.tsx"></script>
</body>
</html>