Randomiser

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

Co je Randomiser?

Randomiser je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Randomiser

Stáhněte si soubory rozšíření Randomiser ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
Oficiální URL https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Popis Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Velikost souboru 129 KB
Počet instalací 66
Aktuální Verze 0.3
Poslední Aktualizace 2015-06-24
Datum Vydání 2015-06-24
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}