First Paint & Page Load Time

First paint time, page load time, to optimize your webpages

First Paint & Page Load Time란 무엇입니까?

First Paint & Page Load Time은(는) https://vijaysutrave.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "First paint time, page load time, to optimize your webpages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

First Paint & Page Load Time 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Displays the First Paint time in the browser menu. 

Now you can see page stats like the top ten time consuming requests on the page, the distribution of resources on the page, and other stats like memory, etc, illustrated with pretty looking graphs. 

Source Code available at : 
https://github.com/vijaysutrave/chrome-first-paint

This can give you insights in reducing your load times and optimising for quicker render times. 

This extension uses the Resource Timing API and the Performance API in the browser.                    

확장 프로그램 기본 정보

이름 First Paint & Page Load Time First Paint & Page Load Time
ID bjkmldgdbbehjahimccnckggoofdommo
공식 URL https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo
설명 First paint time, page load time, to optimize your webpages
파일 크기 51.18 KB
설치 횟수 4,259
현재 버전 1.0.3
최근 업데이트 2017-11-18
출시 날짜 2017-11-17
평점 4.50/5 총 14 개의 평점
개발자 https://vijaysutrave.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/vijaysutrave/chrome-first-paint
도움말 페이지 URL https://github.com/vijaysutrave/chrome-first-paint
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "First Paint & Page Load Time",
    "short_name": "First Paint Time",
    "version": "1.0.3",
    "description": "First paint time, page load time, to optimize your webpages",
    "browser_action": {
        "default_icon": "icons\/timer48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/timer16.png",
        "48": "icons\/timer48.png",
        "128": "icons\/timer128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "domTimes.js"
            ],
            "run_at": "document_start"
        }
    ]
}