WebApp Form Filler

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

¿Qué es WebApp Form Filler?

WebApp Form Filler es una extensión de Chrome desarrollada por https://www.coeps.com, y su función principal es "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión WebApp Form Filler

Descarga archivos de extensión WebApp Form Filler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
URL Oficial https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Descripción Automatically fills forms in your web applications. Especially handy for manual testing and development.
Tamaño del Archivo 20.08 KB
Cantidad de Instalaciones 1,161
Versión Actual 0.0.8
Última Actualización 2019-02-16
Fecha de Publicación 2019-02-16
Desarrollador https://www.coeps.com
Tipo de Pago free
Sitio Web de la Extensión https://github.com/coeps-github/chrome-webapp-form-fill-extension
Idiomas Soportados 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"
    }
}