Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

ค้นหาฝ่ายสนับสนุน

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.

เรียนรู้เพิ่มเติม

How do I disable the link popup you get when hovering over a link? (Most annoying "feature" ever)

  • 3 การตอบกลับ
  • 6 คนมีปัญหานี้
  • 124 ครั้งที่ดู
  • ตอบกลับล่าสุดโดย cor-el

When hovering over a link in FF 10.0 you get a very anoying popup in the left corner of the browser, I want to disable this "feature". I DONT want to move the displaying of the link to any kind of statusbar I want it gone completely.

When hovering over a link in FF 10.0 you get a very anoying popup in the left corner of the browser, I want to disable this "feature". I DONT want to move the displaying of the link to any kind of statusbar I want it gone completely.

วิธีแก้ปัญหาที่เลือก

Add code to userChrome.css 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 { display:none!important; }
อ่านคำตอบนี้ในบริบท 👍 1

การตอบกลับทั้งหมด (3)

You can try this add-on : Status-4-Evar add-on


thank you

Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

Yeah and then I get a bar instead, thats a bit better but I want to disable the showing of the link alltogether... as I said "I DONT want to move the displaying of the link to any kind of statusbar"

วิธีแก้ปัญหาที่เลือก

Add code to userChrome.css 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 { display:none!important; }