Simple Autofill

Presents a simple dropdown menu for textboxes from a list of preconfigured items.

Что такое Simple Autofill?

Simple Autofill - это расширение Chrome, разработанное Wiggybird, и его основная функция - "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        When typing in a textbox, this extension displays a menu with a list of matching items from the Options page.

This no-frills extension was designed to be light weight, noninvasive, and intuitive to use.

Please note: Option settings are stored using the chrome.storage.sync API and are not encrypted. Entering sensitive data is NOT recommended.

Also note: This is my first javascript app and my first Chrome extension - constructive criticism is welcome!                    

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

Название Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
Официальный URL https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Описание Presents a simple dropdown menu for textboxes from a list of preconfigured items.
Размер файла 25.8 KB
Количество установок 6,047
Текущая Версия 1.0.4
Последнее Обновление 2014-07-25
Дата публикации 2014-07-25
Рейтинг 3.19/5 Всего 110 оценок
Разработчик Wiggybird
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Autofill",
    "version": "1.0.4",
    "options_page": "options.html",
    "description": "Presents a simple dropdown menu for textboxes from a list of preconfigured items.",
    "icons": {
        "128": "images\/autofill.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/autofill19.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "styles\/autofill.css"
            ],
            "js": [
                "scripts\/autofill.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}