Perforator - Ember Performance Extension

Ember.js app performance tool. See on page, console, and devtools timeline where performance bottlenecks are. Developed by LinkedIn.

Τι είναι το Perforator - Ember Performance Extension;

Το Perforator - Ember Performance Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Edelman, και η κύρια λειτουργία του είναι "Ember.js app performance tool. See on page, console, and devtools timeline where performance bottlenecks are. Developed by LinkedIn.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Perforator - Ember Performance Extension

Λήψη αρχείων επέκτασης Perforator - Ember Performance Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        NOTE: Your Chrome version must be at least 44 (for ES6 support) and your Ember version must be at least 1.10 (for components).

KNOWN ISSUE: Time tags occasionally won't show up if you load your Ember asynchronously. I'm working on it, but you should be able tp navigate to another route if you'd like to see them.

Perforator will help you determine your Ember.js app's performance bottlenecks. When activated, Perforator will time the rendering time of your Ember components and give you several ways to dig in to investigate individual components.

Main features include:

- In-page overlay of the render time for your components, colorized by relative speed. See at a glance what is taking so long! Hovering the tabs shows the component's classes and ember ID's. Clicking on the tag scootches it a bit :)
- Sortable table of useful rendering stats and information inside your dev tools console.
- A visual hierarchy of components as they are rendered inside the "Timeline" tab in your dev tools (scroll down to the "console" row label inside the "Timeline" tab).

The browser icon and popup provide some useful information as well:

- Icon is colorized when Ember is present on the page, grayscale otherwise.
- When Ember is present, clicking the browser icon pulls up a popup window that will allow you to turn Perforator on and off (for when you aren't doing performance tuning!), *which will refresh the page*
- Popup has a button for you to toggle the visible state of the timer tags on the in-page overlay.

No personal information is required or harvested, and no calls are made to a remote server (check the code!). No reliance on jQuery or any framework other than Ember.

Proudly developed at LinkedIn!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Perforator - Ember Performance Extension Perforator - Ember Performance Extension
ID hfdilejiecmablifdkololalnbbmdcdb
Επίσημο URL https://chromewebstore.google.com/detail/perforator-ember-performa/hfdilejiecmablifdkololalnbbmdcdb
Περιγραφή Ember.js app performance tool. See on page, console, and devtools timeline where performance bottlenecks are. Developed by LinkedIn.
Μέγεθος Αρχείου 1.03 MB
Αριθμός Εγκαταστάσεων 268
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2015-10-27
Ημερομηνία Δημοσίευσης 2015-10-27
Αξιολόγηση 4.14/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Edelman
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Perforator - Ember Performance Extension",
    "short_name": "Perforator",
    "description": "Ember.js app performance tool. See on page, console, and devtools timeline where performance bottlenecks are. Developed by LinkedIn.",
    "author": "Programming by Jason Edelman and Garris Shipon. Icon design by Maria Iu.",
    "version": "0.0.4",
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "img\/icon16x16.png",
        "19": "img\/icon19x19.png",
        "28": "img\/icon28x28.png",
        "38": "img\/icon38x38.png",
        "48": "img\/icon48x48.png",
        "64": "img\/icon64x64.png",
        "128": "img\/icon128x128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "js\/perforator.js",
        "js\/in-page-script.js",
        "css\/in-page-styles.css"
    ],
    "browser_action": {
        "default_icon": "img\/icon19x19.png",
        "default_popup": "popup.html",
        "default_title": "Ember Performance Extension"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}