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은(는) Rob Stemp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the developer tools to debug form fields on the page. Creates a panel to debug all forms. Export form states to JSON."입니다.

확장 프로그램 스크린샷

screenshot

Form Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}