First Paint & Page Load Time

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

Apa itu First Paint & Page Load Time?

First Paint & Page Load Time adalah ekstensi Chrome yang dikembangkan oleh https://vijaysutrave.com, dan fitur utamanya adalah "First paint time, page load time, to optimize your webpages".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi First Paint & Page Load Time

Unduh file ekstensi First Paint & Page Load Time dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama First Paint & Page Load Time First Paint & Page Load Time
ID bjkmldgdbbehjahimccnckggoofdommo
URL Resmi https://chromewebstore.google.com/detail/first-paint-page-load-tim/bjkmldgdbbehjahimccnckggoofdommo
Deskripsi First paint time, page load time, to optimize your webpages
Ukuran File 51.18 KB
Jumlah Instalasi 4,259
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2017-11-18
Tanggal Publikasi 2017-11-17
Penilaian 4.50/5 Total 14 Penilaian
Pengembang https://vijaysutrave.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/vijaysutrave/chrome-first-paint
URL Halaman Bantuan https://github.com/vijaysutrave/chrome-first-paint
Bahasa yang Didukung 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"
        }
    ]
}