Simple Performance Bar

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

Cos'è Simple Performance Bar?

Simple Performance Bar è un'estensione di Chrome sviluppata da Oliver Tse, e la sua funzione principale è "Simple site performance bar that presents network, server, client and pageload times".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Simple Performance Bar

Scarica i file di estensione Simple Performance Bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
URL Ufficiale https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Descrizione Simple site performance bar that presents network, server, client and pageload times
Dimensione del File 11.04 KB
Conteggio Installazioni 277
Versione Corrente 1.0
Ultimo Aggiornamento 2014-11-18
Data di Pubblicazione 2014-11-17
Valutazione 4.67/5 Totale 6 Valutazioni
Sviluppatore Oliver Tse
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}