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”。
擴展截圖
下載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 |
ID | gkicgocakpcjjdeigifekmfmpcpepakk |
官方網址 | 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" ] } ] } |