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"
        }
    ]
}