Angular BatScanner

Angular 2 BatScanner extension

Wat is Angular BatScanner?

Angular BatScanner is een Chrome-extensie ontwikkeld door douglasduteil, en de belangrijkste functie is "Angular 2 BatScanner extension".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Angular BatScanner

Download Angular BatScanner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Angular BatScanner Angular BatScanner
ID gcngciildkejiapchdgpcniflijoiadf
Officiële URL https://chromewebstore.google.com/detail/angular-batscanner/gcngciildkejiapchdgpcniflijoiadf
Beschrijving Angular 2 BatScanner extension
Bestandsgrootte 513 KB
Aantal Installaties 1,000
Huidige Versie 1.0.0.1
Laatst Bijgewerkt 2019-03-08
Publicatiedatum 2019-03-08
Beoordeling 3.33/5 Totaal 9 Beoordelingen
Ontwikkelaar douglasduteil
Betalingswijze free
Extensiewebsite https://github.com/douglasduteil/angular-batscanner
Ondersteunde Talen 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:\/\/*\/*"
    ]
}