ChromeKeePass

Extension for automatically entering logins from KeePass

Qu'est-ce que ChromeKeePass ?

ChromeKeePass est une extension Chrome développée par https://chromekeepass.com, et sa fonction principale est "Extension for automatically entering logins from KeePass".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChromeKeePass

Téléchargez les fichiers d'extension ChromeKeePass au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ChromeKeePass ChromeKeePass
ID dphoaaiomekdhacmfoblfblmncpnbahm
URL Officiel https://chromewebstore.google.com/detail/chromekeepass/dphoaaiomekdhacmfoblfblmncpnbahm
Description Extension for automatically entering logins from KeePass
Taille du Fichier 541 KB
Nombre d'Installations 10,000
Version Actuelle 2.0.0
Dernière Mise à Jour 2024-01-14
Date de Publication 2020-04-11
Évaluation 3.92/5 Total 24 Évaluations
Développeur https://chromekeepass.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/RoelVB/ChromeKeePass
URL de la Page d'Aide https://github.com/RoelVB/ChromeKeePass/issues
URL de la Page de Politique de Confidentialité https://github.com/RoelVB/ChromeKeePass/blob/master/Documents/Privacy.md
Langues Prises en Charge 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": [
        ""
    ]
}