Simple Performance Bar

Simple site performance bar that presents network, server, client and pageload times

Τι είναι το Simple Performance Bar;

Το Simple Performance Bar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Oliver Tse, και η κύρια λειτουργία του είναι "Simple site performance bar that presents network, server, client and pageload times".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Simple Performance Bar

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

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

                        Using the Navigation Timing API, the Simple Performance Bar presents network, server, client and page load times as a group of easy to read bars fixed to the bottom of your browser.  Each time your page loads, the Simple Performance Bar appears.  

Network, server and client time calculations are found in the W3C Navigation Timing Draft ( https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/NavigationTiming/Overview.html ). Network time is connectEnd minus navigationStart.  Server time is responseEnd minus connectEnd.  Finally, client time is loadEventEnd minus responseEnd.                    

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

Όνομα Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
Επίσημο URL https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Περιγραφή Simple site performance bar that presents network, server, client and pageload times
Μέγεθος Αρχείου 11.04 KB
Αριθμός Εγκαταστάσεων 277
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2014-11-18
Ημερομηνία Δημοσίευσης 2014-11-17
Αξιολόγηση 4.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Oliver Tse
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Performance Bar",
    "description": "Simple site performance bar that presents network, server, client and pageload times",
    "version": "1.0",
    "icons": {
        "128": "simplePerfBar128x128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "simplePerfBar.css"
            ],
            "js": [
                "simplePerfBar.js"
            ]
        }
    ]
}