Simple Performance Bar

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

Simple Performance Bar là gì?

Simple Performance Bar là một tiện ích mở rộng Chrome được phát triển bởi Oliver Tse, và tính năng chính của nó là "Simple site performance bar that presents network, server, client and pageload times".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple Performance Bar

Tải xuống các tệp mở rộng Simple Performance Bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
URL Chính Thức https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Mô tả Simple site performance bar that presents network, server, client and pageload times
Kích Thước Tệp 11.04 KB
Số Lần Cài Đặt 277
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-11-18
Ngày Phát Hành 2014-11-17
Đánh Giá 4.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Oliver Tse
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}