Random Text Generator

Insert any amount of fake data to a form field. Easy Peasy

Что такое Random Text Generator?

Random Text Generator - это расширение Chrome, разработанное https://shobi.in, и его основная функция - "Insert any amount of fake data to a form field. Easy Peasy".

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

screenshot

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

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

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

                        This is a google chrome extension which will generate a random text of given length, and will paste the generated text into the last active input form field.

Use Cmd + Shift + I to insert fakeness in Mac
Use Ctrl + Shift + F to insert fakeness in Windows                    

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

Название Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Официальный URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Описание Insert any amount of fake data to a form field. Easy Peasy
Размер файла 719 KB
Количество установок 514
Текущая Версия 1.0.1
Последнее Обновление 2018-11-16
Дата публикации 2018-11-14
Рейтинг 2.33/5 Всего 3 оценок
Разработчик https://shobi.in
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ppshobi/chrome-random-text-generator
URL страницы помощи https://github.com/ppshobi/chrome-random-text-generator/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Text Generator",
    "description": "Insert any amount of fake data to a form field. Easy Peasy",
    "version": "1.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "title": "Random Text Generator"
    },
    "commands": {
        "insert-fake": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+I",
                "windows": "Ctrl+Shift+F"
            },
            "description": "Insert any amount of fake data to a form field"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "512": "icon\/icon_512.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}