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 |
官方網址 | 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" } ] } |