Thunderbird カスタマイズメモ(Thunderbird45対応)

Thunderbird45で自分用カスタマイズメモ
スタイル関係はどこかからいただいたものですが、引用元がわからなくなってしまったのでごめんなさい。
 
◆アドオン関係
→ヘッダー部分をコンパクトに
CompactHeader
 
→送信日時などの日付フォーマットの変更
Configdate
 
→送信先のアドレスの確認(他ドメイン宛てなどで確認して誤送信防止)
Confirm-Address
 
→手を加えずに転送する
Mail Redirect
 
→フォルダの並び順を変更
Manually sort folders
 
→Google Calendarと同期する
Provider for Google Calendar
 
→定型文を挿入(添付ファイル名なども挿入可)
Quicktext
 
→途中でクラッシュしたときにメールがダブったのを削除
Remove Duplicate Messages (Alternate)
 
→画面のカスタマイズ
Stylish
 
→時間指定で送信予約する(変な時間に送信したことがバレないように(笑))
後で送信
 
→メールのインポートエクスポート
ImportExportTools
 
→相手のメーラーを表示する
Display Mail User Agent
 
→広告除去(Thunderbirdでは必要なさそうだけどあったのでいれてみた)
uBlock Origin
 
→(install.rdf編集必要)メール編集画面にルーラーを追加
ルーラーバー (Ruler Bar)
 
→(install.rdf編集必要)引用句がネストしている場合に色分けする
Quote Colors
 
 
◆添付ファイルのファイル名をすべて表示
デフォルト小さくて見えないのと、ファイル名が切れてしまうので大きくする

設定エディタ
mailnews.attachments.display.view

「1」でアイコンが大きくなり、ファイル名がすべて表示
 
◆添付ファイルの領域を開いたままにする
stylishで制御

/*添付ファイル領域を広げたままにする*/
#attachmentView > [collapsed="true"] {
  visibility: visible !important;
  overflow: auto !important;
}

 
 
◆スレッドペインを縞々にする

/* スレッドペインを縞々にする */
#threadTree treechildren::-moz-tree-row(odd) {
	background-color: #f5f5f5 !important;
}
#threadTree treechildren::-moz-tree-row(selected) {
	background-color: -moz-Dialog !important;
}
#threadTree treechildren::-moz-tree-row(selected, focus) {
	background-color: Highlight !important;
}

 
 
◆スレッドペインのフォントサイズ

/* スレッドペイン(メッセージリストペイン)のフォントサイズを変える */
#threadTree treechildren {
font-size: 12px;
}
/* スレッドペインの行間を広げる */
#threadTree treechildren::-moz-tree-row {
min-height : 14px !important;
}

 
◆フォルダペインのサイズを変える

/* フォルダペインの行間 */
#folderTree treechildren:-moz-tree-row {
height: 16px !important;
min-height: 0px !important;
}
/* フォルダペインのフォントサイズ */
#folderTree treechildren {
font-size: 11px;
}

◆Lightningのカレンダーの休日の背景を赤くする(デフォルトはなんで緑?)

.calendar-month-day-box-day-off {
/* 休日を赤くする */
    background-color: #FFEFEF;
}
.calendar-month-day-box-day-off .calendar-month-day-box-date-label {
/* 休日を赤くする */
    background-color: #F7E7E7;
}

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA