Password Show Hide
This extension will allow to see store password on password field by adding a eye icon with input field
什么是Password Show Hide?
Password Show Hide是由GreeLogix开发的Chrome扩展程序,该扩展的主要功能是“This extension will allow to see store password on password field by adding a eye icon with input field”。
扩展截图
下载Password Show Hide扩展crx文件
下载Password Show Hide扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Password Show Hide |
ID | dkdkinddlfncaenemeelaklfcpggabfd |
官方URL | https://chromewebstore.google.com/detail/password-show-hide/dkdkinddlfncaenemeelaklfcpggabfd |
简介 | This extension will allow to see store password on password field by adding a eye icon with input field |
文件大小 | 90.27 KB |
安装次数 | 313 |
当前版本 | 1.3.1 |
更新时间 | 2023-01-03 |
上架时间 | 2020-10-20 |
评分 | 5.00/5 共3次评分 |
开发者 | GreeLogix |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://greelogix.com?page_id=6688 |
支持的语言 | 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" } ] } |