-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
85 lines (78 loc) · 2.9 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
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 data-theme="cupcake" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0" />
<title>Buttercup</title>
<link href="assets/css/daisyui-4.7.2.full.min.css" rel="stylesheet" type="text/css" />
<script src="assets/js/tailwindcss.3.4.1.js"></script>
<style type="text/css">
body {
width: 400px;
height: 400px;
}
.controls-container {
display: flex;
justify-content: center;
align-items: center;
height: min-content;
width: 100%;
}
.form-control {
margin: 10;
width: 80%;
}
#buttons {
grid-auto-flow: column !important;
}
</style>
</head>
<body>
<div class="max-w-md text-center pt-10">
<h1 class="text-5xl font-bold">Buttercup</h1>
<p class="text-sm pt-10">
Replace YouTube's crappy auto-generated subtitles with
Buttercup's awesome Whisper-generated ones
</p>
</div>
<div class="controls-container">
<div class="form-control">
<div class="divider"></div>
<label class="label cursor-pointer">
<span class="label-text">Enabled</span>
<input type="checkbox" class="toggle" id="enabled" checked />
</label>
<!-- <div class="divider"></div> -->
<label class="label cursor-pointer">
<span class="label-text">Translate everything to English</span>
<input type="checkbox" class="toggle" id="translate" />
</label>
<!-- <div class="divider"></div> -->
<label class="label cursor-pointer">
<span class="label-text">Use cache database</span>
<input type="checkbox" class="toggle" id="cache" checked />
</label>
<!-- <div class="divider"></div> -->
<label class="label cursor-pointer">
<span class="label-text">Download SRT</span>
<input type="checkbox" class="toggle" id="download" />
</label>
<div class="divider"></div>
</div>
</div>
<footer class="footer p-4 bg-neutral text-neutral-content flex flex-row justify-center max-w">
<div class="grid grid-flow-col max-w" id="buttons">
<a href="https://igerman.cc/" target="_blank" class="btn btn-primary btn-wide btn-sm max-w-24">
Contact
</a>
<a href="https://ko-fi.com/D1D2BJ5D6" target="_blank" class="btn btn-secondary btn-wide btn-sm max-w-24">
Donate
</a>
<a href="https://buttercup.igerman.cc" target="_blank" class="btn btn-wide btn-sm max-w-24">
Cache DB
</a>
</div>
</footer>
</body>
<script src="assets/js/buttons.js"></script>
</html>