Form Templates

Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).

Was ist Form Templates?

Form Templates ist eine Chrome-Erweiterung, die von McSodbrenner entwickelt wurde, und ihr Hauptmerkmal ist "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Form Templates-Erweiterungs-CRX-Datei herunterladen

Laden Sie Form Templates-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

                        You have to test a big form and have to fill the complete form again and again? Then this extension is for you. 

It helps you to generate dummy data and to fill the complete form with just one keyboard shortcut. And you are able to create templates if you want to fill in the same data again and again with some dummy data.

Very useful if you have a catch all email address: Use the placeholder # to generate a counting number each page reload. For example in test#@yourdomain.com.

Take a look at the screenshots on how to use it.                    

Grundlegende Informationen zur Erweiterung

Name Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
Offizielle URL https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Beschreibung Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Dateigröße 51.8 KB
Installationsanzahl 223
Aktuelle Version 1.0
Letztes Update 2018-03-31
Veröffentlichungsdatum 2018-03-31
Bewertung 3.48/5 Insgesamt 27 Bewertungen
Entwickler McSodbrenner
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Form Templates",
    "version": "1.0",
    "description": "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.htm"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.devform.js",
                "jquery.hotkeys.js",
                "jquery.dummy.js",
                "init.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}