Formily DevTools

Formily DevTools for debugging application's state changes.

What is Formily DevTools?

Formily DevTools is a Chrome extension developed by janrykk, and its main feature is "Formily DevTools for debugging application's state changes.".

Extension Screenshots

screenshot

Download Formily DevTools Extension CRX File

Download Formily DevTools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Formily DevTools Formily DevTools
ID kkocalmbfnplecdmbadaapgapdioecfm
Official URL https://chromewebstore.google.com/detail/formily-devtools/kkocalmbfnplecdmbadaapgapdioecfm
Description Formily DevTools for debugging application's state changes.
File Size 2.43 MB
Installation Count 5,000
Current Version 0.1.13
Last Updated 2021-01-31
Publish Date 2020-04-03
Rating 5.00/5 Total 4 Ratings
Developer janrykk
Email [email protected]
Payment Type free
Extension Website https://formilyjs.org
Help Page URL https://formilyjs.org
Supported Languages 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"
}