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
Eメール [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"
    }
}