Show and Hide Passwords
Show and Hide Passwords allows you to view and hide passwords on password fields.
Show and Hide Passwordsคืออะไร?
Show and Hide Passwords เป็นส่วนขยายของ Chrome ที่พัฒนาโดย HIDev และคุณลักษณะหลักของมันคือ "Show and Hide Passwords allows you to view and hide passwords on password fields."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Show and Hide Passwords
ดาวน์โหลดไฟล์ส่วนขยาย Show and Hide Passwords ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Never mistype your passwords again! What is SHP ("Show and Hide Passwords")? SHP is a Chrome Extension created to help you when signing in or signing up for any site or service on the internet. It helps you make sure you have typed you password correctly. Why should I install SHP? There are many important reasons why you should install SHP: - You no longer have to type your passwords several times just because of one typing error. Just one click before submitting your form when you are not sure, is enough. This is also helpful to check if caps lock is active or you have currently selected another input language. - You no longer type wrong passwords when creating or registering for a new account. This saves your time and possibly avoids any headache. New in v1.2: - Major bug that caused the extension to stop working is now fixed For questions, reports, feedback, support or anything related to SHP contact us at [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Show and Hide Passwords |
ID | panhbjhhhpldcicghpekhonnmfnpgibd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/show-and-hide-passwords/panhbjhhhpldcicghpekhonnmfnpgibd |
คำอธิบาย | Show and Hide Passwords allows you to view and hide passwords on password fields. |
ขนาดไฟล์ | 158 KB |
จำนวนการติดตั้ง | 12,926 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2018-04-13 |
วันที่เผยแพร่ | 2018-04-13 |
คะแนน | 4.10/5 รวมทั้งหมด 49 คะแนน |
ผู้พัฒนา | HIDev |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Show and Hide Passwords allows you to view and hide passwords on password fields.", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "name": "Show and Hide Passwords", "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "version": "1.2", "manifest_version": 2, "short_name": "SHP" } |