Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
What is Reveal Passwords?
Reveal Passwords is a Chrome extension developed by Unknown, and its main feature is "Toggle password fields to text fields so you can see what you've typed (or mistyped).".
Extension Screenshots
Download Reveal Passwords Extension CRX File
Download Reveal Passwords extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.
Extension Basic Information
Name | Reveal Passwords |
ID | kbbbdhddofjfncbijifmonfffhkphkhg |
Official URL | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
Description | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
File Size | 15.49 KB |
Installation Count | 311 |
Current Version | 1.0.0 |
Last Updated | 2016-06-12 |
Publish Date | 2016-06-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/ctrl-freaks/reveal-passwords |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal Passwords", "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).", "version": "1.0.0", "short_name": "revealpasswords", "minimum_chrome_version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Reveal Passwords", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png", "64": "icons\/inactive-64.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |