Randomiser

Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…

Randomiser क्या है?

Randomiser Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…"।

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

screenshot

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

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

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

                        Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.

As developers, we waste valuable time repeatedly filling in forms on the websites we are building. Randomiser takes away this wasted time by looking at the input types of fields and the information contained in labels and tries to fill the field with the most relevant information it can.

Currently, the following "randomisations" are supported:

First name
Last name
Full name
Street
City
Town
Post code
Zip code
Date
Radio
Checkbox
Anything else will be filled with a random string or number                    

एक्सटेंशन की मूल जानकारी

नाम Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
आधिकारिक URL https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
विवरण Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
फ़ाइल का आकार 129 KB
स्थापना संख्या 66
वर्तमान संस्करण 0.3
अंतिम अपडेट 2015-06-24
प्रकाशन तिथि 2015-06-24
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Randomiser",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery\/jquery-2.1.3.min.js",
                "vendor\/jquery.randomise\/jquery.randomise.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}