-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
41 lines (41 loc) · 1.03 KB
/
options.html
File metadata and controls
41 lines (41 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tinder Cleanup — Options</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
max-width: 400px;
margin: 40px auto;
padding: 0 20px;
color: #333;
}
h2 { color: #fd5068; margin-bottom: 4px; }
p.sub { color: #888; font-size: 13px; margin-top: 0; }
label {
display: flex;
align-items: center;
gap: 10px;
padding: 12px 0;
cursor: pointer;
font-size: 15px;
}
input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #fd5068;
}
</style>
</head>
<body>
<h2>Tinder Cleanup</h2>
<p class="sub">Extension options</p>
<label>
<input type="checkbox" id="demoMode" />
Demo mode — blur all names & photos (for screen recordings)
</label>
<script type="module" src="/src/options/index.ts"></script>
</body>
</html>