-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
60 lines (58 loc) · 1.3 KB
/
popup.html
File metadata and controls
60 lines (58 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Google Meet Transcriber</title>
<style>
body {
width: 260px;
font-family: 'Inter', sans-serif;
margin: 0;
padding: 20px;
background: #121212;
color: #ffffff;
text-align: center;
}
h2 {
margin-top: 0;
font-size: 18px;
color: #4da6ff;
}
p {
font-size: 13px;
line-height: 1.5;
color: #bbbbbb;
margin-bottom: 20px;
}
.btn {
display: block;
margin-top: 10px;
padding: 10px 16px;
background: rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 13px;
transition: all 0.2s;
}
.btn:hover {
background: rgba(255, 255, 255, 0.2);
}
.btn-primary {
background: #4da6ff;
color: #000;
}
.btn-primary:hover {
background: #3388ff;
}
</style>
</head>
<body>
<h2>Meet Transcriber</h2>
<p>Ative a extensão diretamente na tela do Google Meet durante a sua reunião.</p>
<a href="#" id="btn-history" class="btn">Ver Histórico de Gravações</a>
<a href="https://meet.google.com" target="_blank" class="btn btn-primary">Abrir Google Meet</a>
<script src="popup.js"></script>
</body>
</html>