-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoptions.html
48 lines (41 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>The Switcher - Options</title>
<link rel="stylesheet" href="styles/option.css">
<script src="libs/jquery.min.js"></script>
<script src="scripts/options.js"></script>
</head>
<body>
<div id="wallpaper">
<div id="tool-container">
<div id="sidebar">
<div id="sidebar-icon"></div>
<h1>The Switcher</h1>
</div>
<!-- sidebar -->
<div id="content">
<section>
<h3 class="section-header">General options</h3>
<div class="settings-row learn-more" title="Specify maximum amount of tabs that the extension will be remember.">
<label class="web-content-select-label">
<span class="selectLabel">Remember <b>x</b> of closed tabs:</span>
<input type="number" id="rememberClosedTabs" min="0" max="200" />
</label>
</div>
<div class="settings-row learn-more" title="If enabled, there'll be a favicon image next to tabs title and url.">
<label class="web-content-select-label">
<span class="selectLabel">Show favicons:</span>
<input type="checkbox" id="showFavicons" />
</label>
</div>
</section>
</div>
<!-- content -->
</div>
<!-- tool-container -->
</div>
<!-- wallpaper -->
</body>
</html>