WebApp Form Filler

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

What is WebApp Form Filler?

WebApp Form Filler is a Chrome extension developed by https://www.coeps.com, and its main feature is "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

Extension Screenshots

screenshot
screenshot

Download WebApp Form Filler Extension CRX File

Download WebApp Form Filler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
Official URL https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Description Automatically fills forms in your web applications. Especially handy for manual testing and development.
File Size 20.08 KB
Installation Count 1,161
Current Version 0.0.8
Last Updated 2019-02-16
Publish Date 2019-02-16
Developer https://www.coeps.com
Payment Type free
Extension Website https://github.com/coeps-github/chrome-webapp-form-fill-extension
Supported Languages 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"
    }
}