Form Templates

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

ما هو Form Templates؟

Form Templates هو إضافة Chrome تم تطويرها بواسطة McSodbrenner، والميزة الرئيسية لها هي "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Form Templates

قم بتنزيل ملفات الامتداد Form Templates بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Form Templates Form Templates
ID nnlhpmkdmolhbkbnmiambphhkepekomh
عنوان URL الرسمي https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh
الوصف Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
حجم الملف 51.8 KB
عدد التثبيتات 223
النسخة الحالية 1.0
آخر تحديث 2018-03-31
تاريخ النشر 2018-03-31
تقييم 3.48/5 مجموع تقييمات 27
المطور McSodbrenner
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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
        }
    ]
}