ChromeKeePass

Extension for automatically entering logins from KeePass

ChromeKeePass क्या है?

ChromeKeePass https://chromekeepass.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for automatically entering logins from KeePass"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        NOTE: You need KeePassHttp to get a secure communication between KeePass and Chrome. Setup instructions can be found here: https://github.com/RoelVB/ChromeKeePass (or video instructions here: https://youtu.be/0cVEjYQXrHc)

ChromeKeePass is an open source extension that will help you logging into websites using your logins from KeePass.
The goal of this extension is to create a userfriendly KeePass integration. With an easily readable and understandable sourcecode.

If you find any issues, please report them at: https://github.com/RoelVB/ChromeKeePass/issues                    

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

नाम ChromeKeePass ChromeKeePass
ID dphoaaiomekdhacmfoblfblmncpnbahm
आधिकारिक URL https://chromewebstore.google.com/detail/chromekeepass/dphoaaiomekdhacmfoblfblmncpnbahm
विवरण Extension for automatically entering logins from KeePass
फ़ाइल का आकार 541 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2024-01-14
प्रकाशन तिथि 2020-04-11
रेटिंग 3.92/5 कुल 24 रेटिंग्स
डेवलपर https://chromekeepass.com
ईमेल [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",
    "description": "Extension for automatically entering logins from KeePass",
    "version": "2.0.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": {
            "128": "images\/icon128.png",
            "48": "images\/icon48.png"
        }
    },
    "options_page": "html\/options.html",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest",
        "webRequestAuthProvider"
    ],
    "host_permissions": [
        ""
    ]
}