Formily DevTools

Formily DevTools for debugging application's state changes.

Formily DevTools란 무엇입니까?

Formily DevTools은(는) janrykk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Formily DevTools for debugging application's state changes."입니다.

확장 프로그램 스크린샷

screenshot

Formily DevTools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Formily开发者工具,可以查看表单的节点树结构,方便调试,排查错误                    

확장 프로그램 기본 정보

이름 Formily DevTools Formily DevTools
ID kkocalmbfnplecdmbadaapgapdioecfm
공식 URL https://chromewebstore.google.com/detail/formily-devtools/kkocalmbfnplecdmbadaapgapdioecfm
설명 Formily DevTools for debugging application's state changes.
파일 크기 2.43 MB
설치 횟수 5,000
현재 버전 0.1.13
최근 업데이트 2021-01-31
출시 날짜 2020-04-03
평점 5.00/5 총 4 개의 평점
개발자 janrykk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://formilyjs.org
도움말 페이지 URL https://formilyjs.org
지원되는 언어 zh-CN
manifest.json
{
    "version": "0.1.13",
    "name": "Formily DevTools",
    "short_name": "Formily DevTools",
    "description": "Formily DevTools for debugging application's state changes.",
    "homepage_url": "https:\/\/github.com\/alibaba\/formily",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "img\/logo\/scalable.png",
        "default_title": "Formily DevTools",
        "default_popup": "popup.html"
    },
    "commands": {
        "devtools-left": {
            "description": "DevTools window to left"
        },
        "devtools-right": {
            "description": "DevTools window to right"
        },
        "devtools-bottom": {
            "description": "DevTools window to bottom"
        },
        "devtools-remote": {
            "description": "Remote DevTools"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "icons": {
        "16": "img\/logo\/16x16.png",
        "48": "img\/logo\/48x48.png",
        "128": "img\/logo\/128x128.png"
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "js\/content.bundle.js",
                "js\/inject.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "js\/backend.bundle.js"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}