blob: 2935897d6809989c32b3e4f7c74892f4f2e29ebd (
plain) (
blame)
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>
<label>Maximum number of Tabs :<input type="number" id="maxtabs"> </label>
<br>
<label> Above limit per window [if unchecked, applies globally]<input type="checkbox" id="currentonly">
<br>
<label> Reset maximum to current number of tabs when reenabled after disabling<input
type="checkbox" id="resetmax">
<br><br>
<label>When exceeded, remove<label>
<label><input type="radio" name="action" id="lru">Least Recently Used</label>
<label><input type="radio" name="action" id="newest">Newest</label>
<label><input type="radio" name="action" id="left">Left-Most</label>
<label><input type="radio" name="action" id="right">Right-Most</label>
<br>
<label> Sound<label>
<label><input type="radio" name="sound" id="gong">Gong</label>
<label><input type="radio" name="sound" id="buzzer">Buzzer</label>
<label><input type="radio" name="sound" id="doorbell">Doorbell</label>
<label><input type="radio" name="sound" id="beep">Beep</label>
<label><input type="radio" name="sound" id="nosound">No Sound</label>
<br><br>
<label>Disable Toolbar On/Off Toggle<input type="checkbox" id="notoggle">
<br>
<label>Show Number of Tabs instead of Percentage<input type="checkbox" id="showtabs">
</form>
<script src="options.js"></script>
</body>
</html>
|