Randomiser

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

Hvad er Randomiser?

Randomiser er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Udvidelsesskærmbilleder

screenshot

Download Randomiser-udvidelses-CRX-fil

Download Randomiser-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
Officiel URL https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Beskrivelse Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Filstørrelse 129 KB
Antal Installationer 66
Nuværende Version 0.3
Senest Opdateret 2015-06-24
Udgivelsesdato 2015-06-24
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}