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 Hide the URL Address in the Browser Status Bar

  • 1 resposta
  • 1 tem este problema
  • 2 visualizações
  • Última resposta de strafy

more options

Hello everyone ! This is my first time here.

I would like your help on how can we hide or remove the URL status bar at the bottom left?

https://www.youtube.com/watch?v=GPi9W4vDglo

This page may reveal addresses that are not necessary and pose little security concerns.

I found various things in the forums like for example this

https://actualwizard.com/hide-url-link-in-browser-status-bar

there may be a solution with htlm and javascript but as I am not a coder I do not know more.


Thank you for helping me (and it would be even better if your solution is in video).

Hello everyone ! This is my first time here. I would like your help on how can we hide or remove the URL status bar at the bottom left? https://www.youtube.com/watch?v=GPi9W4vDglo This page may reveal addresses that are not necessary and pose little security concerns. I found various things in the forums like for example this https://actualwizard.com/hide-url-link-in-browser-status-bar there may be a solution with htlm and javascript but as I am not a coder I do not know more. Thank you for helping me (and it would be even better if your solution is in video).

Todas as respostas (1)

more options

Create a userChrome.css file to hide the status panel.

Step 1) Locate your Firefox profile. Assuming you're on Windows, you can find it through file explorer by typing: %APPDATA%\Mozilla

Navigate to Firefox, then Profiles, and then you should find a folder named with random characters.default

The exact file path should look roughly like this: C:\Users\YourName\AppData\Roaming\Mozilla\Firefox\Profiles\abc123.default

Step 2) Create a new folder called chrome within the Profiles folder. Name is case-sensitive

Step 3) Create a new text file called userChrome.css within the chrome folder. Name is case-sensitive and ensure the file extension ends with .css and not .txt

Step 4) Copy the following lines of CSS code into userChrome.css You can open and edit with any text editor such as Notepad Be sure to save it when you're done

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


Step 5) Toggle on user profile stylesheets. In Firefox address bar, type: about:config Accept the risk and continue In the search preference name bar, type: toolkit.legacyUserProfileCustomizations.stylesheets Change the settings to true by toggling the switch

Step 6) Restart Firefox for customization to take effect.

Information adapted from cor-el's answer here: How to Hide Status Panel