Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

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

  • 3 відповіді
  • 6 мають цю проблему
  • 12 переглядів
  • Остання відповідь від 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; }