marius-wieschollek/passwords-webextension

Tighter Chrome Integration with password saving

Closed this issue · 3 comments

AE720 commented

I didn't see this referenced anywhere, nor was I able to figure out what allows this to happen but I noticed Microsoft's Autofill extension has the ability to override Chrome's built in password manager and hope it would be possible to have something like that added:
image

Here's the extension to question and I'll update if I figure out exactly what this ability is called. https://chrome.google.com/webstore/detail/microsoft-autofill/fiedbfgcleddlbcmgdigjgdfcggjcion

I believe you can find more information about this here: https://developer.chrome.com/docs/extensions/reference/privacy/

I checked the linked chrome documentation and also what the MS Autofill extension does.

  • The chrome.privacy api only allows access to privacy related settings, e.g. disabling autofill or disabling chromes integrated password manager. It does not allow providing custom passwords to chromes autofill feature or accessing passwords stored in chrome
  • Microsoft Autofill disables the integrated autofill & password features and then implements its own autofill feature with custom code.
AE720 commented

I checked the linked chrome documentation and also what the MS Autofill extension does.

  • The chrome.privacy api only allows access to privacy related settings, e.g. disabling autofill or disabling chromes integrated password manager. It does not allow providing custom passwords to chromes autofill feature or accessing passwords stored in chrome
  • Microsoft Autofill disables the integrated autofill & password features and then implements its own autofill feature with custom code.

Thank you for checking in on it and clarifying what it does. Feel free to close it if you don't think it'll do any good imitating the same behavior