performance-HTML

This extensions displays some technical and structural performance data of websites.

performance-HTML란 무엇입니까?

performance-HTML은(는) Daniel Lucks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extensions displays some technical and structural performance data of websites."입니다.

확장 프로그램 스크린샷

screenshot

performance-HTML 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension determines and displays some very useful performance data of websites in a quick and easy way. Just open the website you want to inspect, click the icon in the browser bar and a popup shows up.

The popup will show performance data like: DNS Lookup Time, Network Connection Time, Time to First Byte, Document Ready and Document Complete. It also shows some performance information in terms of the DOM, such as number of external files (Javascript, CSS) or number of DOM elements. And finally there is a panel for memory usage of Javascript execution.

This extension will give you the possibility to get a quick overview of the performance of a website and to compare it with other sites.

Feedback is very welcome! If you have some feedback or ideas for additional information to show in the popup, don't hesitate to contact me.                    

확장 프로그램 기본 정보

이름 performance-HTML performance-HTML
ID ogpakokhpomfmndbddggogokkmcjebpl
공식 URL https://chromewebstore.google.com/detail/performance-html/ogpakokhpomfmndbddggogokkmcjebpl
설명 This extensions displays some technical and structural performance data of websites.
파일 크기 19.31 KB
설치 횟수 1,395
현재 버전 0.1.3
최근 업데이트 2013-12-30
출시 날짜 2013-12-30
평점 4.38/5 총 8 개의 평점
개발자 Daniel Lucks
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "performance-HTML",
    "description": "This extensions displays some technical and structural performance data of websites.",
    "version": "0.1.3",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "images\/icon-24.png",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}