Angular BatScanner

Angular 2 BatScanner extension

Angular BatScanner란 무엇입니까?

Angular BatScanner은(는) douglasduteil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Angular 2 BatScanner extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Angular BatScanner 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Yet another Angular 2 devtool, Angular BatScanner is focus on performance analysis. Like debugging the performance bottleneck is hard. I made a tool to visualize what is happening for Angular when your application is running. It's similar to Timeline Tool but using the Angular Component vocabulary. By hooking into the components life cycle system we can quickly explore a record to answer :
- when, where and why a change happened 
- how often it's changed
- how much time a components took to react to it
- etc...                    

확장 프로그램 기본 정보

이름 Angular BatScanner Angular BatScanner
ID gcngciildkejiapchdgpcniflijoiadf
공식 URL https://chromewebstore.google.com/detail/angular-batscanner/gcngciildkejiapchdgpcniflijoiadf
설명 Angular 2 BatScanner extension
파일 크기 513 KB
설치 횟수 1,000
현재 버전 1.0.0.1
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 3.33/5 총 9 개의 평점
개발자 douglasduteil
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/douglasduteil/angular-batscanner
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Angular BatScanner",
    "description": "Angular 2 BatScanner extension",
    "version": "1.0.0.1",
    "minimum_chrome_version": "43",
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "devtools_page": "lib\/main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "lib\/main.html",
        "lib\/panel.html"
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}