Angular BatScanner
Angular 2 BatScanner extension
什么是Angular BatScanner?
Angular BatScanner是由douglasduteil开发的Chrome扩展程序,该扩展的主要功能是“Angular 2 BatScanner extension”。
扩展截图
下载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 |
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:\/\/*\/*" ] } |