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
官方網址 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"
    }
}