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
Eメール [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
        }
    ]
}