ChromeKeePass Bèta

Extension for automatically entering logins from KeePass

O que é ChromeKeePass Bèta?

ChromeKeePass Bèta é uma extensão do Chrome desenvolvida por RoelVB, e sua principal característica é "Extension for automatically entering logins from KeePass".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ChromeKeePass Bèta

Baixe arquivos de extensão ChromeKeePass Bèta no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome ChromeKeePass Bèta ChromeKeePass Bèta
ID ameocahhjkljlabpiajepcipkbcpjpep
URL Oficial https://chromewebstore.google.com/detail/chromekeepass-b%C3%A8ta/ameocahhjkljlabpiajepcipkbcpjpep
Descrição Extension for automatically entering logins from KeePass
Tamanho do Arquivo 559 KB
Contagem de Instalações 95
Versão Atual 2.1.0
Última Atualização 2024-02-15
Data de Publicação 2023-07-11
Desenvolvedor RoelVB
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/RoelVB/ChromeKeePass
URL da Página de Ajuda https://github.com/RoelVB/ChromeKeePass/issues
URL da Página de Política de Privacidade https://github.com/RoelVB/ChromeKeePass/blob/master/Documents/Privacy.md
Idiomas Suportados 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": [
        ""
    ]
}