Randomiser

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

¿Qué es Randomiser?

Randomiser es una extensión de Chrome desarrollada por Unknown, y su función principal es "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Randomiser

Descarga archivos de extensión Randomiser en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
URL Oficial https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Descripción Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Tamaño del Archivo 129 KB
Cantidad de Instalaciones 66
Versión Actual 0.3
Última Actualización 2015-06-24
Fecha de Publicación 2015-06-24
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}