KeePassHttp-Connector

KeePass integration for browsers using KeePassHttp

KeePassHttp-Connector란 무엇입니까?

KeePassHttp-Connector은(는) smorks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "KeePass integration for browsers using KeePassHttp"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

KeePassHttp-Connector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is a fork of the ChromeIPass extension, since it seems to be abadoned by it's original author.

Some changes from ChromeIPass 2.8.1:
* storage API used to store settings
* use async http reqs
* fill password hotkey changed to Alt+Shift+P

Change Log:

1.0.11
* more http auth fixes
* changed username shortcut key to Alt+Shift+U
* exclude .xsd files
* better detection of dynamic fields

1.0.10
* fix http auth popup dialog not showing any credentials

1.0.9
* fix more http auth issues
* http auth option should now take effect immediately, rather than on browser restart

1.0.8
* for http auth, if there are multiple matching credentials, user must select one from the extension icon

1.0.7
* update library versions (jquery, jquery-ui, bootstrap)
* for http auth, try all matching credentials before prompting user

1.0.3
* fix http auth

1.0.2:
* updated keepasshttp update version url                    

확장 프로그램 기본 정보

이름 KeePassHttp-Connector KeePassHttp-Connector
ID dafgdjggglmmknipkhngniifhplpcldb
공식 URL https://chromewebstore.google.com/detail/keepasshttp-connector/dafgdjggglmmknipkhngniifhplpcldb
설명 KeePass integration for browsers using KeePassHttp
파일 크기 519 KB
설치 횟수 55,248
현재 버전 1.0.11
최근 업데이트 2018-02-15
출시 날짜 2018-02-14
평점 4.45/5 총 58 개의 평점
개발자 smorks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/smorks/keepasshttp-connector
도움말 페이지 URL https://github.com/smorks/keepasshttp-connector/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeePassHttp-Connector",
    "version": "1.0.11",
    "manifest_version": 2,
    "description": "KeePass integration for browsers using KeePassHttp",
    "icons": {
        "16": "icons\/keepass_16x16.png",
        "48": "icons\/keepass_48x48.png",
        "128": "icons\/keepass_128x128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19x19\/icon_normal_blue_19x19.png",
            "38": "icons\/keepass_38x38.png"
        },
        "default_title": "KeePassHttp-Connector",
        "default_popup": "popups\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background\/aes.js",
            "background\/cryptoHelpers.js",
            "background\/utf8.js",
            "background\/utils.js",
            "background\/keepass.js",
            "background\/httpauth.js",
            "background\/browserAction.js",
            "background\/page.js",
            "background\/event.js",
            "background\/init.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml",
                "*:\/\/*\/*.xsd"
            ],
            "js": [
                "browser-polyfill.min.js",
                "jquery-3.2.1.min.js",
                "jquery-ui.min.js",
                "kphc.js"
            ],
            "css": [
                "jquery-ui.min.css",
                "bootstrap-btn.css",
                "kphc.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "commands": {
        "fill-username-password": {
            "description": "Insert username + password",
            "suggested_key": {
                "default": "Alt+Shift+U",
                "mac": "Alt+Shift+U"
            }
        },
        "fill-password": {
            "description": "Insert a password",
            "suggested_key": {
                "default": "Alt+Shift+P",
                "mac": "Alt+Shift+P"
            }
        }
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "icons\/key_16x16.png",
        "icons\/key_24x24.png",
        "images\/*"
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "http:\/\/localhost:19455\/",
        "http:\/\/localhost\/",
        "https:\/\/raw.github.com\/"
    ]
}