Form Templates

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

¿Qué es Form Templates?

Form Templates es una extensión de Chrome desarrollada por McSodbrenner, y su función principal es "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Form Templates

Descarga archivos de extensión Form Templates en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
URL Oficial https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Descripción Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Tamaño del Archivo 51.8 KB
Cantidad de Instalaciones 223
Versión Actual 1.0
Última Actualización 2018-03-31
Fecha de Publicación 2018-03-31
Calificación 3.48/5 Total de 27 Calificaciones
Desarrollador McSodbrenner
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
        }
    ]
}