-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
52 lines (52 loc) · 2.2 KB
/
Copy pathsettings.html
File metadata and controls
52 lines (52 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TabSavvy Settings</title>
<link rel="stylesheet" href="settings.css">
</head>
<body>
<div class="container">
<h1>TabSavvy Settings</h1>
<form id="settingsForm">
<div class="setting">
<label for="inactiveTimeout" title="How long before a tab is marked inactive">Mark tabs as inactive after (minutes):</label>
<input type="range" id="inactiveTimeout" min="5" max="60" step="5">
<span id="inactiveTimeoutValue"></span>
</div>
<div class="setting">
<label for="sleepTimeout">Put inactive tabs to sleep after (minutes):</label>
<input type="range" id="sleepTimeout" min="3" max="120" step="2">
<span id="sleepTimeoutValue"></span>
</div>
<div class="setting">
<label for="closeTimeout">Close inactive tabs after (minutes):</label>
<input type="range" id="closeTimeout" min="15" max="240" step="10">
<span id="closeTimeoutValue"></span>
</div>
<div class="setting">
<label for="groupSimilarTabs">
<input type="checkbox" id="groupSimilarTabs">
Automatically group similar tabs
</label>
</div>
<div class="setting">
<label for="closeDuplicateTabs">
<input type="checkbox" id="closeDuplicateTabs">
Automatically close duplicate tabs
</label>
</div>
<div class="setting">
<label for="notifyTabClose">Notify when a tab is about to close</label>
<input type="checkbox" id="notifyTabClose">
</div>
<div class="buttons">
<button type="button" id="resetButton">Reset to Defaults</button>
<button type="submit">Save Settings</button>
</div>
</form>
</div>
<script src="settings.js"></script>
</body>
</html>