ChromeKeePass

Extension for automatically entering logins from KeePass

ChromeKeePass là gì?

ChromeKeePass là một tiện ích mở rộng Chrome được phát triển bởi https://chromekeepass.com, và tính năng chính của nó là "Extension for automatically entering logins from KeePass".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChromeKeePass

Tải xuống các tệp mở rộng ChromeKeePass dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChromeKeePass ChromeKeePass
ID dphoaaiomekdhacmfoblfblmncpnbahm
URL Chính Thức https://chromewebstore.google.com/detail/chromekeepass/dphoaaiomekdhacmfoblfblmncpnbahm
Mô tả Extension for automatically entering logins from KeePass
Kích Thước Tệp 541 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2024-01-14
Ngày Phát Hành 2020-04-11
Đánh Giá 3.92/5 Tổng số 24 Đánh Giá
Nhà Phát Triển https://chromekeepass.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/RoelVB/ChromeKeePass
URL Trang Trợ Giúp https://github.com/RoelVB/ChromeKeePass/issues
URL Trang Chính Sách Bảo Mật https://github.com/RoelVB/ChromeKeePass/blob/master/Documents/Privacy.md
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}