0%

firefox 自带源代码查看器字体修改方法

打开firefox文件夹根目录下的res目录,记事本打开“ viewsource.css ”文件,将里面的:

1
2
3
4
5
6
#viewsource {
font-family: -moz-fixed;
font-weight: normal;
color: black;
white-space: pre;
}

替换成

1
2
3
4
5
6
7
#viewsource {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: normal;
color: black;
white-space: pre;
font-size: 12px;
}