-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.html
More file actions
34 lines (29 loc) · 807 Bytes
/
settings.html
File metadata and controls
34 lines (29 loc) · 807 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>TabSentry • settings</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container" style="max-width:520px;margin:auto;">
<div class="header-bar">
<h1 class="title" style="margin-left:auto;margin-right:auto;">TabSentry</h1>
</div>
<h2>⚙️ Settings</h2>
<label>
Max Tabs Before Auto‑Close:
<input type="number" id="threshold" min="1" />
</label>
<br />
<label>
Idle Timeout (minutes):
<input type="number" id="idle-timeout" min="1" />
</label>
<br /><br />
<button id="save-settings">Save</button>
<span id="status" class="meta" style="margin-left:10px;"></span>
</div>
<script src="settings.js"></script>
</body>
</html>