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