Form Templates

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

Cos'è Form Templates?

Form Templates è un'estensione di Chrome sviluppata da McSodbrenner, e la sua funzione principale è "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Form Templates

Scarica i file di estensione Form Templates in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
URL Ufficiale https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Descrizione Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Dimensione del File 51.8 KB
Conteggio Installazioni 223
Versione Corrente 1.0
Ultimo Aggiornamento 2018-03-31
Data di Pubblicazione 2018-03-31
Valutazione 3.48/5 Totale 27 Valutazioni
Sviluppatore McSodbrenner
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}