Xstate vizualize addon
An addon for xstate.js.org/viz which allows writing state machine in simpler language
What is Xstate vizualize addon?
Xstate vizualize addon is a Chrome extension developed by mukeshsoni, and its main feature is "An addon for xstate.js.org/viz which allows writing state machine in simpler language".
Extension Screenshots
Download Xstate vizualize addon Extension CRX File
Download Xstate vizualize addon 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
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
Extension Basic Information
Name | Xstate vizualize addon |
ID | ahnfhdihbohipfombdpbgiaddecckafc |
Official URL | https://chromewebstore.google.com/detail/xstate-vizualize-addon/ahnfhdihbohipfombdpbgiaddecckafc |
Description | An addon for xstate.js.org/viz which allows writing state machine in simpler language |
File Size | 1.23 MB |
Installation Count | 238 |
Current Version | 0.0.1 |
Last Updated | 2020-05-15 |
Publish Date | 2020-05-15 |
Rating | 1.00/5 Total 1 Ratings |
Developer | mukeshsoni |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mukeshsoni/xstate-viz-chrome-extension |
Help Page URL | https://github.com/mukeshsoni/xstate-viz-chrome-extension |
Supported Languages | 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" } } |