Google Chrome Browser Password Visualization Display

How to Display and Visualize Password Dots in Google Chrome Browser

This article introduces a method to display and visualize password dots in Google Chrome browser, making them visible.

Shou Arisaka
1 min read
Oct 18, 2025

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’);.

Share this article

Shou Arisaka Oct 18, 2025

🔗 Copy Links