Simple Performance Bar

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

¿Qué es Simple Performance Bar?

Simple Performance Bar es una extensión de Chrome desarrollada por Oliver Tse, y su función principal es "Simple site performance bar that presents network, server, client and pageload times".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Simple Performance Bar

Descarga archivos de extensión Simple Performance Bar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
URL Oficial https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Descripción Simple site performance bar that presents network, server, client and pageload times
Tamaño del Archivo 11.04 KB
Cantidad de Instalaciones 277
Versión Actual 1.0
Última Actualización 2014-11-18
Fecha de Publicación 2014-11-17
Calificación 4.67/5 Total de 6 Calificaciones
Desarrollador Oliver Tse
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}