-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
22 lines (22 loc) · 754 Bytes
/
popup.html
File metadata and controls
22 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Auto Chat Generator by WHTech</title>
<style>
body { font-family: sans-serif; padding: 10px; width: 280px; }
input, button { width: 100%; padding: 8px; margin: 5px 0; border-radius: 6px; }
button { border: none; background: #007bff; color: white; cursor: pointer; }
button:hover { background: #0056b3; }
#stop { background: #dc3545; }
</style>
</head>
<body>
<h3>Auto Chat Random by BRAYY</h3>
<label for="interval">Interval (detik):</label>
<input type="number" id="interval" value="10" min="1" />
<button id="start">Start</button>
<button id="stop">Stop</button>
<script src="popup.js"></script>
</body>
</html>