-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
57 lines (57 loc) · 2.14 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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Thanks to:
https://codepen.io/alexakasanjeev/pen/RPxGXY
https://getcssscan.com/css-buttons-examples
https://codepen.io/alfaris/pen/ZWPgYm
https://github.com/stefansundin/duplicate-tab
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Extension Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="container">
<h1>Shortcut Manager</h1>
<div class="box">
<div class="box-sm id-1"></div>
<div class="box-sm id-2"></div>
<div class="box-sm id-3"></div>
<div class="box-sm id-4"></div>
<div class="box-sm id-5"></div>
<div class="box-sm id-6"></div>
</div>
<h3>Extension Options</h3>
<form id="options-form">
<div class="form-group">
<label for="open-new-tab">Open a New Tab</label>
<button id="open-new-tab-btn" class="shortcut-btn">Set Shortcut</button>
<input type="text" id="open-new-tab" name="open-new-tab" readonly>
</div>
<div class="form-group">
<label for="duplicate-tab">Duplicate Tab Shortcut</label>
<button id="duplicate-tab-btn" class="shortcut-btn">Set Shortcut</button>
<input type="text" id="duplicate-tab" name="duplicate-tab" readonly>
</div>
<div class="form-group">
<label for="open-recent-closed-tab">Open Recent Closed Tab</label>
<button id="open-recent-closed-tab-btn" class="shortcut-btn">Set Shortcut</button>
<input type="text" id="open-recent-closed-tab" name="open-recent-closed-tab" readonly>
</div>
<div class="form-group">
<label for="mute-tab">Duplicate Tab Shortcut</label>
<button id="mute-tab-btn" class="shortcut-btn">Set Shortcut</button>
<input type="text" id="mute-tab" name="duplicate-tab" readonly>
</div>
<button class="save-btn" role="button">Save</button>
</form>
<span>
Made with ♥️ in <a class="city">Ankara</a>
</span>
</div>
<script src="options.js"></script>
</body>
</html>