Examin
A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications
Examin란 무엇입니까?
Examin은(는) examindev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications"입니다.
확장 프로그램 스크린샷
Examin 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Examin is a Chrome extension that generates React unit tests for your application. Ensure your application renders as expected before adding new features. Examin generates the baseline unit tests and allows developers to customize their tests for their application. Compatibility - Requires React v16.8.0 or higher - Functional components + React hooks - Not yet compatible with component libraries or Context API
확장 프로그램 기본 정보
이름 | Examin |
ID | ihhopbmcfgkpjklemfdbhgingabdkcpe |
공식 URL | https://chromewebstore.google.com/detail/examin/ihhopbmcfgkpjklemfdbhgingabdkcpe |
설명 | A Chrome extension developer tool that generators Jest/Enzyme render unit tests for React applications |
파일 크기 | 10.52 MB |
설치 횟수 | 900 |
현재 버전 | 1.0.0.2 |
최근 업데이트 | 2021-05-14 |
출시 날짜 | 2021-05-11 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | examindev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.examin.dev/ |
도움말 페이지 URL | https://www.examin.dev/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Examin", "description": "A Chrome extension developer tool that generators Jest\/Enzyme render unit tests for React applications", "version": "1.0.0.2", "author": "Ty Doan, Kirsten Yoon, Nicholas Brush, Cliff Assuncao", "manifest_version": 2, "background": { "scripts": [ "bundles\/background.bundle.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ], "js": [ "bundles\/content.bundle.js" ] } ], "icons": { "16": "assets\/16.png", "38": "assets\/38.png", "48": "assets\/48.png", "128": "assets\/128.png", "148": "assets\/148.png", "192": "assets\/192.png" }, "web_accessible_resources": [ "bundles\/backend.bundle.js" ], "permissions": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ], "externally_connectable": { "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ] }, "devtools_page": ".\/devtools.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |