WebApp Form Filler

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

Qu'est-ce que WebApp Form Filler ?

WebApp Form Filler est une extension Chrome développée par https://www.coeps.com, et sa fonction principale est "Automatically fills forms in your web applications. Especially handy for manual testing and development.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension WebApp Form Filler

Téléchargez les fichiers d'extension WebApp Form Filler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
URL Officiel https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
Description Automatically fills forms in your web applications. Especially handy for manual testing and development.
Taille du Fichier 20.08 KB
Nombre d'Installations 1,161
Version Actuelle 0.0.8
Dernière Mise à Jour 2019-02-16
Date de Publication 2019-02-16
Développeur https://www.coeps.com
Type de Paiement free
Site Web de l'Extension https://github.com/coeps-github/chrome-webapp-form-fill-extension
Langues Prises en Charge 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"
    }
}