Reveal Passwords
Toggle password fields to text fields so you can see what you've typed (or mistyped).
Reveal Passwordsคืออะไร?
Reveal Passwords เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Toggle password fields to text fields so you can see what you've typed (or mistyped)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reveal Passwords
ดาวน์โหลดไฟล์ส่วนขยาย Reveal Passwords ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reveal Passwords |
ID | kbbbdhddofjfncbijifmonfffhkphkhg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg |
คำอธิบาย | Toggle password fields to text fields so you can see what you've typed (or mistyped). |
ขนาดไฟล์ | 15.49 KB |
จำนวนการติดตั้ง | 311 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2016-06-12 |
วันที่เผยแพร่ | 2016-06-11 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ctrl-freaks/reveal-passwords |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal Passwords", "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).", "version": "1.0.0", "short_name": "revealpasswords", "minimum_chrome_version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_title": "Reveal Passwords", "default_icon": { "19": "icons\/inactive-19.png", "38": "icons\/inactive-38.png", "64": "icons\/inactive-64.png" } }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "declarativeContent", "storage" ], "icons": { "128": "icons\/inactive-128.png", "64": "icons\/inactive-64.png" } } |