Credentials Autofill

Enable auto fill credentials

Wat is Credentials Autofill?

Credentials Autofill is een Chrome-extensie ontwikkeld door Aniketos, en de belangrijkste functie is "Enable auto fill credentials".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Credentials Autofill

Download Credentials Autofill-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Credentials Autofill Credentials Autofill
ID kkifkadkcbpkfngiamhcobgeikpnbnel
Officiële URL https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel
Beschrijving Enable auto fill credentials
Bestandsgrootte 160 KB
Aantal Installaties 55
Huidige Versie 1.0.0.5
Laatst Bijgewerkt 2018-10-15
Publicatiedatum 2018-10-15
Ontwikkelaar Aniketos
Betalingswijze free
Ondersteunde Talen 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",
        "*:\/\/*\/*"
    ]
}