Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Pesquisar no site de suporte

Evite golpes de suporte. Nunca pedimos que você ligue ou envie uma mensagem de texto para um número de telefone, ou compartilhe informações pessoais. Denuncie atividades suspeitas usando a opção “Denunciar abuso”.

Saiba mais

Esta discussão foi arquivada. Faça uma nova pergunta se precisa de ajuda.

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

  • 3 respostas
  • 2 têm este problema
  • 2 visualizações
  • Última resposta de 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

Solução escolhida

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:

Ler esta resposta 👍 0

Todas as respostas (3)

more options

Solução escolhida

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 :)

more options

You're welcome