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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}