Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

什么是Redux custom dev tool?

Redux custom dev tool是由lorenzo.colarieti开发的Chrome扩展程序,该扩展的主要功能是“Redux custom tool allow you to see all the dispatched actions”。

扩展截图

screenshot

下载Redux custom dev tool扩展crx文件

下载Redux custom dev tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Tracking the actions of Redux. Fast and reliable                    

扩展基本信息

名称 Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
官方URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
简介 Redux custom tool allow you to see all the dispatched actions
文件大小 1.16 MB
安装次数 141
当前版本 0.0.1
更新时间 2022-03-30
上架时间 2022-03-29
开发者 lorenzo.colarieti
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}