diff options
author | Yuchen Pei <id@ypei.org> | 2023-08-26 11:55:56 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2023-08-26 11:59:46 +1000 |
commit | b72fe68bf964fe386f76897296c87ea3b1fdf148 (patch) | |
tree | 588c8e7c46491b1afcf441600b0aac0cc407a574 /options.html |
wget https://addons.mozilla.org/firefox/downloads/latest/rudolf-fernandes/latest.xpi
mkdir limit-tabs
unzip -d limit-tabs latest.xpi
Not including the mozilla signatures. The extension is licensed under
GNU GPLv3:
https://addons.mozilla.org/en-US/firefox/addon/rudolf-fernandes/
Diffstat (limited to 'options.html')
-rw-r--r-- | options.html | 40 |
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> 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> |