Random Filler

Simple tool that fills forms with random data or predefined edge cases.

Random Filler là gì?

Random Filler là một tiện ích mở rộng Chrome được phát triển bởi Pawel Szczurko, và tính năng chính của nó là "Simple tool that fills forms with random data or predefined edge cases.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Random Filler 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

                        There already exist tools that fill web forms, but this extension aims to aid developers in testing web forms by providing a simple yet useful apporach to filling out forms. Esentially there are two modes, completely random fill and realistic test cases. The completely random options fill forms with random characters (with a biased probability towards letters). On the other hand, a user has also the option to select one of the available test cases, or a mix among the test cases.                    

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

Tên Random Filler Random Filler
ID clofnhpoigphigpholmoimnmkojlpmjg
URL Chính Thức https://chromewebstore.google.com/detail/random-filler/clofnhpoigphigpholmoimnmkojlpmjg
Mô tả Simple tool that fills forms with random data or predefined edge cases.
Kích Thước Tệp 50.67 KB
Số Lần Cài Đặt 692
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-11-01
Ngày Phát Hành 2014-11-01
Đánh Giá 3.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Pawel Szczurko
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Filler",
    "version": "1.0",
    "options_page": "options.html",
    "description": "Simple tool that fills forms with random data or predefined edge cases.",
    "background": {
        "scripts": [
            "back.js"
        ]
    },
    "icons": {
        "512": "icons\/icon512.png",
        "256": "icons\/icon256.png",
        "128": "icons\/icon128.png",
        "64": "icons\/icon64.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "24": "icons\/icon24.png",
        "16": "icons\/icon16.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon24.png"
        },
        "default_title": "Random Filler"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}