Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Co to jest Redux custom dev tool?

Redux custom dev tool to rozszerzenie Chrome opracowane przez lorenzo.colarieti, a jego główną funkcją jest „Redux custom tool allow you to see all the dispatched actions”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Redux custom dev tool

Pobierz pliki rozszerzeń Redux custom dev tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Tracking the actions of Redux. Fast and reliable                    

Podstawowe informacje o rozszerzeniu

Nazwa Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Oficjalny URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Opis Redux custom tool allow you to see all the dispatched actions
Rozmiar pliku 1.16 MB
Liczba instalacji 141
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2022-03-30
Data Publikacji 2022-03-29
Deweloper lorenzo.colarieti
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}