Password Show Hide
This extension will allow to see store password on password field by adding a eye icon with input field
What is Password Show Hide?
Password Show Hide is a Chrome extension developed by GreeLogix, and its main feature is "This extension will allow to see store password on password field by adding a eye icon with input field".
Extension Screenshots
Download Password Show Hide Extension CRX File
Download Password Show Hide 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
Sometimes, we need to get/copy the saved password from password saved field data. This extension enable you to turn password field to text field. It will add a show link with each password field and on clicking the link it will turn the password visibility to text.
Extension Basic Information
Name | Password Show Hide |
ID | dkdkinddlfncaenemeelaklfcpggabfd |
Official URL | https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd |
Description | This extension will allow to see store password on password field by adding a eye icon with input field |
File Size | 90.27 KB |
Installation Count | 313 |
Current Version | 1.3.1 |
Last Updated | 2023-01-03 |
Publish Date | 2020-10-20 |
Rating | 5.00/5 Total 3 Ratings |
Developer | GreeLogix |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://greelogix.com?page_id=6688 |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Password Show Hide", "description": "This extension will allow to see store password on password field by adding a eye icon with input field", "version": "1.3.1", "homepage_url": "https:\/\/github.com\/abuzer", "browser_action": { "default_icon": "favicon.png", "default_popup": "popup.html", "default_title": "Passowrd Show\/Hide" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "css": [ "css\/style.css" ], "js": [ "scripts\/jquery.min.js", "scripts\/content.js" ], "web_accessible_resources": [ "jquery.min.js" ], "run_at": "document_end" } ] } |