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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://vijaysutrave.com, και η κύρια λειτουργία του είναι "First paint time, page load time, to optimize your webpages".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης First Paint & Page Load Time

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
        }
    ]
}