搜索 | 用户支持

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

Learn More

How can I hide "Transferring data..." status?

  • 3 个回答
  • 4 人有此问题
  • 32 次查看
  • 最后回复者为 cor-el

more options

I want to hide the "Transferring data..." status that shows on the lower left of the browser screen because it is as hazardous as a flickering icon, from a usability standpoint.

I want to hide the "Transferring data..." status that shows on the lower left of the browser screen because it is as hazardous as a flickering icon, from a usability standpoint.

被采纳的解决方案

You can hide specific status pop-up messages with code in userChrome.css if you still want to see the links on hover.

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

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


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

#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;}
定位到答案原位置 👍 1

所有回复 (3)

more options

选择的解决方案

You can hide specific status pop-up messages with code in userChrome.css if you still want to see the links on hover.

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

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


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

#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

Thank you! This took care of it.