Καλώς ορίσατε στα πρόσθετα Thunderbird.

Προσθέστε επιπλέον χαρακτηριστικά και στυλ για κάνετε το Thunderbird δικό σας.

Κλείσιμο

Στο δρόμο;

Ελέγξτε τη σελίδα μας Mobile Πρόσθετα.

Κλείσιμο

mrmr

Σχετικά με εμένα

Πληροφορίες δημιουργού
Όνομα mrmr
Χρήστης από Οκτ. 7, 2020
Αριθμός αναπτυγμένων προσθέτων 0 πρόσθετα
Μέση βαθμολογία προσθέτων προγραμματιστή Δεν έχει βαθμολογηθεί ακόμα

Οι κριτικές μου

New Email To All:reply, ready for new subject/body

Rated 3 out of 5 stars

>>yes, right click context menu is a good idea. I will add that and also keyboard activation.

If ++ doesn't work due to the other addon - why give 2 stars only to us, if it is them?
>>The button is inserted by the new TB addon system, not by us. I will send them a bug report.

I can't believe this site doesn't allow me to reply to a reply! Strange!
Anyways, first thank you for replying promptly. Well, we all, meaning my coworkers, use mail header addons which seem to be very popular. Once you add to either context menu and/or the mail toolbar, I promise to change it to 5 stars and also make a small donation :). Kindly post here when you are done. Thank you very much.

Αυτή η αξιολόγηση γράφτηκε για παλιότερη έκδοση του πρόσθετου (2.0).  Αυτός ο χρήστης έχει υποβάλει παλιότερη αξιολόγηση για το πρόσθετο.

New Email To All:reply, ready for new subject/body

Rated 2 out of 5 stars

Great idea, but can't get it to work. After installing on tb 78.6.1, I see "++" in middle pane, but can't click on it (prob due to "message header toolbar customize" add on I have. Why can't it be put in the Mail Toolbar? Or right click context menu? (this on fedora 28).

Αυτή η αξιολόγηση γράφτηκε για παλιότερη έκδοση του πρόσθετου (2.0). 

tbkeys-lite

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

Αυτή η αξιολόγηση γράφτηκε για παλιότερη έκδοση του πρόσθετου (2.1.0).  Αυτός ο χρήστης έχει υποβάλει 2 παλιότερες αξιολογήσεις για το πρόσθετο.

tbkeys-lite

Rated 4 out of 5 stars

Thanks, but I prefer not having to build my own, unless there is now way to specify multiple cmds in the addon itself.

So, if you or the author confirms there is now way to do that, I will try building myself. Thanks.

Αυτή η αξιολόγηση γράφτηκε για παλιότερη έκδοση του πρόσθετου (2.1.0).  Αυτός ο χρήστης έχει υποβάλει κι άλλες αξιολογήσεις για το πρόσθετο.

tbkeys-lite

Rated 5 out of 5 stars

Great app, I would not be using tb without it.
One question, how do I define multiple commands? I tried:

"D": "cmd:cmd_selectThread,cmd:cmd_delete",

in various ways, like using ; instead of comma, space in between etc.. nothing works. In tb60, I had used dorando_keyconfig and was able to accomplish the same.

Thanks.

Αυτή η αξιολόγηση γράφτηκε για παλιότερη έκδοση του πρόσθετου (2.1.0).