Random Text Generator

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

What is Random Text Generator?

Random Text Generator is a Chrome extension developed by https://shobi.in, and its main feature is "Insert any amount of fake data to a form field. Easy Peasy".

Extension Screenshots

screenshot

Download Random Text Generator Extension CRX File

Download Random Text Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
Official URL https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Description Insert any amount of fake data to a form field. Easy Peasy
File Size 719 KB
Installation Count 514
Current Version 1.0.1
Last Updated 2018-11-16
Publish Date 2018-11-14
Rating 2.33/5 Total 3 Ratings
Developer https://shobi.in
Email [email protected]
Payment Type free
Extension Website https://github.com/ppshobi/chrome-random-text-generator
Help Page URL https://github.com/ppshobi/chrome-random-text-generator/issues
Supported Languages 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'"
}