form input generator

Generate random form input based on input type. Input will be saved into local storage automatically

Что такое form input generator?

form input generator - это расширение Chrome, разработанное sabbir, и его основная функция - "Generate random form input based on input type. Input will be saved into local storage automatically".

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

screenshot

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

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

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

                        Generate random form input. Creating random form data based on input type. No setting will be needed, just click and enjoy.                    

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

Название form input generator form input generator
ID ipcomhegikknbhpcfhkjaimmgpagmfof
Официальный URL https://chromewebstore.google.com/detail/form-input-generator/ipcomhegikknbhpcfhkjaimmgpagmfof
Описание Generate random form input based on input type. Input will be saved into local storage automatically
Размер файла 19.61 KB
Количество установок 50
Текущая Версия 2.1.5
Последнее Обновление 2020-11-02
Дата публикации 2019-11-05
Разработчик sabbir
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "form input generator",
    "description": "Generate random form input based on input type. Input will be saved into local storage automatically",
    "version": "2.1.5",
    "icons": {
        "128": "icon_180.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Form Input Generator"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "tabs"
    ]
}