WebApp Form Filler

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

什么是WebApp Form Filler?

WebApp Form Filler是由https://www.coeps.com开发的Chrome扩展程序,该扩展的主要功能是“Automatically fills forms in your web applications. Especially handy for manual testing and development.”。

扩展截图

screenshot
screenshot

下载WebApp Form Filler扩展crx文件

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

扩展使用说明

                        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                    

扩展基本信息

名称 WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
官方URL https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
简介 Automatically fills forms in your web applications. Especially handy for manual testing and development.
文件大小 20.08 KB
安装次数 1,161
当前版本 0.0.8
更新时间 2019-02-16
上架时间 2019-02-16
开发者 https://www.coeps.com
付费类型 free
扩展官网 https://github.com/coeps-github/chrome-webapp-form-fill-extension
支持的语言 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"
    }
}