-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
50 lines (39 loc) · 841 Bytes
/
Copy pathpopup.html
File metadata and controls
50 lines (39 loc) · 841 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial;
width: 230px;
padding: 12px;
}
button {
width: 100%;
padding: 8px;
margin-top: 6px;
font-size: 14px;
cursor: pointer;
}
#status {
margin-top: 10px;
font-size: 13px;
}
#counter {
margin-top: 5px;
font-size: 16px;
font-weight: bold;
color: green;
}
</style>
</head>
<body>
<button id="startBtn">Start Unarchive</button>
<button id="stopBtn">Stop</button>
<div id="status">Idle</div>
<div>
Processed chats:
<div id="counter">0</div>
</div>
<script src="popup.js"></script>
</body>
</html>