Simple Performance Bar

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

Simple Performance Barとは何ですか?

Simple Performance BarはOliver Tseによって開発されたChromeの拡張機能で、その主な機能は「Simple site performance bar that presents network, server, client and pageload times」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Simple Performance Bar拡張機能のCRXファイルをダウンロード

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"
            ]
        }
    ]
}