Simple Performance Bar

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

What is Simple Performance Bar?

Simple Performance Bar is a Chrome extension developed by Oliver Tse, and its main feature is "Simple site performance bar that presents network, server, client and pageload times".

Extension Screenshots

screenshot
screenshot
screenshot

Download Simple Performance Bar Extension CRX File

Download Simple Performance Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
Official URL https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Description Simple site performance bar that presents network, server, client and pageload times
File Size 11.04 KB
Installation Count 277
Current Version 1.0
Last Updated 2014-11-18
Publish Date 2014-11-17
Rating 4.67/5 Total 6 Ratings
Developer Oliver Tse
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}