Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Was ist Redux custom dev tool?

Redux custom dev tool ist eine Chrome-Erweiterung, die von lorenzo.colarieti entwickelt wurde, und ihr Hauptmerkmal ist "Redux custom tool allow you to see all the dispatched actions".

Erweiterungsscreenshots

screenshot

Redux custom dev tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redux custom dev tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Tracking the actions of Redux. Fast and reliable                    

Grundlegende Informationen zur Erweiterung

Name Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Offizielle URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Beschreibung Redux custom tool allow you to see all the dispatched actions
Dateigröße 1.16 MB
Installationsanzahl 141
Aktuelle Version 0.0.1
Letztes Update 2022-03-30
Veröffentlichungsdatum 2022-03-29
Entwickler lorenzo.colarieti
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}