Credentials Autofill

Enable auto fill credentials

Cos'è Credentials Autofill?

Credentials Autofill è un'estensione di Chrome sviluppata da Aniketos, e la sua funzione principale è "Enable auto fill credentials".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Credentials Autofill

Scarica i file di estensione Credentials Autofill in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Credentials Autofill Credentials Autofill
ID kkifkadkcbpkfngiamhcobgeikpnbnel
URL Ufficiale https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel
Descrizione Enable auto fill credentials
Dimensione del File 160 KB
Conteggio Installazioni 55
Versione Corrente 1.0.0.5
Ultimo Aggiornamento 2018-10-15
Data di Pubblicazione 2018-10-15
Sviluppatore Aniketos
Tipo di Pagamento free
Lingue Supportate 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",
        "*:\/\/*\/*"
    ]
}