Data Generator

Create random name, job title or text data.

Что такое Data Generator?

Data Generator - это расширение Chrome, разработанное alexander.lea, и его основная функция - "Create random name, job title or text data.".

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

screenshot
screenshot

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

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

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

                        Generates random Name, Job Title and a paragraph of text, for quick test data generation.

Automatically copies generated text to the clipboard to reduce the number of clicks necessary.

Uses:
- http://baconipsum.com/json-api/ for random paragraph
- https://randomuser.me/ for random name                    

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

Название Data Generator Data Generator
ID ocaojfcfeffaeabdhhplnanikiimgndi
Официальный URL https://chromewebstore.google.com/detail/data-generator/ocaojfcfeffaeabdhhplnanikiimgndi
Описание Create random name, job title or text data.
Размер файла 67.97 KB
Количество установок 152
Текущая Версия 1.0.3
Последнее Обновление 2016-09-08
Дата публикации 2016-09-08
Разработчик alexander.lea
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Data Generator",
    "description": "Create random name, job title or text data.",
    "version": "1.0.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-3.1.0.min.js",
                "js\/popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "clipboardWrite"
    ]
}