ChromeKeePass

Extension for automatically entering logins from KeePass

什么是ChromeKeePass?

ChromeKeePass是由https://chromekeepass.com开发的Chrome扩展程序,该扩展的主要功能是“Extension for automatically entering logins from KeePass”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载ChromeKeePass扩展crx文件

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