NoKey

A distributed password manager without a master passwords

NoKey क्या है?

NoKey Florian Zinggeler द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A distributed password manager without a master passwords"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NoKey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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';"
}