XState Ninja

A powerful devtool for XState state machines

XState Ninja क्या है?

XState Ninja rlaffers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A powerful devtool for XState state machines"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में XState Ninja एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}