Welcome to فایرفاکس برای آندروید Add-ons.
Add extra features and styles to make فایرفاکس برای آندروید your own.
CloseReviews for tbkeys-lite
66 reviews for this add-on
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.