Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 3 trả lời
  • 4 gặp vấn đề này
  • 46 lượt xem
  • Trả lời mới nhất được viết bởi 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.

Giải pháp được chọn

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;}
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (3)

more options

Giải pháp được chọn

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.