AMS Auto Fill

This is an chrome Extension which helps user to auto fill a form based on json input.

Что такое AMS Auto Fill?

AMS Auto Fill - это расширение Chrome, разработанное Fusion SD, и его основная функция - "This is an chrome Extension which helps user to auto fill a form based on json input.".

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

screenshot
screenshot

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

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

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

                                            

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

Название AMS Auto Fill AMS Auto Fill
ID goleodhjeigcnckfjlfgflcpohmmkapp
Официальный URL https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp
Описание This is an chrome Extension which helps user to auto fill a form based on json input.
Размер файла 11.62 KB
Количество установок 174
Текущая Версия 1.2.2
Последнее Обновление 2016-11-14
Дата публикации 2016-11-14
Рейтинг 4.00/5 Всего 3 оценок
Разработчик Fusion SD
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AMS Auto Fill",
    "short_name": "AMS",
    "description": "This is an chrome Extension which helps user to auto fill a form based on json input.",
    "version": "1.2.2",
    "offline_enabled": true,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/rollsroycemotorcars.force.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "activeTab"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_title": "AMS Auto Fill",
        "default_popup": "popup.html"
    }
}