KeyCat

KeyCat web-extension

Qu'est-ce que KeyCat ?

KeyCat est une extension Chrome développée par acasajus, et sa fonction principale est "KeyCat web-extension".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension KeyCat

Téléchargez les fichiers d'extension KeyCat au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom KeyCat KeyCat
ID njolgkicibdplnchcojfmckpcbhgaggg
URL Officiel https://chrome.google.com/webstore/detail/keycat/njolgkicibdplnchcojfmckpcbhgaggg
Description KeyCat web-extension
Taille du Fichier 1.1 MB
Nombre d'Installations 17
Version Actuelle 0.0.16
Dernière Mise à Jour 2019-06-06
Date de Publication 2019-06-05
Développeur acasajus
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://key.cat
URL de la Page de Politique de Confidentialité http://key.cat/privacy.html
Langues Prises en Charge 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}"
        }
    }
}