memo.xight.org

日々のメモ

QuoteCollapseのカスタマイズ

Summary

引用部分を折りたたんで表示できる Thunderbirdアドオン
QuoteCollapseのカスタマイズ。

常に1回分の引用を展開する。

/* overwrite quotecollapse default */
blockquote[type="cite"] {
    background-image: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* reinstate for level 1 and above: */
BODY.mailview blockquote[type="cite"] blockquote[type="cite"] {
    background-image: url("chrome://quotecollapse/skin/twisty-clsd.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: 2ex !important;
    padding-bottom: 0px !important;
    overflow: -moz-hidden-unscrollable !important;
}

BODY.mailview blockquote[type="cite"] blockquote[type="cite"][qctoggled="true"] {
    background-image: url("chrome://quotecollapse/skin/twisty-open.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: auto !important;
    overflow: visible !important;
}


常に2回分の引用を展開する。

userContent.css を編集
/* overwrite quotecollapse default */
blockquote[type="cite"] {
    background-image: none !important;
    height: auto !important;
    overflow: visible !important;
}

/* reinstate for level 2 and above: */
BODY.mailview blockquote[type="cite"] blockquote[type="cite"] blockquote[type="cite"] {
    background-image: url("chrome://quotecollapse/skin/twisty-clsd.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: 2ex !important;
    padding-bottom: 0px !important;
    overflow: -moz-hidden-unscrollable !important;
}

BODY.mailview blockquote[type="cite"] blockquote[type="cite"] blockquote[type="cite"][qctoggled="true"] {
    background-image: url("chrome://quotecollapse/skin/twisty-open.png") !important;
    background-repeat: no-repeat !important;
    background-position: top left !important;
    height: auto !important;
    overflow: visible !important;
}


Reference

しげふみメモ : ThunderbirdエクステンションQuoteCollapse
http://blog.livedoor.jp/hakin/archives/50404561.html

mozdev.org - quotecollapse: customising
http://quotecollapse.mozdev.org/customising.html

mozdev.org - quotecollapse
http://quotecollapse.mozdev.org/

使っている Thunderbird アドオンまとめ

Summary

普段使っている Thunderbird アドオンを備忘のためにまとめた。

Confirm-Address

送信前に、宛先を確認できるアドオン。
誤送信防止に。

Google Contacts

Google ContactsとThunderbirdのアドレス帳を同期できる。

Remove Duplicate Messages (Alternate)

重複メールをまとめて削除できるアドオン。

Headers Toggle

メールヘッダを "h" で表示/非表示を切り替えられる。

QuoteCollapse

引用部分を折りたたんで表示できる。

QuoteColors

QuoteCollapseと連携して使うと便利。

Display Mail User Agent

相手がどんなメーラーを使っているかをアイコンで表示してくれる。

Reference

Confirm-Address :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/5582

Google Contacts :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/7307

h.ogi blog (jp)
http://hogi-ja.blogspot.com/

h.ogi's place - Google Contacts
http://hogi.a.orn.jp/ja/gmcont/gmcont.rhtml

Remove Duplicate Messages (Alternate) :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/4654

Headers Toggle :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/1489

mozdev.org - quotecollapse
http://quotecollapse.mozdev.org/

mozdev.org - quotecolors
http://quotecolors.mozdev.org/

Display Mail User Agent :: Thunderbird Add-ons
https://addons.mozilla.org/ja/thunderbird/addon/562