ChromeKeePass Bèta

Extension for automatically entering logins from KeePass

Was ist ChromeKeePass Bèta?

ChromeKeePass Bèta ist eine Chrome-Erweiterung, die von RoelVB entwickelt wurde, und ihr Hauptmerkmal ist "Extension for automatically entering logins from KeePass".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

ChromeKeePass Bèta-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChromeKeePass Bèta-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name ChromeKeePass Bèta ChromeKeePass Bèta
ID ameocahhjkljlabpiajepcipkbcpjpep
Offizielle URL https://chromewebstore.google.com/detail/chromekeepass-b%C3%A8ta/ameocahhjkljlabpiajepcipkbcpjpep
Beschreibung Extension for automatically entering logins from KeePass
Dateigröße 559 KB
Installationsanzahl 95
Aktuelle Version 2.1.0
Letztes Update 2024-02-15
Veröffentlichungsdatum 2023-07-11
Entwickler RoelVB
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/RoelVB/ChromeKeePass
Hilfeseite URL https://github.com/RoelVB/ChromeKeePass/issues
URL der Datenschutzrichtlinien-Seite https://github.com/RoelVB/ChromeKeePass/blob/master/Documents/Privacy.md
Unterstützte Sprachen 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": [
        ""
    ]
}