blob: 58560f70ce95e1683804f8028d7a99e0629121f2 (
plain) (
blame)
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
63
64
65
66
67
68
69
70
71
72
73
74
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>YTQuickStamper</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
max-width: 350px;
background-color: #181818;
color: #f1f1f1;
}
h3 {
text-align: center;
color: #FF0000;
}
button {
padding: 10px;
background-color: #FF0000;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s;
}
button:hover {
background-color: #CC0000;
}
#offset {
padding: 8px;
border: 2px solid #FF0000;
border-radius: 4px;
width: 60px;
font-size: 1rem;
background-color: #333;
color: #f1f1f1;
}
label {
margin-top: 2rem;
font-size: 1rem;
color: #f1f1f1;
}
.offset-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
padding: 10px;
background-color: #282828;
border: 1px solid #444;
border-radius: 6px;
}
</style>
</head>
<body>
<h3>QuickStamper</h3>
<button id="activate">Launch Timestamp Tool</button>
<div>
<label for="offset">Offset (sec):</label>
<input type="number"
id="offset"
title="Offset each timestamp by this many seconds, ex. 3 = 3s before each timestamp, -3 = 3s after each timestamp"
>
<label for="autosave">Autosave</label>
<input type="checkbox"
id="autosave"
title="Automatically save timestamps for each video">
</input>
</div>
<script src="popup.js"></script>
</body>
</html>
|