Form Tools

Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON.

Form Toolsคืออะไร?

Form Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rob Stemp และคุณลักษณะหลักของมันคือ "Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Form Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Developer Tools Extension panel to debug form elements for an inspected page.

This extension creates an additional panel in the chrome developer tools to show a running list of form inputs and current values.

Useful for debugging form data elements. View hidden form fields, dropdown values, checkboxes etc as well as inputs and textareas.

* View/Edit form elements as they are changed.
* Save/Load all form data for a page
* Export and Import form data to JSON

-------------
Releases
-------------
v1.3.0 Updated U.I, renamed to form tools, as it is more than just viewing now.
v1.2.0 Added Saving/Loading of form elements
v1.1.1 Added Import/Export to JSON
v1.0.9 Moved FormViewer from elements panel sidebar to its own panel for more screen real estate.

v1.0.8 Fixed to work with later versions of chrome (using runtime over extension)

v1.0.5 Added ability to edit values within sidebar, just click on value, change and press enter.

v1.0.2 Initial Release - view only                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Form Tools Form Tools
ID gihginompkjijnipckobcjioandcmjgp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/form-tools/gihginompkjijnipckobcjioandcmjgp
คำอธิบาย Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON.
ขนาดไฟล์ 43.95 KB
จำนวนการติดตั้ง 1,553
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2014-10-29
วันที่เผยแพร่ 2014-10-29
คะแนน 2.06/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Rob Stemp
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Tools",
    "short_name": "FormTools",
    "version": "1.3.0",
    "description": "Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON.",
    "devtools_page": "devtools.html",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}