Data Generator

Create random name, job title or text data.

What is Data Generator?

Data Generator is a Chrome extension developed by alexander.lea, and its main feature is "Create random name, job title or text data.".

Extension Screenshots

screenshot
screenshot

Download Data Generator Extension CRX File

Download Data 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

                        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                    

Extension Basic Information

Name Data Generator Data Generator
ID ocaojfcfeffaeabdhhplnanikiimgndi
Official URL https://chromewebstore.google.com/detail/data-generator/ocaojfcfeffaeabdhhplnanikiimgndi
Description Create random name, job title or text data.
File Size 67.97 KB
Installation Count 152
Current Version 1.0.3
Last Updated 2016-09-08
Publish Date 2016-09-08
Developer alexander.lea
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}