ChromeKeePass

Extension for automatically entering logins from KeePass

Τι είναι το ChromeKeePass;

Το ChromeKeePass είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://chromekeepass.com, και η κύρια λειτουργία του είναι "Extension for automatically entering logins from KeePass".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChromeKeePass

Λήψη αρχείων επέκτασης ChromeKeePass σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": [
        ""
    ]
}