Angular BatScanner
Angular 2 BatScanner extension
ما هو Angular BatScanner؟
Angular BatScanner هو إضافة Chrome تم تطويرها بواسطة douglasduteil، والميزة الرئيسية لها هي "Angular 2 BatScanner extension".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Angular BatScanner
قم بتنزيل ملفات الامتداد Angular BatScanner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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:\/\/*\/*" ] } |