Firefox で GMail のメール本文を等幅フォントで表示させる方法

この情報は古くなった.Firefox で GMail のメール本文を等幅フォントで表示させる方法 - BiBoLoG 参照.

情報元は忘れた.クラス名で検索して,上位にあったGmailを固定ピッチの等幅フォント(MonoSpace)で表示する方法(新Gmail対応) | Creazy!だろう.

編集するのは,Windows XP の場合は次のファイル.環境により,違う位置にあるかもしれない.

C:\Documents and Settings\<ユーザ名>\Application Data\Mozilla\Firefox\Profiles\<プロファイル名>\chrome\userContent.css

他に2ファイルあるかもしれない.

  • userContent-example.css
  • userChrome-example.css

example を抜くと適用されるわけだ.さておき,編集内容は次のとおり.

@-moz-document domain(mail.google.com) {
	.ArwC7c {
		font-family: monospace !important;
	}
	textarea.iE5Yyc {
		font-family: monospace !important;
	}
}

これでメール本文とメール入力欄が等幅フォントで表示される.