-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
40 lines (38 loc) · 962 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<body>
<form>
<input
id="move-foreign-tabs"
type="checkbox"
name="move-foreign-tabs"
value="yes"
/>
<label for="move-foreign-tabs"
>Always move tabs in other containers to the left</label
>
<br />
<input id="sort-tabs" type="checkbox" name="sort-tabs" value="yes" />
<label for="sort-tabs"
>When switching containers, sort the tabs by last-accessed time?</label
>
<br />
<input
id="highlight-tabs"
type="checkbox"
name="highlight-tabs"
value="yes"
/>
<label for="highlight-tabs"
>When switching containers, temporarily highlight the tabs associated
with the current container?</label
>
<p />
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>