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是由McSodbrenner開發的Chrome擴展程式,該擴展的主要功能是“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

下載Form Templates擴展crx文件

下載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
官方網址 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
        }
    ]
}