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 |
Eメール | [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';" } |