修改界面字体:
进入 ~/.mozilla/firefox/*.default/chrome 目录,复制 userChrome-example.css 为 userChrome.css,并在其后添加类似如下内容:
* {
font-size: 10pt !important;
font-family: “文鼎PL中楷Uni” !important;
}
—————————————————————————
修改按钮、输入框字体:
进入 ~/.mozilla/firefox/*.default/chrome 目录,复制 userContent-example.css 为 userContent.css,并在其后添加类似如下内容:
* {
font-size: 10pt !important;
font-family: “文鼎PL中楷Uni” !important;
}
—————————————————————————
Firefox 技巧之查找
1. Ctrl+F 调出查找工具栏,按 ESC 则关闭。
2. 直接按 ‘ (单引号) 可以快速查找链接。
3. 直接按 / (斜杠) 可以快速查找文字。
4. 按 F3 或者 Ctrl+G 查找下一个,按 Shift+F3 或者 Shift+Ctrl+G 查找上一个。