Redux DevTools - Next

Redux DevTools for debugging application's state changes.

什么是Redux DevTools - Next?

Redux DevTools - Next是由Methuselah96开发的Chrome扩展程序,该扩展的主要功能是“Redux DevTools for debugging application's state changes.”。

扩展截图

screenshot

下载Redux DevTools - Next扩展crx文件

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

扩展使用说明

                        Debug state changes in an application.                    

扩展基本信息

名称 Redux DevTools - Next Redux DevTools - Next
ID oamphgegmigmlgkdnijmeomjenbmkbdg
官方URL https://chromewebstore.google.com/detail/redux-devtools-next/oamphgegmigmlgkdnijmeomjenbmkbdg
简介 Redux DevTools for debugging application's state changes.
文件大小 2.32 MB
安装次数 14,257
当前版本 3.0.3
更新时间 2022-01-11
上架时间 2021-09-13
评分 5.00/5 共1次评分
开发者 Methuselah96
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "version": "3.0.3",
    "name": "Redux DevTools - Next",
    "short_name": "Redux DevTools - Next",
    "description": "Redux DevTools for debugging application's state changes.",
    "homepage_url": "https:\/\/github.com\/reduxjs\/redux-devtools",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "img\/logo\/gray.png",
        "default_title": "Redux DevTools",
        "default_popup": "window.html#popup"
    },
    "commands": {
        "devtools-left": {
            "description": "DevTools window to left"
        },
        "devtools-right": {
            "description": "DevTools window to right"
        },
        "devtools-bottom": {
            "description": "DevTools window to bottom"
        },
        "devtools-remote": {
            "description": "Remote DevTools"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "icons": {
        "16": "img\/logo\/16x16.png",
        "48": "img\/logo\/48x48.png",
        "128": "img\/logo\/128x128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content.bundle.js",
                "pagewrap.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "page.bundle.js"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "permissions": [
        "notifications",
        "contextMenus",
        "storage",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}