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
75
76
77
78
79
80
81
82
83
84
85
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>YTQuickStamper</title>
<style>
body {
font-family: 'Roboto', sans-serif;
padding: 20px;
max-width: 400px;
background-color: #202020;
color: #e0e0e0;
line-height: 1.6;
}
h3 {
text-align: center;
color: #FF5722;
font-size: 1.8rem;
margin-bottom: 20px;
}
button {
padding: 12px 20px;
background-color: #FF5722;
color: #ffffff;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
transition: background-color 0.3s, transform 0.2s;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
button:hover {
background-color: #E64A19;
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
#offset {
padding: 10px;
border: 2px solid #FF5722;
border-radius: 6px;
width: 80px;
font-size: 1rem;
background-color: #2c2c2c;
color: #ffffff;
text-align: center;
}
label {
margin-top: 1.5rem;
font-size: 1rem;
color: #e0e0e0;
display: block;
margin-bottom: 8px;
}
.offset-container {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
padding: 12px;
background-color: #2a2a2a;
border: 1px solid #555;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
</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>
|