Performance inspector
This extension allow user to inspect performance of current page easily
Performance inspector란 무엇입니까?
Performance inspector은(는) ianli-承风에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allow user to inspect performance of current page easily"입니다.
확장 프로그램 스크린샷
Performance inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Performance extension to show window.performance of current page. 显示当前页面的window.performance拉取的内容 update: 09/11/2015 1. Fix bug of : Chrome added function "toJSON" in result of window.performance.getEntries() update: 07/11/2015 1. Fix bug of : Chrome changed the type of timing to PerformanceTiming, resource to PerformanceResourceTiming. Not able to use JSON.stringify to parse them to String. update: 11/21/2014 1. fix bug of get short name of entries 2. update layout for help doc update: 11/09/2014 1. fix bug of no response for tab nav 2. fix bug for not able to back to develop tools when click link
확장 프로그램 기본 정보
이름 | |
ID | bgomfgoppmhcminmdojjeejheppadagh |
공식 URL | https://chrome.google.com/webstore/detail/performance-inspector/bgomfgoppmhcminmdojjeejheppadagh |
설명 | This extension allow user to inspect performance of current page easily |
파일 크기 | 115 KB |
설치 횟수 | 263 |
현재 버전 | 0.5 |
최근 업데이트 | 2015-09-11 |
출시 날짜 | 2015-09-11 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | ianli-承风 |
결제 유형 | free |
도움말 페이지 URL | https://github.com/ianli-sc/performanceInspector |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Performance inspector", "description": "This extension allow user to inspect performance of current page easily", "version": "0.5", "content_security_policy": "default-src 'self' chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;", "devtools_page": "performance.html", "web_accessible_resources": [ "*" ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webNavigation", "history" ] } |