搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

How to hide the loading information boxes in the corners of the screen?

more options

When you hover over links in Firefox (not specifying, I'm pretty sure most browsers do that, but I'm exclusively using Firefox), it presents you information of the link in the corners of the browser window. Is there any way, some kind of option or something to hide that?

(in the left corner of the attached screenshot)

When you hover over links in Firefox (not specifying, I'm pretty sure most browsers do that, but I'm exclusively using Firefox), it presents you information of the link in the corners of the browser window. Is there any way, some kind of option or something to hide that? (in the left corner of the attached screenshot)

所有回复 (5)

more options

Here is the image that didn't upload the first run.

more options

Add the following code to your userChrome.css file.

   @namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
   statuspanel {display: none !important;}
more options

Do you want to hide all these status messages?

Note that you can use this more specific selector to only hide links if you want to see messages shown during page load so you know what happens.

statuspanel[type="overLink"] .statuspanel-label { display:none!important; }
more options

cor-el said

Do you want to hide all these status messages? Note that you can use this more specific selector to only hide links if you want to see messages shown during page load so you know what happens.
statuspanel[type="overLink"] .statuspanel-label { display:none!important; }

Do I have to add this after the first line of TyDraniu or will it work on its own?

more options

Hi helpspls, those are two different alternatives.

This one --

statuspanel {
  display: none !important;
}

-- hides the panel no matter what is showing in it.

This one --

statuspanel[type="overLink"] .statuspanel-label {
  display: none !important; 
}

-- only hides the panel when it contains a particular kind of message, identified by the type="overLink" (as in, hovering your mouse over a link). So that would allow loading status messages, for example.

It's usually a good idea to only hide the minimum necessary until you decide that you want to hide more.