-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
21 lines (21 loc) · 1.35 KB
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Meet Forum Extension</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 p-4">
<div class="max-w-md mx-auto bg-white shadow-lg rounded-lg overflow-hidden">
<div class="p-4">
<h1 class="text-xl font-bold text-gray-800 mb-2">Google Meet Forum Extension</h1>
<p class="text-gray-600 text-sm mb-4">Click the Forum button next to the Chat button in Google Meet to use the forum.</p>
<input type="text" id="spaceId" placeholder="Enter Google Chat Space ID" class="w-full px-2 py-1 border border-gray-300 rounded-md mb-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
<button id="saveSpaceId" class="w-full bg-blue-500 text-white py-1 rounded-md mb-2 hover:bg-blue-600 focus:outline-none focus:ring-2 focus:ring-blue-500">Save Space ID</button>
<button id="clearMessages" class="w-full bg-red-500 text-white py-1 rounded-md hover:bg-red-600 focus:outline-none focus:ring-2 focus:ring-red-500">Clear All Messages</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>