Καλώς ορίσατε στα πρόσθετα Firefox για Android.

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

Κλείσιμο

Στο δρόμο;

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

Κλείσιμο

will

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

Πληροφορίες δημιουργού
Όνομα will
Χρήστης από Ιαν. 26, 2012
Αριθμός αναπτυγμένων προσθέτων 2 πρόσθετα
Μέση βαθμολογία προσθέτων προγραμματιστή Rated 4 out of 5 stars

Πρόσθετα που έχω δημιουργήσει

tbkeys-lite

Custom Thunderbird keybindings

This add-on is a follow on to Keyconfig which is no longer supported.

It is aimed at power users. Please look at the GitHub site before leaving a one star review about documentation or usability.

Rated 5 out of 5 stars (63)
4.447 χρήστες

tbhints

Link hints for messages

This addon adds a keybinding (ctrl+shift+E) for displaying hints next to each link in an email message. Enter the hint text into the box at the bottom of the message to open that link in the system's default web browser.

Rated 5 out of 5 stars (1)
1 χρήστης

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

Event-extract

Rated 4 out of 5 stars

This add-on does not always grab the right date, but it does a pretty good job. Hopefully it will continue to improve!

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

Nostalgy

Rated 5 out of 5 stars

I love this add-on. It really helps make working with Thunderbird quick and efficient. I like to keep my inbox clean, and Nostalgy helps me mow down new emails by moving them to the correct folders. It also encourages me to keep my emails organized by making it easy to navigate to different folders with the keyboard.

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

QuoteCollapse

Rated 4 out of 5 stars

I like this add-on. It did the hard work of adding a very useful feature to Thunderbird to hide quotes. There is still a little more work to be done in terms of preferences and keyboard shortcuts as some of the other reviewers have suggested.

Here is some code that can be used with the keyconfig addon to add a keyboard shortcut to toggle expanding and collapsing all quotations in a message.

tree = QuoteCollapse._messagePane.contentDocument.getElementsByTagName("blockquote");

if (tree.item(0).getAttribute("qctoggled") == "true") {
QuoteCollapse._setTree(QuoteCollapse._messagePane.contentDocument, 0);
}
else {
QuoteCollapse._setTree(QuoteCollapse._messagePane.contentDocument, 1);
}

If you want separate commands for expanding and collapsing, just use

QuoteCollapse._setTree(QuoteCollapse._messagePane.contentDocument, 1);

to expand all and

QuoteCollapse._setTree(QuoteCollapse._messagePane.contentDocument, 0);

to collapse all.

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