如何更改firebug的默认字体?
在Firebug中,默认字体对我来说不太舒服,我在Firefox菜单栏->工具->选项中进行了更改,但没有起作用。
In Firebug, the default font is not very comfortable for me, and I made the change in Firefox menubar->tools->options, but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您只想更改字体大小,请使用
about:config
页面并更改选项extensions.firebug.textSize
或使用增加字体大小
和 < firebug 菜单中的 code>Decrease font size 选项(菜单和热键在我的笔记本电脑上的 FF4 和 Win7 中不起作用)。如果要更改 UI 元素的字体系列,您可以修改位于扩展目录中的 firebug css 文件 (
c:\Users\myusername\AppData\Roaming\Mozilla\Firefox\Profiles\nd21zknl.default\extensions\< a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="45232c372027302205362a2331322437206b2f2a202d20322c31316b262a286b3d352c">[电子邮件受保护]\skin\class ic\firebug.css
为我)。If you want to change only font size, use
about:config
page and change optionextensions.firebug.textSize
or useIncrease font size
andDecrease font size
options in the firebug menu (menu and hotkeys doesn't work in FF4 and Win7 on my laptop).If you want to change font-families of UI elements you can modify firebug css files located in the extensions directory (
c:\Users\myusername\AppData\Roaming\Mozilla\Firefox\Profiles\nd21zknl.default\extensions\[email protected]\skin\classic\firebug.css
for me).无需修改扩展程序的文件(并且在每次 Firebug 更新后再次执行...)
您所要做的就是将规则添加到文件/chrome/userChrome.css(如果尚不存在则创建它):
There is no need to modify the extension's files (and to do it again after each Firebug update...)
All you have to do is to add rules to the file
<FirefoxProfile>/chrome/userChrome.css
(create it if it doesn't exist yet):如果您使用 Firebug 1.11+,您可以这样做:
1) 打开
[电子邮件受保护]
或您的.xpi 文件(提取)与 Winrar/ Winzip 存档程序2) 搜索行 font-family: monospace;在所有 .css 文件中
3) 替换所有
font-family: monospace;
=>font-family: consolas, monospace !important;
4) 保存文件,进行存档(zip、rar),然后更改其扩展名 =>
.xpi
5) 重新启动 Firefox。
If you use Firebug 1.11+, you can do it:
1) Open the
[email protected]
or your .xpi file (extract) with Winrar/Winzip archive program2) Search the line font-family: monospace; in all .css files
3) Replace all
font-family: monospace;
=>font-family: consolas, monospace !important;
4) Save the file, do it archive (zip, rar) and later change it's extension =>
.xpi
5) Restart the Firefox.