summaryrefslogtreecommitdiff
path: root/options.html
diff options
context:
space:
mode:
Diffstat (limited to 'options.html')
-rw-r--r--options.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/options.html b/options.html
new file mode 100644
index 0000000..2935897
--- /dev/null
+++ b/options.html
@@ -0,0 +1,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>&emsp;Above limit per window [if unchecked, applies globally]<input type="checkbox" id="currentonly">
+ <br>
+ <label>&emsp;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>&emsp;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>