Form Templates

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

Wat is Form Templates?

Form Templates is een Chrome-extensie ontwikkeld door McSodbrenner, en de belangrijkste functie is "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Form Templates

Download Form Templates-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
Officiële URL https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Beschrijving Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Bestandsgrootte 51.8 KB
Aantal Installaties 223
Huidige Versie 1.0
Laatst Bijgewerkt 2018-03-31
Publicatiedatum 2018-03-31
Beoordeling 3.48/5 Totaal 27 Beoordelingen
Ontwikkelaar McSodbrenner
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}