Show Passwords
This extension transforms password fields into plain text fields.
Show Passwordsคืออะไร?
Show Passwords เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.dahlkemedia.com และคุณลักษณะหลักของมันคือ "This extension transforms password fields into plain text fields."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show Passwords
ดาวน์โหลดไฟล์ส่วนขยาย Show Passwords ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over. NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Show Passwords |
ID | kmbolocfihljheomgjcolimidpeepdig |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig |
คำอธิบาย | This extension transforms password fields into plain text fields. |
ขนาดไฟล์ | 6.14 KB |
จำนวนการติดตั้ง | 185 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-12-20 |
วันที่เผยแพร่ | 2016-08-31 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://www.dahlkemedia.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Passwords", "description": "This extension transforms password fields into plain text fields.", "version": "1.1", "icons": { "19": "icon.png" }, "browser_action": { "default_title": "Show Passwords", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "showpasswordsauto.js" ], "run_at": "document_end" } ] } |