WebApp Form Filler

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

Hvad er WebApp Form Filler?

WebApp Form Filler er en Chrome-udvidelse udviklet af https://www.coeps.com, og dens hovedfunktion er "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download WebApp Form Filler-udvidelses-CRX-fil

Download WebApp Form Filler-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
Officiel URL https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Beskrivelse Automatically fills forms in your web applications. Especially handy for manual testing and development.
Filstørrelse 20.08 KB
Antal Installationer 1,161
Nuværende Version 0.0.8
Senest Opdateret 2019-02-16
Udgivelsesdato 2019-02-16
Udvikler https://www.coeps.com
Betalingsmetode free
Udvidelseswebsted https://github.com/coeps-github/chrome-webapp-form-fill-extension
Understøttede Sprog 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"
    }
}