Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Apa itu Redux custom dev tool?

Redux custom dev tool adalah ekstensi Chrome yang dikembangkan oleh lorenzo.colarieti, dan fitur utamanya adalah "Redux custom tool allow you to see all the dispatched actions".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Redux custom dev tool

Unduh file ekstensi Redux custom dev tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Tracking the actions of Redux. Fast and reliable                    

Informasi Dasar Ekstensi

Nama Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
URL Resmi https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Deskripsi Redux custom tool allow you to see all the dispatched actions
Ukuran File 1.16 MB
Jumlah Instalasi 141
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2022-03-30
Tanggal Publikasi 2022-03-29
Pengembang lorenzo.colarieti
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}