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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}