Angular DevTools
Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities.
Angular DevTools란 무엇입니까?
Angular DevTools은(는) Angular에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities."입니다.
확장 프로그램 스크린샷
Angular DevTools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can use Angular DevTools to understand the structure of your application and preview the state of the directive and the component instances. To get insights into the execution of the application, you can use the profiler tab, which shows you the individual change detection cycles, what triggered them, and how much time Angular spent in them. You can also inspect and visualize your application's dependency injection tree to better how understand how and why any token was resolved to a specific service.
확장 프로그램 기본 정보
이름 | Angular DevTools |
ID | ienfalfjdbdpebioblfackkekamfmbnh |
공식 URL | https://chromewebstore.google.com/detail/angular-devtools/ienfalfjdbdpebioblfackkekamfmbnh |
설명 | Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities. |
파일 크기 | 3.2 MB |
설치 횟수 | 356,469 |
현재 버전 | 1.0.11 |
최근 업데이트 | 2024-02-27 |
출시 날짜 | 2021-05-13 |
평점 | 4.01/5 총 142 개의 평점 |
개발자 | Angular |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://angular.dev/tools/devtools/ |
도움말 페이지 URL | https://github.com/angular/angular/issues/ |
개인정보 보호 정책 페이지 URL | http://go/protoshop-chrome-extension |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "short_name": "Angular DevTools", "name": "Angular DevTools", "description": "Angular DevTools extends Chrome DevTools adding Angular specific debugging and profiling capabilities.", "version": "1.0.11", "version_name": "1.0.11", "minimum_chrome_version": "102", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_popup": "popups\/not-angular.html", "default_icon": { "16": "assets\/icon-bw16.png", "48": "assets\/icon-bw48.png", "128": "assets\/icon-bw128.png" } }, "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "app\/backend_bundle.js", "app\/detect_angular_for_extension_icon_bundle.js", "devtools.html" ], "matches": [ " |