Credentials Autofill

Enable auto fill credentials

Что такое Credentials Autofill?

Credentials Autofill - это расширение Chrome, разработанное Aniketos, и его основная функция - "Enable auto fill credentials".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Credentials Autofill

Скачайте файлы расширений Credentials Autofill в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Credentials Autofill Credentials Autofill
ID kkifkadkcbpkfngiamhcobgeikpnbnel
Официальный URL https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel
Описание Enable auto fill credentials
Размер файла 160 KB
Количество установок 55
Текущая Версия 1.0.0.5
Последнее Обновление 2018-10-15
Дата публикации 2018-10-15
Разработчик Aniketos
Тип оплаты free
Поддерживаемые языки 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",
        "*:\/\/*\/*"
    ]
}