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