Randomiser

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

Randomiser là gì?

Randomiser là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Randomiser

Tải xuống các tệp mở rộng Randomiser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
URL Chính Thức https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
Mô tả Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
Kích Thước Tệp 129 KB
Số Lần Cài Đặt 66
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2015-06-24
Ngày Phát Hành 2015-06-24
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}