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
Eメール [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'"
}