Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

How to Disable Check for updates button in Help/About in firefox 5.0

  • 3 ответа
  • 2 имеют эту проблему
  • 4 просмотра
  • Последний ответ от cor-el

more options

Hi the user should not manually check for updates so we want to disable the Check for updates button also in Help/About.

Thanks in advanced

Hi the user should not manually check for updates so we want to disable the Check for updates button also in Help/About. Thanks in advanced

Выбранное решение

You can hide that button with code in userChrome.css below the @namespace line.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#aboutDialog #updateBox { display:none!important; }

You can also choose to lock the related update pref(s) to false if you want to make sure.

See:

Прочитайте этот ответ в контексте 👍 0

Все ответы (3)

more options

Выбранное решение

You can hide that button with code in userChrome.css below the @namespace line.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
#aboutDialog #updateBox { display:none!important; }

You can also choose to lock the related update pref(s) to false if you want to make sure.

See:

more options

This worked - Thanks a lot :)