-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
41 lines (34 loc) · 1 KB
/
options.html
File metadata and controls
41 lines (34 loc) · 1 KB
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
<html>
<head>
<title>Keep One Pinned Tab: Options</title>
<style>
input[type="checkbox"] {
margin-top: -1px;
vertical-align: middle;
}
.pinnedURLPresetButton {
margin-right: 5px;
}
.selectedButton {
font-weight: bold;
}
</style>
</head>
<body>
<label title="This will be the first pinned tab in each window">
<p style="margin-bottom: 5px; font-weight: 600;">URL to keep pinned at all times:</p>
<input type="text" id="inptPinnedURL" style="margin-bottom: 5px; width: 600px;" />
</label>
<br />
Presets:
<span id="spnPresetButtons"></span>
<br /><br />
<label title="If this is checked and you try to focus the special pinned tab, we will immediately switch to the next tab instead.">
<input id="chkNoFocus" type="checkbox" /> Prevent focusing this pinned tab
</label>
<br /><br />
<button id="btnSave">Save</button>
<span id="divStatus"></span>
</body>
<script src="options.js"></script>
</html>