WebApp Form Filler

Automatically fills forms in your web applications. Especially handy for manual testing and development.

WebApp Form Filler là gì?

WebApp Form Filler là một tiện ích mở rộng Chrome được phát triển bởi https://www.coeps.com, và tính năng chính của nó là "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

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

screenshot
screenshot

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

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

                        This tool allows to organize rules that describe how your forms are being filled or clicked.
The rules can be ordered, exported and imported (json).
It comes with a select tool to highlight form elements and get possible selectors automatically.

This software is open source and under the MIT license.
https://github.com/coeps-github/chrome-webapp-form-fill-extension                    

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

Tên WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
URL Chính Thức https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Mô tả Automatically fills forms in your web applications. Especially handy for manual testing and development.
Kích Thước Tệp 20.08 KB
Số Lần Cài Đặt 1,161
Phiên Bản Hiện Tại 0.0.8
Cập Nhật Lần Cuối 2019-02-16
Ngày Phát Hành 2019-02-16
Nhà Phát Triển https://www.coeps.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/coeps-github/chrome-webapp-form-fill-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebApp Form Filler",
    "short_name": "WAFF",
    "version": "0.0.8",
    "description": "Automatically fills forms in your web applications. Especially handy for manual testing and development.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}