-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
41 lines (40 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<style>
body {
padding: 1em;
font-family:
system-ui,
-apple-system,
sans-serif;
}
.shortcut-section {
margin-top: 1em;
}
#shortcutInput {
padding: 0.5em;
width: 200px;
margin-top: 0.5em;
}
#shortcutStatus {
margin-top: 0.5em;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="shortcut-section">
<label for="shortcutInput">Toggle Shortcut:</label><br />
<input
type="text"
id="shortcutInput"
placeholder="Press shortcut keys"
readonly
/>
<div id="shortcutStatus"></div>
</div>
<script src="options.js"></script>
</body>
</html>