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';" } |