NoKey
A distributed password manager without a master passwords
什么是NoKey?
NoKey是由Florian Zinggeler开发的Chrome扩展程序,该扩展的主要功能是“A distributed password manager without a master passwords”。
扩展截图
下载NoKey扩展crx文件
下载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';" } |