KeyCat

KeyCat web-extension

KeyCat란 무엇입니까?

KeyCat은(는) acasajus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "KeyCat web-extension"입니다.

확장 프로그램 스크린샷

screenshot

KeyCat 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Key.cat can manage all your credentials and lets you share them with others. The idea is to make a password manager that can work offline and sync when there's a connection available to the server. Like an auto-sync keepass.

Everything is encrypted end-to-end using NaCL via tweetnacl.js.
No metadata leaks. No metadata is stored unencrypted.
Single executable for the server.
Can import from keepass (v.3 for now).
Multiple teams and vaults.
Each team and vault can be independently managed and shared with others.
Multiple credentials per site.
API available to third-party software.
More info is in the wiki!                    

확장 프로그램 기본 정보

이름 KeyCat KeyCat
ID njolgkicibdplnchcojfmckpcbhgaggg
공식 URL https://chrome.google.com/webstore/detail/keycat/njolgkicibdplnchcojfmckpcbhgaggg
설명 KeyCat web-extension
파일 크기 1.1 MB
설치 횟수 17
현재 버전 0.0.16
최근 업데이트 2019-06-06
출시 날짜 2019-06-05
개발자 acasajus
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://key.cat
개인정보 보호 정책 페이지 URL http://key.cat/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyCat",
    "description": "KeyCat web-extension",
    "version": "0.0.16",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48-on.png",
        "128": "icons\/icon_128-on.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "clipboardWrite",
        "idle",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "browser_action": {
        "default_title": "KeyCat",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background\/main.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content\/autofill.js",
                "content\/autofiller.js",
                "content\/notificationBar.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "css": [
                "content\/autofill.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "notification\/bar.html"
    ],
    "applications": {
        "gecko": {
            "id": "{fdd2f6f0-0ea5-4abe-8ba9-26cff6dcbf99}"
        }
    }
}