-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
93 lines (79 loc) · 2.28 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
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Configurações da Extensão</title>
<style>
h1 {
font-family: 'Arial', sans-serif;
color: #800080;
text-align: center;
}
body {
font-family: Arial, sans-serif;
padding: 20px;
width: 400px;
background-color: #f0f0f0;
border-radius: 20px;
margin: 0 auto;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
label {
display: block;
margin-bottom: 10px;
}
select {
width: 100%;
padding: 5px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #800080;
color: #fff;
cursor: pointer;
display: block;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
button:hover {
background-color: #9b019b;
}
div {
background-color: #fff;
padding: 20px;
border-radius: 20px;
}
</style>
</head>
<body>
<h1>Dubla blá blá 🌍🗣️💬</h1>
<div>
<h2>Configurações da Extensão</h2>
<h3>Selecionar Voz e Idioma</h3>
<label for="voice">Selecione uma voz:</label>
<select id="voice">
</select>
<p>👉Ative a legenda no vídeo do YouTube para começar.👈</p>
<button id="control">
</button>
<!--
<h3>Doações</h3>
<p>Se esta extensão te ajudou a economizar tempo e tornou sua vida mais fácil, que tal me oferecer um café
virtual ☕
como forma de agradecimento? Suas doações são muito bem-vindas e me incentivam a continuar melhorando esta
ferramenta para você! 💖✨🚀:</p>
<button id="donateButton">Faça uma Doação</button>
-->
</div>
<script src="popup.js">
</script>
</body>
</html>