Form Inspector

Inspect, modify, and test live forms with ease

Form Inspectorとは何ですか?

Form InspectorはKinman Coveyによって開発されたChromeの拡張機能で、その主な機能は「Inspect, modify, and test live forms with ease」です。

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

screenshot

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

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

拡張機能の使用方法

                        Easily inspect, debug, and test live forms on any website.

Form inspector allows you to:

+ Modify input values (including hidden inputs)
+ Submit forms straight from the extension
+ A testing mode that automatically fills in form inputs when opening the extension
+ Custom default test values for quick testing
+ Honeypot avoidance

Test mode makes it easier than ever to perform test submissions on forms.

1. Provide default input values in the Test mode options
2. Activate Test mode by clicking the checkbox
3. Open the extension on any page to autofill forms with your default values
4. Click submit. No more repetitive typing!                    

拡張機能の基本情報

名前 Form Inspector Form Inspector
ID ngbpjbijlmghjooeejfjfmgjfmlkfpbg
公式URL https://chromewebstore.google.com/detail/form-inspector/ngbpjbijlmghjooeejfjfmgjfmlkfpbg
説明 Inspect, modify, and test live forms with ease
ファイルサイズ 14.67 KB
インストール数 419
現在のバージョン 1.1
最終更新日 2018-04-24
公開日 2018-04-23
評価 5.00/5 合計 1 レビュー
開発者 Kinman Covey
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/kin5/form-inspector
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Inspector",
    "version": "1.1",
    "description": "Inspect, modify, and test live forms with ease",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}