Angular Profiler

Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.

什么是Angular Profiler?

Angular Profiler是由Andrew Yang开发的Chrome扩展程序,该扩展的主要功能是“Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.”。

扩展截图

screenshot

下载Angular Profiler扩展crx文件

下载Angular Profiler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Angular Profiler for Ivy, debugging and visualisation tools                    

扩展基本信息

名称 Angular Profiler Angular Profiler
ID ikkobdhhnnllhcmjaealbihjkahnegia
官方URL https://chromewebstore.google.com/detail/angular-profiler/ikkobdhhnnllhcmjaealbihjkahnegia
简介 Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.
文件大小 7.14 MB
安装次数 641
当前版本 0.2.4
更新时间 2020-06-19
上架时间 2020-06-18
评分 3.00/5 共2次评分
开发者 Andrew Yang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ddvkid/ng-profiler
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.2.4",
    "name": "Angular Profiler",
    "short_name": "ng profiler",
    "description": "Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16_disabled.png",
            "48": "images\/icon48_disabled.png",
            "148": "images\/icon148_disabled.png"
        },
        "default_title": "Angular Profiler",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "node_modules\/*",
        "dist\/*",
        "*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}