Form Inspector

Inspect, modify, and test live forms with ease

Form Inspectorคืออะไร?

Form Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kinman Covey และคุณลักษณะหลักของมันคือ "Inspect, modify, and test live forms with ease"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Form Inspector

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}