Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Vad är Redux custom dev tool?

Redux custom dev tool är en Chrome-tillägg utvecklad av lorenzo.colarieti, och dess huvudfunktion är "Redux custom tool allow you to see all the dispatched actions".

Tilläggsskärmbilder

screenshot

Ladda ner Redux custom dev tool-förlängningens CRX-fil

Ladda ner Redux custom dev tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Tracking the actions of Redux. Fast and reliable                    

Grundläggande Information om Tillägg

Namn Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Officiell webbadress https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Beskrivning Redux custom tool allow you to see all the dispatched actions
Filstorlek 1.16 MB
Antal Installationer 141
Aktuell Version 0.0.1
Senast Uppdaterad 2022-03-30
Publiceringsdatum 2022-03-29
Utvecklare lorenzo.colarieti
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}