MobX Developer Tools
Dev-tools for MobX and React
MobX Developer Tools란 무엇입니까?
MobX Developer Tools은(는) Andy Kogut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dev-tools for MobX and React"입니다.
확장 프로그램 스크린샷
MobX Developer Tools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Inspect mobx-react observers. Edit values in observable objects (Doesn't support editing react props/state, use react-devtools for that) Track changes in MobX observables MST support
확장 프로그램 기본 정보
이름 | MobX Developer Tools |
ID | pfgnfdagidkfgccljigdamigbcnndkod |
공식 URL | https://chromewebstore.google.com/detail/mobx-developer-tools/pfgnfdagidkfgccljigdamigbcnndkod |
설명 | Dev-tools for MobX and React |
파일 크기 | 875 KB |
설치 횟수 | 32,265 |
현재 버전 | 0.9.26 |
최근 업데이트 | 2020-10-30 |
출시 날짜 | 2020-04-24 |
평점 | 3.37/5 총 49 개의 평점 |
개발자 | Andy Kogut |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/andykog/mobx-devtools |
도움말 페이지 URL | https://github.com/andykog/mobx-devtools/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MobX Developer Tools", "description": "Dev-tools for MobX and React", "minimum_chrome_version": "44", "icons": { "16": "icons\/Icon-16.png", "48": "icons\/Icon-48.png", "128": "icons\/Icon-128.png" }, "devtools_page": "panel-loader.html", "commands": { "open-devtools-window": { "suggested_key": { "default": "Alt+M" }, "description": "DevTools window to left" } }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "main.html", "panel.html", "backend.js" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "contextMenus", "storage", "file:\/\/\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": { "16": "icons\/toolbar-chrome.png", "32": "icons\/[email protected]" }, "default_title": "Open" }, "content_scripts": [ { "matches": [ " |