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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/RoelVB/ChromeKeePass/issues
عنوان صفحة سياسة الخصوصية 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": [
        ""
    ]
}