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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}