NoKey

A distributed password manager without a master passwords

NoKey란 무엇입니까?

NoKey은(는) Florian Zinggeler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A distributed password manager without a master passwords"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NoKey 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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