Reveal
Context menu extension to view auto completed hidden password.
What is Reveal?
Reveal is a Chrome extension developed by Shiv, and its main feature is "Context menu extension to view auto completed hidden password.".
Extension Screenshots
Download Reveal Extension CRX File
Download Reveal 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
How many times have you forgotten the password saved by google passwords and have to manually logout or request for a new one without knowing how to view the hidden password? Reveal will help you make the hidden password visible. Simply right click on the password input field and chose 'Reveal password'.
Extension Basic Information
Name | Reveal |
ID | coickbnhchmdngjabciaimhdhnbgnpef |
Official URL | https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef |
Description | Context menu extension to view auto completed hidden password. |
File Size | 182 KB |
Installation Count | 7,788 |
Current Version | 1.0 |
Last Updated | 2020-03-03 |
Publish Date | 2020-02-29 |
Rating | 4.40/5 Total 5 Ratings |
Developer | Shiv |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal", "description": "Context menu extension to view auto completed hidden password.", "version": "1.0", "author": "Shivkanthb", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/eyecon-16x16.png", "48": "images\/eyecon-48x48.png", "72": "images\/eyecon-72x72.png", "128": "images\/eyecon-128x128.png" }, "background": { "scripts": [ "scripts\/event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content_script.js" ] } ] } |