ChromeKeePass Bèta

Extension for automatically entering logins from KeePass

ChromeKeePass Bètaとは何ですか?

ChromeKeePass BètaはRoelVBによって開発されたChromeの拡張機能で、その主な機能は「Extension for automatically entering logins from KeePass」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

ChromeKeePass Bèta拡張機能のCRXファイルをダウンロード

ChromeKeePass Bèta拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        When you want to be the first to have the newest ChromeKeePass feature you need this extension.
If you're looking for the stable release, you can find it at https://chrome.google.com/webstore/detail/chromekeepass/dphoaaiomekdhacmfoblfblmncpnbahm

This is an open source extension that securely connects KeePass to your browser for automatically entering logins into websites.

The source code can be found at https://github.com/RoelVB/ChromeKeePass
And if you're experiencing any issues you can report them at https://github.com/RoelVB/ChromeKeePass/issues                    

拡張機能の基本情報

名前 ChromeKeePass Bèta ChromeKeePass Bèta
ID ameocahhjkljlabpiajepcipkbcpjpep
公式URL https://chromewebstore.google.com/detail/chromekeepass-b%C3%A8ta/ameocahhjkljlabpiajepcipkbcpjpep
説明 Extension for automatically entering logins from KeePass
ファイルサイズ 559 KB
インストール数 95
現在のバージョン 2.1.0
最終更新日 2024-02-15
公開日 2023-07-11
開発者 RoelVB
Eメール [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 B\u00e8ta",
    "description": "Extension for automatically entering logins from KeePass",
    "version": "2.1.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": {
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "options_page": "html\/options.html",
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "webRequest",
        "webRequestAuthProvider"
    ],
    "host_permissions": [
        ""
    ]
}