forked from Claymont/detach-tab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
32 lines (25 loc) · 753 Bytes
/
options.html
File metadata and controls
32 lines (25 loc) · 753 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="options.css">
</head>
<body>
<form><br>
<a href="https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/commands#Key_combinations">Keyboard shortcut combination rules</a>
<br><br>
<div class="box">
<label>Detach</label>
<input type="text" id="shortcut-detach">
<label>Reattach</label>
<input type="text" id="shortcut-reattach">
</div>
<div>
<button id="apply">Apply</button>
<button id="reset">Reset</button>
</div>
</form>
<div class="bug"></div>
</body>
<script src="options.js"></script>
</html>