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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "First paint time, page load time, to optimize your webpages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में First Paint & Page Load Time एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}