This article introduces a method to display and visualize password dots in Google Chrome browser, making them visible.
On most websites, you can display hidden passwords with $("input").attr('type', 'text');.
Using $("*").attr('type', 'password'); will break the site layout.
This changes all input tag type elements from password to text attribute.
Since it uses jQuery, it won’t work if jQuery is not loaded on the site. However, it’s also possible to load external libraries like jQuery with bookmarklets, so you can use such bookmarklets in conjunction for sites that don’t have jQuery loaded.
Conversely, to hide displayed passwords, use $(“input”).attr(‘type’, ‘password’);.