Core Web Vitals

This extension measures Google Core Web Vital Scores

Что такое Core Web Vitals?

Core Web Vitals - это расширение Chrome, разработанное Arun Surendran, и его основная функция - "This extension measures Google Core Web Vital Scores".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Core Web Vitals

Скачайте файлы расширений Core Web Vitals в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The extension basically measures the Google Core Web Vitals. It will highlight the Cumulative Layout Shifts in the page and as well as the Largest Content in the page, which helps the developers to understand the HTML elements that contribute to the scores. More over in the developer console, it also log the HTML elements that made a layout shift. This will make the developers easily identify the HTML elements to fix.                    

Основная информация о расширении

Название Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
Официальный URL https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Описание This extension measures Google Core Web Vital Scores
Размер файла 7.29 KB
Количество установок 10,485
Текущая Версия 0.1
Последнее Обновление 2020-11-02
Дата публикации 2020-11-01
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Arun Surendran
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://www.linkedin.com/in/arun-surendran/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Core Web Vitals",
    "version": "0.1",
    "description": "This extension measures Google Core Web Vital Scores",
    "author": "Arun Surendran",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    }
}