Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Disable status bar without add-on

  • 4 件の返信
  • 11 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: SargonIII

more options

Is there a way to disable the status bar without installing an add-on on Firefox (i.e. Status-4-Evar)? If not, this is plain silly. I think users should have the option to disable the status bar without an add-on. I dislike the fact I'd have to download one add-on for one tiny little thing. I just don't like the status bar. I know what I'm loading, so I don't think I need to check where it's coming from. For how I use Firefox, it's completely useless to me.

Is there a way to disable the status bar without installing an add-on on Firefox (i.e. Status-4-Evar)? If not, this is plain silly. I think users should have the option to disable the status bar without an add-on. I dislike the fact I'd have to download one add-on for one tiny little thing. I just don't like the status bar. I know what I'm loading, so I don't think I need to check where it's coming from. For how I use Firefox, it's completely useless to me.

すべての返信 (4)

more options

Do you mean hiding that pop-up that slides open at the bottom of the window that shows status messages?

This sliding alert also shows links if you hover them on web pages.

Do you want to eliminate those as well?


Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* use this code to hide all messages */
#statusbar-display { display:none!important; }

/* only hide some messages */
#statusbar-display[label^="Looking"] { display:none !important; }
#statusbar-display[label^="Connect"] { display:none !important; }
#statusbar-display[label^="Waiting"] { display:none !important; }
#statusbar-display[label^="Transfer"] { display:none !important; }

more options

"#statusbar-display { display:none!important; }"

After the last update this does not work on my computer anymore. Could you tell me what I can do?

この投稿は SargonIII により に変更されました

more options

Use statuspanel instead:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.statuspanel-label {background:#FF9!important;color:black!important;font-family:"DejaVu Sans Mono"}

statuspanel {display:none!important}
statuspanel {max-width:90%!important}

statuspanel[type="overLink"] .statuspanel-label
statuspanel[type="status"] .statuspanel-label[value^="Looking"]
statuspanel[type="status"] .statuspanel-label[value^="Connect"]
statuspanel[type="status"] .statuspanel-label[value^="Waiting"]
statuspanel[type="status"] .statuspanel-label[value^="Transfer"]
more options

Thank you very much!