Autofill

Automatically enter form (text, select, radio)

Что такое Autofill?

Autofill - это расширение Chrome, разработанное t4y3, и его основная функция - "Automatically enter form (text, select, radio)".

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

screenshot

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

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

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

                                            

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

Название Autofill Autofill
ID eahekcjalfgflphdfogkbeajfjbljhmp
Официальный URL https://chrome.google.com/webstore/detail/autofill/eahekcjalfgflphdfogkbeajfjbljhmp
Описание Automatically enter form (text, select, radio)
Размер файла 61.29 KB
Количество установок 219
Текущая Версия 1.0
Последнее Обновление 2019-03-08
Дата публикации 2019-03-08
Разработчик t4y3
Тип оплаты free
Поддерживаемые языки ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autofill",
    "description": "Automatically enter form (text, select, radio)",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png"
        },
        "default_title": "Autofill",
        "default_popup": ".\/build\/index.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}