Reveal
Context menu extension to view auto completed hidden password.
Revealคืออะไร?
Reveal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shiv และคุณลักษณะหลักของมันคือ "Context menu extension to view auto completed hidden password."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reveal
ดาวน์โหลดไฟล์ส่วนขยาย Reveal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
How many times have you forgotten the password saved by google passwords and have to manually logout or request for a new one without knowing how to view the hidden password? Reveal will help you make the hidden password visible. Simply right click on the password input field and chose 'Reveal password'.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reveal |
ID | coickbnhchmdngjabciaimhdhnbgnpef |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reveal/coickbnhchmdngjabciaimhdhnbgnpef |
คำอธิบาย | Context menu extension to view auto completed hidden password. |
ขนาดไฟล์ | 182 KB |
จำนวนการติดตั้ง | 7,788 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2020-03-03 |
วันที่เผยแพร่ | 2020-02-29 |
คะแนน | 4.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Shiv |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reveal", "description": "Context menu extension to view auto completed hidden password.", "version": "1.0", "author": "Shivkanthb", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/eyecon-16x16.png", "48": "images\/eyecon-48x48.png", "72": "images\/eyecon-72x72.png", "128": "images\/eyecon-128x128.png" }, "background": { "scripts": [ "scripts\/event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content_script.js" ] } ] } |