-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
46 lines (40 loc) · 1.15 KB
/
Copy pathpopup.html
File metadata and controls
46 lines (40 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<h1>
Cam Spoofer
<label class="toggle">
<input type="checkbox" id="enabled" />
<span class="slider"></span>
</label>
</h1>
<div id="errorSection" class="field" style="display: none">
<p class="hint" id="errorMsg"></p>
<button id="grantBtn" class="btn" style="display: none">
Grant camera access
</button>
</div>
<div id="cameraSection">
<div class="field">
<label for="camera">Camera</label>
<select id="camera">
<option value="">Loading...</option>
</select>
</div>
<div class="field">
<label for="customLabel">Custom name (optional)</label>
<input type="text" id="customLabel" placeholder="e.g. My Webcam" />
</div>
<div class="field">
<label>All camera names (click to copy)</label>
<ul id="cameraNames" class="camera-names"></ul>
</div>
</div>
<div class="status" id="status"></div>
<script src="popup.js"></script>
</body>
</html>