Angular BatScanner

Angular 2 BatScanner extension

什麼是Angular BatScanner?

Angular BatScanner是由douglasduteil開發的Chrome擴展程式,該擴展的主要功能是“Angular 2 BatScanner extension”。

擴展截圖

screenshot
screenshot

下載Angular BatScanner擴展crx文件

下載Angular BatScanner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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:\/\/*\/*"
    ]
}