Randomiser

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

Apa itu Randomiser?

Randomiser adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Randomiser

Unduh file ekstensi Randomiser dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
URL Resmi https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Deskripsi Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Ukuran File 129 KB
Jumlah Instalasi 66
Versi Saat Ini 0.3
Terakhir Diperbarui 2015-06-24
Tanggal Publikasi 2015-06-24
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}