Form Templates

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

Apa itu Form Templates?

Form Templates adalah ekstensi Chrome yang dikembangkan oleh McSodbrenner, dan fitur utamanya adalah "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Form Templates

Unduh file ekstensi Form Templates dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
URL Resmi https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
Deskripsi Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Ukuran File 51.8 KB
Jumlah Instalasi 223
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-03-31
Tanggal Publikasi 2018-03-31
Penilaian 3.48/5 Total 27 Penilaian
Pengembang McSodbrenner
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
        }
    ]
}