atomic dev tool

A Chrome extension that helps debug atomic state management.

What is atomic dev tool?

atomic dev tool is a Chrome extension developed by kaizenatomic, and its main feature is "A Chrome extension that helps debug atomic state management.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download atomic dev tool Extension CRX File

Download atomic dev tool 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

                        Atomic is an open source Google Chrome developer tool designed for  applications built using Jotai as a  state management library. Atomic developer tool provides real-time snapshots of a Jotai application's atomic state and component structure allowing developers to visually inspect their application state and a readily to determine development solutions.

Key features of Atomic devtool include:

- Display state changes between snapshots
- Display component tree structure
- Dynamically rendering graphic component visualization with state changes
- Atom network data visualization for both atom dependents and atom read dependencies                    

Extension Basic Information

Name atomic dev tool atomic dev tool
ID nnchkolpjdpkpbolophmdkglenapodbo
Official URL https://chromewebstore.google.com/detail/atomic-dev-tool/nnchkolpjdpkpbolophmdkglenapodbo
Description A Chrome extension that helps debug atomic state management.
File Size 1.13 MB
Installation Count 209
Current Version 1.0.0
Last Updated 2021-04-22
Publish Date 2021-04-22
Rating 3.67/5 Total 3 Ratings
Developer kaizenatomic
Email [email protected]
Payment Type free
Extension Website https://www.atomictool.dev/
Help Page URL https://www.npmjs.com/package/atomic-devtools
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "atomic dev tool",
    "version": "1.0.0",
    "devtools_page": "devtools.html",
    "description": "A Chrome extension that helps debug atomic state management.",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
    "web_accessible_resources": [
        "bundles\/backend.bundle.js"
    ],
    "background": {
        "scripts": [
            "bundles\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bundles\/content.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}