Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

What is Redux custom dev tool?

Redux custom dev tool is a Chrome extension developed by lorenzo.colarieti, and its main feature is "Redux custom tool allow you to see all the dispatched actions".

Extension Screenshots

screenshot

Download Redux custom dev tool Extension CRX File

Download Redux custom dev tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Tracking the actions of Redux. Fast and reliable                    

Extension Basic Information

Name Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Official URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Description Redux custom tool allow you to see all the dispatched actions
File Size 1.16 MB
Installation Count 141
Current Version 0.0.1
Last Updated 2022-03-30
Publish Date 2022-03-29
Developer lorenzo.colarieti
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}