Simple Performance Bar

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

Was ist Simple Performance Bar?

Simple Performance Bar ist eine Chrome-Erweiterung, die von Oliver Tse entwickelt wurde, und ihr Hauptmerkmal ist "Simple site performance bar that presents network, server, client and pageload times".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Simple Performance Bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Simple Performance Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
Offizielle URL https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Beschreibung Simple site performance bar that presents network, server, client and pageload times
Dateigröße 11.04 KB
Installationsanzahl 277
Aktuelle Version 1.0
Letztes Update 2014-11-18
Veröffentlichungsdatum 2014-11-17
Bewertung 4.67/5 Insgesamt 6 Bewertungen
Entwickler Oliver Tse
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}