Core Web Vitals

This extension measures Google Core Web Vital Scores

Co je Core Web Vitals?

Core Web Vitals je rozšíření Chrome vyvinuté Arun Surendran, a jeho hlavní funkcí je „This extension measures Google Core Web Vital Scores“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Core Web Vitals

Stáhněte si soubory rozšíření Core Web Vitals ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
Oficiální URL https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Popis This extension measures Google Core Web Vital Scores
Velikost souboru 7.29 KB
Počet instalací 10,485
Aktuální Verze 0.1
Poslední Aktualizace 2020-11-02
Datum Vydání 2020-11-01
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář Arun Surendran
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://www.linkedin.com/in/arun-surendran/
Podporované Jazyky 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"
    }
}