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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } ] } |