Angular Component Overview
Update 2.3: * Improved component name positioning when multiple components occupy the same space, so labels do not overlap. *…
Angular Component Overview란 무엇입니까?
Angular Component Overview은(는) angular.outliner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Update 2.3: * Improved component name positioning when multiple components occupy the same space, so labels do not overlap. *…"입니다.
확장 프로그램 스크린샷
Angular Component Overview 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Update 2.3: * Improved component name positioning when multiple components occupy the same space, so labels do not overlap. * Improved UX when scrolling - components are redrawn. ___ This browser extension allows you to easily visualize the component tree of your Angular application, making it simple to understand the structure and relationships of your components. With just one click, you can activate the extension and see a clear representation of your application's components in a sidebar. When it comes to code review, Angular Outliner can also be a powerful tool. It allows developers to quickly understand the component hierarchy of the new code increment. This makes code reviews more efficient and effective, saving you time and effort. ____ Chrome extension that helps to visualise application components by drawing a frame around them. You can choose between component namespaces defined by prefixes (e.g. `app` - application components, `mat` - material components, etc.) or specific components. There are a few options to choose from: class name or selector and label position. It is possible to filter by component name. A number in brackets after the component name indicates the number of instances of the given component.
확장 프로그램 기본 정보
이름 | Angular Component Overview |
ID | ffaclkhkellkeknodafdgeaapdniahhh |
공식 URL | https://chromewebstore.google.com/detail/angular-component-overvie/ffaclkhkellkeknodafdgeaapdniahhh |
설명 | Update 2.3: * Improved component name positioning when multiple components occupy the same space, so labels do not overlap. *… |
파일 크기 | 13.14 KB |
설치 횟수 | 642 |
현재 버전 | 2.3 |
최근 업데이트 | 2023-11-26 |
출시 날짜 | 2020-11-28 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | angular.outliner |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/felikf/angular-outliner |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Angular Component Overview", "version": "2.3", "content_scripts": [ { "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ], "js": [ "js\/content.js" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "js\/tracer.js" ], "matches": [ "http:\/\/localhost\/*", "https:\/\/localhost\/*" ] } ], "permissions": [ "storage" ] } |