Sometimes we might forget our password, but it is stored in our browser. The password is hidden as "dots" so we cannot get its value directly. Even the trick "copy and paste to a text file"
doesn't help here.
To recover our password, we need to do a little bit HTML hacking here. Let's use Chrome as example.
First, right click and select Inspect Element
. (Click on the image for details.)
Find out the section which describe the password input block. (Click on the image for details.)
Change the value of the type
from password
to text
. (Click on the image for details.)
Welcome home, password!!