Form Templates

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

Co je Form Templates?

Form Templates je rozšíření Chrome vyvinuté McSodbrenner, a jeho hlavní funkcí je „Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Form Templates

Stáhněte si soubory rozšíření Form Templates ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
Oficiální URL https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Popis Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Velikost souboru 51.8 KB
Počet instalací 223
Aktuální Verze 1.0
Poslední Aktualizace 2018-03-31
Datum Vydání 2018-03-31
Hodnocení 3.48/5 Celkem 27 Hodnocení
Vývojář McSodbrenner
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
        }
    ]
}