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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}