Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Cos'è Redux custom dev tool?

Redux custom dev tool è un'estensione di Chrome sviluppata da lorenzo.colarieti, e la sua funzione principale è "Redux custom tool allow you to see all the dispatched actions".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Redux custom dev tool

Scarica i file di estensione Redux custom 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

                        Tracking the actions of Redux. Fast and reliable                    

Informazioni di Base sull'Estensione

Nome Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
URL Ufficiale https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Descrizione Redux custom tool allow you to see all the dispatched actions
Dimensione del File 1.16 MB
Conteggio Installazioni 141
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-03-30
Data di Pubblicazione 2022-03-29
Sviluppatore lorenzo.colarieti
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redux custom dev tool",
    "description": "Redux custom tool allow you to see all the dispatched actions",
    "version": "0.0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}