Avatar for Username

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

Learn More

How can I remove the "Fill login" context menu entry?

  • 11 პასუხი
  • 3 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 83 ნახვა
  • ბოლოს გამოეხმაურა cor-el

Firefox offers the option to "Fill login" through the context menu (see attached image) when ever in a login or password field. However I am using Bitwarden instead of the Firefox password manager and disabled saving passwords in Firefox. Is there a way to remove this "Fill login" action as it always just shows that no logins are saved?

Thanks, Mattias

Firefox offers the option to "Fill login" through the context menu (see attached image) when ever in a login or password field. However I am using Bitwarden instead of the Firefox password manager and disabled saving passwords in Firefox. Is there a way to remove this "Fill login" action as it always just shows that no logins are saved? Thanks, Mattias
მიმაგრებული ეკრანის სურათები

გადაწყვეტა შერჩეულია

OK, I've found an inconvenient solution using userChrome.css. Follow this guide to set it up and then put this content inside it. (Make sure you enable the legacy stylesheet loading.)

#fill-login {
   display: none !important;

}

პასუხის ნახვა სრულად 👍 1

ყველა პასუხი (11)

I'm also in a similar situation! I've been searching and disabled anything to do with "autofill" or "password" in the about:config options and yet it still won't go away.

Hello Mattias and mattmcoomber,

To disable this feature that came with the update to Firefox version 67.0 :

Type in the address bar about:config and press Enter (ignore the warning)

Type in the search bar and look for the preference :

signon.showAutoCompleteFooter

And set its value to false

Then close and restart Firefox.

That should do the trick .....

შერჩეული გადაწყვეტა

OK, I've found an inconvenient solution using userChrome.css. Follow this guide to set it up and then put this content inside it. (Make sure you enable the legacy stylesheet loading.)

#fill-login {
   display: none !important;

}

McCoy said

Hello Mattias and mattmcoomber, To disable this feature that came with the update to Firefox version 67.0 : Type in the address bar about:config and press Enter (ignore the warning) Type in the search bar and look for the preference : signon.showAutoCompleteFooter And set its value to false Then close and restart Firefox. That should do the trick .....

This still isn't disabling the context menu option for me - looks like the userChrome option is still better!

Hi,

thanks for the replies. The showAutoCompleteFooter sadly doesnt work for me either, but the userChrome solution does. Only tiny problem with that is that it leaves a redundant separator in the menu :p

ჩასწორების თარიღი: , ავტორი: Mattias

@ matmcoomber :

You're not talking about this feature (?) :

https://matthew.noorenberghe.com/blog/2019/05/password-manager-improvements-firefox-67

Well, it looks like toggling the value of that preference doesn't work for either of you - apparantly I misconstrued your question(s).

Sorry ..... :(

Mattias said

Hi, thanks for the replies. The showAutoCompleteFooter sadly doesnt work for me either, but the userChrome solution does. Only tiny problem with that is that it leaves a redundant separator in the menu :p

If you change it to

#fill-login-separator, #fill-login {
  display: none !important;

} it removes the separator too!

mattmcoomber said

Mattias said
Hi, thanks for the replies. The showAutoCompleteFooter sadly doesnt work for me either, but the userChrome solution does. Only tiny problem with that is that it leaves a redundant separator in the menu :p

If you change it to

#fill-login-separator, #fill-login {
  display: none !important;

} it removes the separator too!

Awesome! Now the menu is nice and clean. Thanks! I wish this would be done by default when disabling the builtin password manager.

In Firefox 76.0.1 this userChrome solution doesn't work.

Mattias said

mattmcoomber said
Mattias said
Hi, thanks for the replies. The showAutoCompleteFooter sadly doesnt work for me either, but the userChrome solution does. Only tiny problem with that is that it leaves a redundant separator in the menu :p

If you change it to

#fill-login-separator, #fill-login {
  display: none !important;

} it removes the separator too!

Awesome! Now the menu is nice and clean. Thanks! I wish this would be done by default when disabling the builtin password manager.

In Firefox 76.0.1 this userChrome solution doesn't work. Was the selector renamed?

I think that this is code for the current Firefox releases.

#fill-login,
#fill-login-generated-password,
#fill-login-and-generated-password-separator {
 display:none !important;
}