-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
67 lines (67 loc) · 1.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<style>
#radio-group {
display: flex;
flex-direction: column;
}
form {
width: 150px;
}
</style>
</head>
<body>
<form>
<div>
<input type="checkbox" id="checkbox" />
<label for="checkbox">Extension Active</label>
</div>
<div id="radio-group">
<div>
<input
type="radio"
name="hide"
value="easy-med"
id="easy-med"
class="dis"
/>
<label class="dis" for="easy-med">Hide Easy/Medium</label>
</div>
<div>
<input
type="radio"
name="hide"
value="med-hard"
id="med-hard"
class="dis"
/>
<label class="dis" for="med-hard">Hide Medium/Hard</label>
</div>
<div>
<input type="radio" name="hide" value="all" id="all" class="dis" />
<label class="dis" for="all">Hide All</label>
</div>
<div>
<input
type="radio"
name="hide"
value="hide-none"
id="hide-none"
class="dis"
/>
<label class="dis" for="hide-none">Hide None</label>
</div>
</div>
<div>
<input type="checkbox" id="checkbox-reveal" />
<label class="dis" for="checkbox-reveal">Reveal On Solve</label>
</div>
<div>
<input type="checkbox" id="checkbox-acceptance" />
<label class="dis" for="checkbox-acceptance">Hide Acceptance %</label>
</div>
</form>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>