如何更改Firebug'字体?

发布于 2024-10-25 03:22:20 字数 78 浏览 2 评论 0原文

我喜欢 FF3.6 上的 Firebug 字体。安装 FF4 和相应的 Firbug 1.7 字体后已更改。如何为 Firebug 选择字体?

I liked my Firebug's font on FF3.6 . After installing FF4 and appropriate Firbug 1.7 font has changed. How can I chose font for Firebug?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

漫漫岁月 2024-11-01 03:22:20

我遇到了同样的问题,并且已经寻找了一段时间。我实在是受不了快递了解决方案出奇的简单:

  1. 在 Firefox 选项 ->选项->内容-> (字体和颜色)高级->将等宽字体更改为您想要的字体
  2. 重新启动 Firefox

副作用是所有指定等宽字体的网站都将使用您选择的字体。这对我来说没问题,我不需要见快递。

I had the same problem and have been looking for a while. I can't stand Courier. The solution is surprisingly simple:

  1. In the Firefox Options -> Options -> Content -> (Fonts & Colors) Advanced -> Change the Monospaced font to the one you want
  2. Restart Firefox

The side-effect is all websites that specify the monospace font will use the font you selected. This is ok for me, I don't have to see Courier.

从来不烧饼 2024-11-01 03:22:20

如果您使用的是 Mac OSX,您可以修改 Firebug xpi 的 css

,xip 位于:
〜/库/应用程序支持/Firefox/Profiles/xxx.default/extensions/[电子邮件受保护]

打开它并修改css文件,将font-family:Monaco, monospace;更改为其他。

或者您可以安装新的 Firebug 1.8(http://getfirebug.com/),它解决了问题。

you can modify the css of the Firebug xpi

if you are using Mac OSX,the xip is at:
~/Library/Application Support/Firefox/Profiles/xxx.default/extensions/[email protected]

open it and modify the css file,change font-family:Monaco, monospace; to other.

or you can install the new Firebug 1.8(http://getfirebug.com/),it fixed the problem.

冬天旳寂寞 2024-11-01 03:22:20

Firefox/Firebug 中或 about:config 下没有更改字体的选项,因此您必须修改插件本身。不过,您首先需要做一些事情。这些说明自 Firebug 1.8.3 版本起有效。

注意:当通过 Firefox 更新 Firebug 时,这些更改将会消失。

  1. 删除“附加组件”页面中的 Firebug 插件。重新启动 Firefox 并关闭应用程序。

  2. .xpi 格式只是一个 ZIP 文件,因此请下载 xpi 文件并使用您选择的程序解压该文件。

    http://getfirebug.com/releases/firebug/1.8/

  3. 进行搜索并替换文本 font-family: monospace; 并替换为您选择的字体。例如,我使用了font-family: Consolas, "Lucida Console", monospace;

    <前><代码>\content\firebug\firebug.css
    第 26 行:字体系列:等宽字体;
    第 255 行:font-family: monospace;
    \皮肤\经典\console.css
    第 50 行:font-family: monospace;
    第 125 行:font-family: monospace;
    第 211 行:font-family: monospace;
    第 424 行:font-family:等宽字体;
    第 505 行:font-family:等宽字体;
    \皮肤\经典\css.css
    第 14 行:字体系列:等宽字体;
    \skin\classic\debugger.css
    第 5 行:字体系列:等宽字体;
    第 16 行:字体系列:等宽字体;
    第 50 行:font-family: monospace;
    第 157 行:font-family: monospace;
    第 301 行:font-family:等宽字体;
    第 310 行:font-family:等宽字体;
    \皮肤\经典\dom.css
    第 156 行:font-family: monospace;
    \皮肤\经典\firebug.css
    第 72 行:font-family: monospace;
    第 81 行:font-family: monospace;
    第 92 行:font-family: monospace;
    第 497 行:字体系列:等宽字体;
    \皮肤\经典\html.css
    第 11 行:字体系列:等宽字体;
    第 76 行:font-family: monospace;
    \皮肤\经典\net.css
    第 245 行:font-family: monospace;
    第 655 行:font-family:等宽字体;
    \皮肤\经典\panelbase.css
    第 260 行:font-family:等宽字体;
    \skin\classic\tableRep.css
    第 4 行:字体系列:等宽字体;
    \skin\classic\win\firebug.css
    第 151 行:font-family: monospace;

  4. 将文件重新压缩为与您下载的文件同名的 ZIP 文件。

  5. 双击新的扩展文件或从 Firefox 中安装它。

  6. 出现提示时重新启动 Firefox,Firebug 面板中将使用新的等宽字体。

There is no option to change the font from within Firefox/Firebug or under about:config, so you have to modify the plugin itself. There are a few things you'll need to do first, though. These instructions are valid as of the 1.8.3 version of Firebug.

Note: These changes will disappear when Firebug is updated via Firefox.

  1. Remove the Firebug plugin in the Add-ons page. Restart Firefox and close the application.

  2. The .xpi format is just a ZIP file, so download the xpi file and extract the file with your program of choice.

    http://getfirebug.com/releases/firebug/1.8/

  3. Do a search and replace for the text font-family: monospace; and replace with your font choices. For example, I used font-family: Consolas, "Lucida Console", monospace;.

    \content\firebug\firebug.css
        Line 26:      font-family: monospace;
        Line 255:     font-family: monospace;
    \skin\classic\console.css
        Line 50:      font-family: monospace;
        Line 125:     font-family: monospace;
        Line 211:     font-family: monospace;
        Line 424:     font-family: monospace;
        Line 505:     font-family: monospace;
    \skin\classic\css.css
        Line 14:      font-family: monospace;
    \skin\classic\debugger.css
        Line 5:       font-family: monospace;
        Line 16:      font-family: monospace;
        Line 50:      font-family: monospace;
        Line 157:     font-family: monospace;
        Line 301:     font-family: monospace;
        Line 310:     font-family: monospace;
    \skin\classic\dom.css
        Line 156:     font-family: monospace;
    \skin\classic\firebug.css
        Line 72:      font-family: monospace;
        Line 81:      font-family: monospace;
        Line 92:      font-family: monospace;
        Line 497:     font-family: monospace;
    \skin\classic\html.css
        Line 11:      font-family: monospace;
        Line 76:      font-family: monospace;
    \skin\classic\net.css
        Line 245:     font-family: monospace;
        Line 655:     font-family: monospace;
    \skin\classic\panelbase.css
        Line 260:     font-family: monospace;
    \skin\classic\tableRep.css
        Line 4:       font-family: monospace;
    \skin\classic\win\firebug.css
        Line 151:     font-family: monospace;
    
  4. Re-zip the files into a ZIP file with the same name as the one your downloaded.

  5. Double-click the new extension file or install it from within Firefox.

  6. Restart Firefox when prompted and your new monospace font will be used in the Firebug panels.

哆啦不做梦 2024-11-01 03:22:20

转到 Firebug 区域并按 Ctrl+Shift+Plus

Goto Firebug's area and press Ctrl+Shift+Plus

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文