Form Templates

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

Qu'est-ce que Form Templates ?

Form Templates est une extension Chrome développée par McSodbrenner, et sa fonction principale est "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Form Templates

Téléchargez les fichiers d'extension Form Templates 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

                        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.                    

Informations de Base sur l'Extension

Nom Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
URL Officiel https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Description Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Taille du Fichier 51.8 KB
Nombre d'Installations 223
Version Actuelle 1.0
Dernière Mise à Jour 2018-03-31
Date de Publication 2018-03-31
Évaluation 3.48/5 Total 27 Évaluations
Développeur McSodbrenner
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}