Data Generator

Create random name, job title or text data.

Data Generator क्या है?

Data Generator alexander.lea द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create random name, job title or text data."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Data Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}