forked from M-Reimer/undoclosetab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
61 lines (58 loc) · 2.01 KB
/
options.html
File metadata and controls
61 lines (58 loc) · 2.01 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="options.css">
</head>
<body>
<h2 data-i18n="general_headline">General</h2>
<p>
<label>
<input type="checkbox" id="restoreGroup_checkbox">
<span data-i18n="restoreGroup_label">Restore tabs as group if the time between their closings is below</span>
</label>
<input type="number" id="groupTime_inputbox" min="0" max="10000" value="200"> ms
</p>
<h2 data-i18n="contextmenus_headline">Context menus</h2>
<p>
<span data-i18n="menuitem_number_label">Number of items shown on closed tabs menu:</span>
<input type="number" id="showNumber_inputbox" min="1" max="25" value="25" title="Maximum 25 (browser limit)">
</p>
<p>
<label>
<input type="checkbox" id="onlyCurrent_checkbox">
<span data-i18n="onlycurrent_label">Only list tabs that were closed in the current window</span>
</label>
</p>
<p>
<label>
<input type="checkbox" id="showClearList_checkbox">
<span data-i18n="menuitem_clearlist_label">Show menu item for clearing the last closed tab list</span>
</label>
</p>
<h2 data-i18n="menus_headline">Additional Menus</h2>
<p>
<label>
<input type="checkbox" id="showTabMenu_checkbox">
<span data-i18n="menu_tab_label">Submenu in tab bar context menu</span>
</label>
</p>
<p>
<label>
<input type="checkbox" id="showPageMenu_checkbox">
<span data-i18n="menu_page_label">Submenu in page context menu</span>
</label>
</p>
<p>
<label>
<input type="checkbox" id="showPageMenuitem_checkbox">
<span data-i18n="menuitem_page_label">Menuitem in page context menu</span>
</label>
</p>
<p class="footer" style="margin-top: 2em; font-size: 12px; color: #666;">
By <a href="https://github.com/AlexRabbit" target="_blank" rel="noopener">AlexRabbit</a>
</p>
<script src="utils/storage.js"></script>
<script src="options.js"></script>
</body>
</html>