Randomiser

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

O que é Randomiser?

Randomiser é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Randomiser

Baixe arquivos de extensão Randomiser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
URL Oficial https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Descrição Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Tamanho do Arquivo 129 KB
Contagem de Instalações 66
Versão Atual 0.3
Última Atualização 2015-06-24
Data de Publicação 2015-06-24
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}