Angular Profiler

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

Co to jest Angular Profiler?

Angular Profiler to rozszerzenie Chrome opracowane przez Andrew Yang, a jego główną funkcją jest „Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Angular Profiler

Pobierz pliki rozszerzeń Angular Profiler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Angular Profiler for Ivy, debugging and visualisation tools                    

Podstawowe informacje o rozszerzeniu

Nazwa Angular Profiler Angular Profiler
ID ikkobdhhnnllhcmjaealbihjkahnegia
Oficjalny URL https://chromewebstore.google.com/detail/angular-profiler/ikkobdhhnnllhcmjaealbihjkahnegia
Opis Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.
Rozmiar pliku 7.14 MB
Liczba instalacji 641
Aktualna Wersja 0.2.4
Ostatnia Aktualizacja 2020-06-19
Data Publikacji 2020-06-18
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Andrew Yang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ddvkid/ng-profiler
Obsługiwane Języki 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'"
}