Angular BatScanner

Angular 2 BatScanner extension

What is Angular BatScanner?

Angular BatScanner is a Chrome extension developed by douglasduteil, and its main feature is "Angular 2 BatScanner extension".

Extension Screenshots

screenshot
screenshot

Download Angular BatScanner Extension CRX File

Download Angular BatScanner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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...                    

Extension Basic Information

Name Angular BatScanner Angular BatScanner
ID gcngciildkejiapchdgpcniflijoiadf
Official URL https://chromewebstore.google.com/detail/angular-batscanner/gcngciildkejiapchdgpcniflijoiadf
Description Angular 2 BatScanner extension
File Size 513 KB
Installation Count 1,000
Current Version 1.0.0.1
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 3.33/5 Total 9 Ratings
Developer douglasduteil
Payment Type free
Extension Website https://github.com/douglasduteil/angular-batscanner
Supported Languages 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:\/\/*\/*"
    ]
}