ChromeKeePass Bèta

Extension for automatically entering logins from KeePass

ChromeKeePass Bèta क्या है?

ChromeKeePass Bèta RoelVB द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for automatically entering logins from KeePass"।

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

screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में ChromeKeePass Bèta एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        When you want to be the first to have the newest ChromeKeePass feature you need this extension.
If you're looking for the stable release, you can find it at https://chrome.google.com/webstore/detail/chromekeepass/dphoaaiomekdhacmfoblfblmncpnbahm

This is an open source extension that securely connects KeePass to your browser for automatically entering logins into websites.

The source code can be found at https://github.com/RoelVB/ChromeKeePass
And if you're experiencing any issues you can report them at https://github.com/RoelVB/ChromeKeePass/issues                    

एक्सटेंशन की मूल जानकारी

नाम ChromeKeePass Bèta ChromeKeePass Bèta
ID ameocahhjkljlabpiajepcipkbcpjpep
आधिकारिक URL https://chromewebstore.google.com/detail/chromekeepass-b%C3%A8ta/ameocahhjkljlabpiajepcipkbcpjpep
विवरण Extension for automatically entering logins from KeePass
फ़ाइल का आकार 559 KB
स्थापना संख्या 95
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2024-02-15
प्रकाशन तिथि 2023-07-11
डेवलपर RoelVB
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/RoelVB/ChromeKeePass
सहायता पृष्ठ URL https://github.com/RoelVB/ChromeKeePass/issues
गोपनीयता नीति पृष्ठ URL https://github.com/RoelVB/ChromeKeePass/blob/master/Documents/Privacy.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChromeKeePass B\u00e8ta",
    "description": "Extension for automatically entering logins from KeePass",
    "version": "2.1.0",
    "commands": {
        "redetect_fields": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z",
                "mac": "Command+Shift+Z"
            },
            "description": "Redetect credential fields"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/content_script.css"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "options_page": "html\/options.html",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest",
        "webRequestAuthProvider"
    ],
    "host_permissions": [
        ""
    ]
}