Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

【Thunderbird】メールリストのフォントサイズを変更するには?

Summary

拡張機能は公開が停止されているようなので、CSSをカスタマイズします。

環境

  • Windows 10
  • Thunderbird 68.6.0 (64bit)

手順

  1. Profileの確認
    • C:\users\[User Name]\AppData\Roaming\Thunderbird\Profiles\にProfileがある。
      • 複数のProfileフォルダがある場合、Thunderbird -profilemanagerを実行しProfile Managerを起動して、適用されているProfileを確認。
  2. cssファイル作成
    • Profileフォルダにchrome/userChrome.cssを作成する。font-sizeはお好みで。
  3. Thunderbird起動

userChrome.css

/*
 * Do not remove the @namespace line -- it's required for correct functioning
 */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */

/* 
 * Make all the default font sizes 9 pt:
 */
* { font-size: 9pt !important; }

Reference

support.mozilla.org

developer.mozilla.org

Moving your profile folder - Thunderbird - MozillaZine Knowledge Base