Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Hvad er Redux custom dev tool?

Redux custom dev tool er en Chrome-udvidelse udviklet af lorenzo.colarieti, og dens hovedfunktion er "Redux custom tool allow you to see all the dispatched actions".

Udvidelsesskærmbilleder

screenshot

Download Redux custom dev tool-udvidelses-CRX-fil

Download Redux custom dev tool-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Tracking the actions of Redux. Fast and reliable                    

Grundlæggende oplysninger om udvidelsen

Navn Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Officiel URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Beskrivelse Redux custom tool allow you to see all the dispatched actions
Filstørrelse 1.16 MB
Antal Installationer 141
Nuværende Version 0.0.1
Senest Opdateret 2022-03-30
Udgivelsesdato 2022-03-29
Udvikler lorenzo.colarieti
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}