-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
50 lines (45 loc) · 1.02 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="button.css" />
<style>
html,
body {
background-color: #333;
color: #ddd;
user-select: none;
font-size: 20px;
}
.option {
margin-bottom: 10px;
}
.option * {
vertical-align: middle;
}
.sub-option {
margin-top: 10px;
margin-left: 20px;
}
input[type='checkbox'] {
width: 20px;
height: 20px;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="option">
<label>
<input type="checkbox" name="jumpWindows" id="" />
<span>Jump through other windows when focusing tabs</span>
</label>
<div class="sub-option">
<label>
<input type="checkbox" name="focusFirstLastTabIfEdgeWindow" id="" />
<span>Focus first/last tab in prev/next window </span>
</label>
</div>
</div>
<script src="options.js"></script>
</body>
</html>