KeyCat

KeyCat web-extension

KeyCatとは何ですか?

KeyCatはacasajusによって開発されたChromeの拡張機能で、その主な機能は「KeyCat web-extension」です。

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

screenshot

KeyCat拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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}"
        }
    }
}