Credentials Autofill

Enable auto fill credentials

Was ist Credentials Autofill?

Credentials Autofill ist eine Chrome-Erweiterung, die von Aniketos entwickelt wurde, und ihr Hauptmerkmal ist "Enable auto fill credentials".

Erweiterungsscreenshots

screenshot

Credentials Autofill-Erweiterungs-CRX-Datei herunterladen

Laden Sie Credentials Autofill-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to save credentials for hosts. Each form input containing "user" or "password" in its name attribute will be filled with these data after focus event on form inputs appropriately.                    

Grundlegende Informationen zur Erweiterung

Name Credentials Autofill Credentials Autofill
ID kkifkadkcbpkfngiamhcobgeikpnbnel
Offizielle URL https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel
Beschreibung Enable auto fill credentials
Dateigröße 160 KB
Installationsanzahl 55
Aktuelle Version 1.0.0.5
Letztes Update 2018-10-15
Veröffentlichungsdatum 2018-10-15
Entwickler Aniketos
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Credentials Autofill",
    "version": "1.0.0.5",
    "description": "Enable auto fill credentials",
    "browser_action": {
        "default_icon": "icons\/icon16_disabled.png",
        "default_title": "Auto-fill credentials",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "event_script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery\/jquery-3.2.0.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ]
}