Core Web Vitals

This extension measures Google Core Web Vital Scores

¿Qué es Core Web Vitals?

Core Web Vitals es una extensión de Chrome desarrollada por Arun Surendran, y su función principal es "This extension measures Google Core Web Vital Scores".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Core Web Vitals

Descarga archivos de extensión Core Web Vitals en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
URL Oficial https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Descripción This extension measures Google Core Web Vital Scores
Tamaño del Archivo 7.29 KB
Cantidad de Instalaciones 10,485
Versión Actual 0.1
Última Actualización 2020-11-02
Fecha de Publicación 2020-11-01
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador Arun Surendran
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://www.linkedin.com/in/arun-surendran/
Idiomas Soportados 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"
    }
}