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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrew Yang, και η κύρια λειτουργία του είναι "Angular Profiler is a developer tool to power-up Angular development workflow by providing a series of debugging tools.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Angular Profiler

Λήψη αρχείων επέκτασης 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'"
}