NoKey
A distributed password manager without a master passwords
NoKeyคืออะไร?
NoKey เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Florian Zinggeler และคุณลักษณะหลักของมันคือ "A distributed password manager without a master passwords"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NoKey
ดาวน์โหลดไฟล์ส่วนขยาย NoKey ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
NoKey is a distributed password manager that works without a master password. Instead, you can unlock your passwords by confirming from another device. E.g. if you need a password on your PC, you only have to confirm this on your phone. No need to remember any passwords! It's free and fully open source, see https://github.com/Zinggi/NoKey for more.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NoKey |
ID | jfgokfcaagmicdnbebhfccjkbjkdbnjc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/nokey/jfgokfcaagmicdnbebhfccjkbjkdbnjc |
คำอธิบาย | A distributed password manager without a master passwords |
ขนาดไฟล์ | 400 KB |
จำนวนการติดตั้ง | 12 |
เวอร์ชันปัจจุบัน | 0.4.0 |
อัปเดตครั้งล่าสุด | 2023-06-14 |
วันที่เผยแพร่ | 2018-06-04 |
ผู้พัฒนา | Florian Zinggeler |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://nokey.xyz/ |
URL หน้าช่วยเหลือ | https://github.com/Zinggi/NoKey |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/Zinggi/NoKey/blob/master/android/PRIVACY.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NoKey", "description": "A distributed password manager without a master passwords", "version": "0.4.0", "author": "Florian Zinggeler", "applications": { "gecko": { "id": "[email protected]" } }, "icons": { "16": "icons\/logo-16.png", "32": "icons\/logo-32.png", "64": "icons\/logo-64.png", "128": "icons\/logo-128.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": { "16": "icons\/logo-16.png", "32": "icons\/logo-32.png", "64": "icons\/logo-64.png", "128": "icons\/logo-128.png" }, "default_title": "NoKey", "default_popup": "popup\/main.html" }, "web_accessible_resources": [ "icons\/logo.svg", "content_scripts\/newPassword.html", "content_scripts\/fillForm.html" ], "background": { "scripts": [ "dist\/webextensionPolyfill.js", "commons\/bundle.js", "background\/bundle.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dist\/webextensionPolyfill.js", "content\/bundle.js" ], "run_at": "document_end", "all_frames": true } ], "content_security_policy": "script-src 'self'; object-src 'self';", "content_security_policy_RELEASE": "script-src 'self'; object-src 'self';", "content_security_policy_DEBUG": "script-src 'self' 'unsafe-eval'; object-src 'self';" } |