Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

How to Hide "Fill Login" in Right Click Menu?

  • 1 risposta
  • 1 ha questo problema
  • 10 visualizzazioni
  • Ultima risposta di cor-el

more options

Is there an 'about:config' toggle for me to disable the "fill login" option when I right click in a username or password field on a website? I do not use Firefox lockwise or any of the browser's autofill settings and would like to hide the right click menu as well as turning the feature off entirely, as it clutters the UI.

I also wouldn't mind being able to hide the "Logins and Passwords" section in the drop down menu on the right. Is there a toggle for that as well?

I have attached a screenshot of the UI element(s) I'm asking to hide.

Thanks.

Is there an 'about:config' toggle for me to disable the "fill login" option when I right click in a username or password field on a website? I do not use Firefox lockwise or any of the browser's autofill settings and would like to hide the right click menu as well as turning the feature off entirely, as it clutters the UI. I also wouldn't mind being able to hide the "Logins and Passwords" section in the drop down menu on the right. Is there a toggle for that as well? I have attached a screenshot of the UI element(s) I'm asking to hide. Thanks.
Immagini allegate

Tutte le risposte (1)

more options

If "Fill Login" is enabled (not grayed) like in your screenshot then this would mean that you have stored a login for this website and those logins are managed in Lockwise. You can use this menu item to fill a login in stead of u autofill.

Don't you see a suggestion if you open the "Fill Login" sub menu ?


You can possibly use code in userChrome.css to hide entries in the context menu. See this file for possible selectors to use.

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* hide fill-login items */
#fill-login {display:none!important;}
/* hide fill-login separator */
#fill-login-and-generated-password-separator {display:none!important;}

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

See: