Core Web Vitals

This extension measures Google Core Web Vital Scores

Co to jest Core Web Vitals?

Core Web Vitals to rozszerzenie Chrome opracowane przez Arun Surendran, a jego główną funkcją jest „This extension measures Google Core Web Vital Scores”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Core Web Vitals

Pobierz pliki rozszerzeń Core Web Vitals w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
Oficjalny URL https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Opis This extension measures Google Core Web Vital Scores
Rozmiar pliku 7.29 KB
Liczba instalacji 10,485
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-11-02
Data Publikacji 2020-11-01
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Arun Surendran
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://www.linkedin.com/in/arun-surendran/
Obsługiwane Języki 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"
    }
}