Benvenuto in SeaMonkey Add-ons.
Aggiungi nuove funzionalità e stili per rendere SeaMonkey veramente tuo.
ChiudiRecensione di will per QuoteCollapse
Assegnate 4 su 5 stelle
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.
Per creare una tua raccolta devi avere un account per Mozilla Add-ons.