atomic dev tool

A Chrome extension that helps debug atomic state management.

Cos'è atomic dev tool?

atomic dev tool è un'estensione di Chrome sviluppata da kaizenatomic, e la sua funzione principale è "A Chrome extension that helps debug atomic state management.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione atomic dev tool

Scarica i file di estensione atomic dev tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome atomic dev tool atomic dev tool
ID nnchkolpjdpkpbolophmdkglenapodbo
URL Ufficiale https://chromewebstore.google.com/detail/atomic-dev-tool/nnchkolpjdpkpbolophmdkglenapodbo
Descrizione A Chrome extension that helps debug atomic state management.
Dimensione del File 1.13 MB
Conteggio Installazioni 209
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-04-22
Data di Pubblicazione 2021-04-22
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore kaizenatomic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.atomictool.dev/
URL della Pagina di Aiuto https://www.npmjs.com/package/atomic-devtools
Lingue Supportate 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
        }
    ]
}