Randomiser

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

什么是Randomiser?

Randomiser是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…”。

扩展截图

screenshot

下载Randomiser扩展crx文件

下载Randomiser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
官方URL https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
简介 Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
文件大小 129 KB
安装次数 66
当前版本 0.3
更新时间 2015-06-24
上架时间 2015-06-24
评分 3.00/5 共2次评分
开发者 Unknown
付费类型 free
支持的语言 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"
        ]
    }
}