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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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