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文件

下載First Paint & Page Load Time擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}