搜索 | 用户支持

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

Learn More

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

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

more options

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)

more options

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.

more options

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"

more options

选择的解决方案

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; }