Welcome to Firefox for Android Add-ons.
Add extra features and styles to make Firefox for Android your own.
CloseReviews for tbkeys-lite
60 reviews for this add-on
Rated 5 out of 5 stars
Yeess! Thank you! Removed all the single letter accidental deletes with
{
"0": "unset",
"1": "unset",
"2": "unset",
"3": "unset",
"4": "unset",
"5": "unset",
"6": "unset",
"7": "unset",
"8": "unset",
"9": "unset",
"j": "unset",
"#": "unset",
"k": "unset",
"o": "unset",
"f": "unset",
"r": "unset",
"a": "unset",
"x": "unset",
"c": "unset",
"u": "unset",
"b": "unset",
"m": "unset",
"p": "unset",
"s": "unset",
"t": "unset",
"w": "unset",
"]": "unset",
"[": "unset"
}
Rated 5 out of 5 stars
Thank you. It works like a charm and I am crying tears because:
"ctrl+enter": "unset"
Rated 4 out of 5 stars
Thanks so much for making this available! But...
I would ask that the "unbind singles" button actually unbind all the single key shortcuts, instead of requiring someone who barely understands Windows cut and paste to replace a bunch of text entries correctly to accomplish this.
Now if we could get the TB developers to make NO shortcuts the default and let technical users turn on and customize as needed, that would be better.
Rated 4 out of 5 stars
Lets you remove all single-key commands that are inexplicably forced upon us by Thunderbird. Just click "Unset singles" and change everything to "unset" (unless you like Gmail shortcuts).
Finally, a replacement for "Dorando keyconfig"! Thank you! No more accidental archiving or marking as junk.
I'm dinging it one star for ease of use because there are no instructions in the add-on itself. It works great, though. The documentation is a little thin, and requires some effort to figure out how to make your own shortcuts, if you're into that kind of thing. Mostly, I just wanted to get rid of the single button shortcuts, which this does easily.
Rated 5 out of 5 stars
Working great for me! Allowed me to rebind 'j' and 'k' to stop marking things as junk/ignore. (Vim shortcut typos)
This review is for a previous version of the add-on (2.1.1).Rated 2 out of 5 stars
Why does this plugin ask for FULL access to my computer upon installation?
This review is for a previous version of the add-on (2.1.0).Because tbkeys-lite uses a WebExtension Experiment to capture key events. There is no WebExtension API to do this. A WebExtension Experiment has the same permissions as all legacy add-ons had in Thunderbird 68 and earlier. I have opened a ticket on Bugzilla about creating a MailExtension keyboard shortcut API here: https://bugzilla.mozilla.org/show_bug.cgi?id=1591730
Rated 5 out of 5 stars
Absolute godsend. I can't believe I didn't know this existed before now. Thunderbird hotkeys are an abomination!
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
HALLELUJAH!
I was dismayed when Keyconfig no longer worked and did not seem to get updated. Been deleting, archiving and doing unmentionable things to perfectly good messages in my Inbox when not paying attention to where the focus was.
I even contemplated moving to Apple Mail...
THIS HAS SAVED THE DAY!!!!!!
THANK YOU, WILL!!!!!!!
Rated 5 out of 5 stars
Extremely helpful. Thank you.
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
Thank you very much! I've been filing and deleting emails by mistake for 2 years, because of that mania of putting single-letter hotkeys. What a crazy idea.
And, as sayed by Frederik below,...
You can paste the following into the settings box to really completely disable all one-letter shortcuts:
{
"0": "unset",
"1": "unset",
"2": "unset",
"3": "unset",
"4": "unset",
"5": "unset",
"6": "unset",
"7": "unset",
"8": "unset",
"9": "unset",
"j": "unset",
"k": "unset",
"o": "unset",
"f": "unset",
"#": "unset",
"r": "unset",
"a": "unset",
"x": "unset",
"c": "unset",
"u": "unset",
"b": "unset",
"m": "unset",
"p": "unset",
"s": "unset",
"t": "unset",
"w": "unset",
"]": "unset",
"[": "unset"
}
Rated 5 out of 5 stars
very useful.
I would like to figure out what would be the syntax of a custom a custom entry to launch a given extension with a single key stroke (for instance launch a TB extension that allows to edit message subject)
Rated 5 out of 5 stars
Saved the day for a longtime keyconfig user - thank you!
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
Can I remap "J" to CTRL-J or smth? For marking SPAM.
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
Works excellently to disable all these pesky one-letter abbreviations, which wreck havoc when the focus is not where it is expected.
Note that the preset button "unset singles" in the Settings dialogue does not quite do what it promises. While it removes destructive short-cuts, it replaces them with other less dangerous, but still annoying short-cuts.
You can paste the following into the settings box to really completely disable all one-letter shortcuts:
{
"0": "unset",
"1": "unset",
"2": "unset",
"3": "unset",
"4": "unset",
"5": "unset",
"6": "unset",
"7": "unset",
"8": "unset",
"9": "unset",
"j": "unset",
"k": "unset",
"o": "unset",
"f": "unset",
"#": "unset",
"r": "unset",
"a": "unset",
"x": "unset",
"c": "unset",
"u": "unset",
"b": "unset",
"m": "unset",
"p": "unset",
"s": "unset",
"t": "unset",
"w": "unset",
"]": "unset",
"[": "unset"
}
Rated 4 out of 5 stars
Actually, looking at implementation.js, turns out it is pretty simple change to allow existing syntax with multiple commands, and not needing custom functions:
diff --git a/addon/implementation.js b/addon/implementation.js
index 5a740f2..f44bf40 100644
--- a/addon/implementation.js
+++ b/addon/implementation.js
@@ -143,7 +143,9 @@ var TBKeys = {
let cmdBody = command.slice(cmdType.length + 1)
switch (cmdType) {
case "cmd":
- window.goDoCommand(cmdBody)
+ for (let cmd of cmdBody.split(" ")) {
+ window.goDoCommand(cmd)
+ }
break
case "func":
window[cmdBody]()
Then, one can just do:
"n": "cmd:cmd_collapseAllThreads cmd_nextMsg",
-mr
Rated 4 out of 5 stars
Works fine, for complex combination I modified implementation.js and add the personal function inside builtins
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
Does exactly what I needed; remap some of the single shortcut keys so that when using quick filter to search my mail, I don't inadvertently archive, delete, or forever fubar my messages - Greatly appreciate the simplicity.
This review is for a previous version of the add-on (2.1.0).Rated 4 out of 5 stars
It works, but it is a bit hard to use. I managed to bind a key to “Search events and tasks” so I'm happy.
You will find explanations on the official website [1] and have to search for the precise command name with the DOM explorer (Ctrl + Shift + I) [2].
[1] https://github.com/willsALMANJ/tbkeys
[2] http://kb.mozillazine.org/Keyconfig_extension#Finding_code_for_keys
Rated 4 out of 5 stars
I just needed to replace the close tab on escape add on and it was easy. Finding the correct operators is a bit hard and so far I can't get it to work in the compose window at all.
This review is for a previous version of the add-on (2.1.0).Rated 5 out of 5 stars
Nice and easy to unbind all the keys, only one I've found to still work.
Open the add on, scroll to the bottom, click 'unset singles', click save, done. Thanks.
To create your own collections, you must have a Mozilla Add-ons account.