Randomiser

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

Was ist Randomiser?

Randomiser ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Erweiterungsscreenshots

screenshot

Randomiser-Erweiterungs-CRX-Datei herunterladen

Laden Sie Randomiser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
Offizielle URL https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Beschreibung Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Dateigröße 129 KB
Installationsanzahl 66
Aktuelle Version 0.3
Letztes Update 2015-06-24
Veröffentlichungsdatum 2015-06-24
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}