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
公式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
Eメール [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"
        }
    ]
}