WebApp Form Filler

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

Was ist WebApp Form Filler?

WebApp Form Filler ist eine Chrome-Erweiterung, die von https://www.coeps.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

Erweiterungsscreenshots

screenshot
screenshot

WebApp Form Filler-Erweiterungs-CRX-Datei herunterladen

Laden Sie WebApp Form Filler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
Offizielle URL https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Beschreibung Automatically fills forms in your web applications. Especially handy for manual testing and development.
Dateigröße 20.08 KB
Installationsanzahl 1,161
Aktuelle Version 0.0.8
Letztes Update 2019-02-16
Veröffentlichungsdatum 2019-02-16
Entwickler https://www.coeps.com
Zahlungsart free
Erweiterungswebsite https://github.com/coeps-github/chrome-webapp-form-fill-extension
Unterstützte Sprachen 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"
    }
}