Manage Passwords in Chrome on macOS

google-chromemacospassword

I forgot one of my passwords stored in Chrome. When I navigate to the page Chrome offers to auto-fill it in. I need to know the password. I checked Settings, it says

View and manage saved passwords in your [Google Account][1]

**Saved Passwords**
*Saved passwords will appear here*

**Never Saved**
...

I checked https://passwords.google.com and there are indeed passwords listed there, but not the particular one I am looking for. I looked in chrome://flags/ and there is no password export option there (there might have been before). My version is

Version 71.0.3578.98 (Official Build) (64-bit)

Is there any easy way to find this password other than with wireshark?

Best Answer

You can inspect the input element for the password and change the input type from password to text. You will notice the password that has been filled in will be visible (changed from ******).

  1. Right click on the password field on the website and click 'Inspect' from the context menu.
  2. This will open developer tools with the input element selected. It will be something like <input type="password" ..>. Change the type to text and click outside. This will save the change and you will see your password.

dev tools

enter image description here