React Context DevTool
Devtool for React Context and useReducer
React Context DevTool란 무엇입니까?
React Context DevTool은(는) Deep Patel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Devtool for React Context and useReducer"입니다.
확장 프로그램 스크린샷
React Context DevTool 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
React Context DevTool is debugging tool for React Context and useReducer API. You can easily show context values changes in different views like tree, raw and diff view. Now Devtool suppoer useReducer API. easily debug your state changes and dispatch actions from devtool. React Context DevTool is open source project https://github.com/deeppatel234/react-context-devtool
확장 프로그램 기본 정보
이름 | React Context DevTool |
ID | oddhnidmicpefilikhgeagedibnefkcf |
공식 URL | https://chromewebstore.google.com/detail/react-context-devtool/oddhnidmicpefilikhgeagedibnefkcf |
설명 | Devtool for React Context and useReducer |
파일 크기 | 2.36 MB |
설치 횟수 | 48,091 |
현재 버전 | 3.6 |
최근 업데이트 | 2023-12-29 |
출시 날짜 | 2020-07-02 |
평점 | 4.79/5 총 19 개의 평점 |
개발자 | Deep Patel |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "React Context DevTool", "version": "3.6", "description": "Devtool for React Context and useReducer", "manifest_version": 2, "icons": { "16": "assets\/icons\/icon16.png", "32": "assets\/icons\/icon32.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": { "16": "assets\/icons\/icon16-disabled.png", "32": "assets\/icons\/icon32-disabled.png", "48": "assets\/icons\/icon48-disabled.png", "128": "assets\/icons\/icon128-disabled.png" }, "default_popup": "popup\/disabled.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "devtools_page": "devtool\/devtool.html", "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "permissions": [ "storage", "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;", "content_scripts": [ { "matches": [ " |