Core Web Vitals

This extension measures Google Core Web Vital Scores

Cos'è Core Web Vitals?

Core Web Vitals è un'estensione di Chrome sviluppata da Arun Surendran, e la sua funzione principale è "This extension measures Google Core Web Vital Scores".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Core Web Vitals

Scarica i file di estensione Core Web Vitals in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
URL Ufficiale https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Descrizione This extension measures Google Core Web Vital Scores
Dimensione del File 7.29 KB
Conteggio Installazioni 10,485
Versione Corrente 0.1
Ultimo Aggiornamento 2020-11-02
Data di Pubblicazione 2020-11-01
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Arun Surendran
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://www.linkedin.com/in/arun-surendran/
Lingue Supportate 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"
    }
}