-
Notifications
You must be signed in to change notification settings - Fork 22
/
popup.html
49 lines (46 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="title">
Google Meet Hack
</div>
<div class="meet">
<div class="noOfPart">
No. of Participants : <span id="noOfParticipant">0</span>
</div>
<div class="subtitle">
Enter the number of participants remaining, below which you want to exit the meeting.
</div>
<div class="data">
<input type="number" name="" id="requiredParticipantToExit" min="1" value="2" autofocus="autofocus">
<input type="button" value="Confirm" id="confirm">
</div>
</div>
<div class="running hide">
<div class="subtitle">
Meeting Will be Leaved Soon.
</div>
<div class="cancelButton">
Cancel
</div>
</div>
<div class="nomeet hide">
<div class="noOfPart">
Meeting is not Started.
</div>
</div>
<div class="social">
<a title="Github profile Link" target="blank" href="https://github.com/programmergaurav">
<i class="fab fa-github"></i>
</a>
<a title="Instagram profile link" target="_blank" href="https://www.instagram.com/programmergaurav/">
<i class="fab fa-instagram"></i>
</a>
</div>
<script src="popup.js"></script>
</body>
</html>