Xstate vizualize addon

An addon for xstate.js.org/viz which allows writing state machine in simpler language

Vad är Xstate vizualize addon?

Xstate vizualize addon är en Chrome-tillägg utvecklad av mukeshsoni, och dess huvudfunktion är "An addon for xstate.js.org/viz which allows writing state machine in simpler language".

Tilläggsskärmbilder

screenshot

Ladda ner Xstate vizualize addon-förlängningens CRX-fil

Ladda ner Xstate vizualize addon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension allows xstate visualzier users to write their statecharts in simpler indent based text language and converts it to the json format which xstate understands                    

Grundläggande Information om Tillägg

Namn Xstate vizualize addon Xstate vizualize addon
ID ahnfhdihbohipfombdpbgiaddecckafc
Officiell webbadress https://chromewebstore.google.com/detail/xstate-vizualize-addon/ahnfhdihbohipfombdpbgiaddecckafc
Beskrivning An addon for xstate.js.org/viz which allows writing state machine in simpler language
Filstorlek 1.23 MB
Antal Installationer 238
Aktuell Version 0.0.1
Senast Uppdaterad 2020-05-15
Publiceringsdatum 2020-05-15
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare mukeshsoni
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mukeshsoni/xstate-viz-chrome-extension
Hjälpsida URL https://github.com/mukeshsoni/xstate-viz-chrome-extension
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Xstate vizualize addon",
    "version": "0.0.1",
    "description": "An addon for xstate.js.org\/viz which allows writing state machine in simpler language",
    "page_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/xstate.js.org\/viz\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "dist\/*"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    }
}