WebApp Form Filler

Automatically fills forms in your web applications. Especially handy for manual testing and development.

WebApp Form Fillerとは何ですか?

WebApp Form Fillerはhttps://www.coeps.comによって開発されたChromeの拡張機能で、その主な機能は「Automatically fills forms in your web applications. Especially handy for manual testing and development.」です。

拡張機能のスクリーンショット

screenshot
screenshot

WebApp Form Filler拡張機能のCRXファイルをダウンロード

WebApp Form Filler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This tool allows to organize rules that describe how your forms are being filled or clicked.
The rules can be ordered, exported and imported (json).
It comes with a select tool to highlight form elements and get possible selectors automatically.

This software is open source and under the MIT license.
https://github.com/coeps-github/chrome-webapp-form-fill-extension                    

拡張機能の基本情報

名前 WebApp Form Filler WebApp Form Filler
ID nmkmpldhpejmploidnhchbohelkfnokk
公式URL https://chromewebstore.google.com/detail/webapp-form-filler/nmkmpldhpejmploidnhchbohelkfnokk
説明 Automatically fills forms in your web applications. Especially handy for manual testing and development.
ファイルサイズ 20.08 KB
インストール数 1,161
現在のバージョン 0.0.8
最終更新日 2019-02-16
公開日 2019-02-16
開発者 https://www.coeps.com
支払い方法 free
拡張機能のウェブサイト https://github.com/coeps-github/chrome-webapp-form-fill-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebApp Form Filler",
    "short_name": "WAFF",
    "version": "0.0.8",
    "description": "Automatically fills forms in your web applications. Especially handy for manual testing and development.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}