XState Ninja

A powerful devtool for XState state machines

XState Ninja란 무엇입니까?

XState Ninja은(는) rlaffers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A powerful devtool for XState state machines"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

XState Ninja 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        XState Ninja is a devtool panel for tracking state machines implemented with the XState library. It provides a better developer experience than the widely used Redux devtools extension for  monitoring state machines. XState Ninja is more ergonomic and removes common pain points experienced with Redux devtools:

👉 more than one machine can be tracked at once in multiple swimlanes
👉 machine state is clearly visible (including parallel states)
👉 no events are missed regardless of when the devtool was opened
👉 side effects (invoked services and actions) are clearly visible
👉 all invoked or spawned actors are monitored, including invoked/spawned callbacks and promises
👉 dead actors are clearly marked (💀) so there is no confusion if multiple machines of the same ID are started                    

확장 프로그램 기본 정보

이름 XState Ninja XState Ninja
ID cogeldipmkjdfjgjkghlmhehejpmcfif
공식 URL https://chromewebstore.google.com/detail/xstate-ninja/cogeldipmkjdfjgjkghlmhehejpmcfif
설명 A powerful devtool for XState state machines
파일 크기 224 KB
설치 횟수 391
현재 버전 1.7.2
최근 업데이트 2023-10-21
출시 날짜 2022-09-19
평점 4.00/5 총 1 개의 평점
개발자 rlaffers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rlaffers/xstate-ninja
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "XState Ninja",
    "author": "Richard Laffers",
    "description": "A powerful devtool for XState state machines",
    "version": "1.7.2",
    "manifest_version": 3,
    "homepage_url": "https:\/\/github.com\/rlaffers\/xstate-ninja",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "devtools_page": "devtools\/devtools.html",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16x16.png",
        "32": "assets\/icon_32x32.png",
        "48": "assets\/icon_48x48.png",
        "128": "assets\/icon_128x128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject\/xstate_ninja.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "inject\/content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}