Core Web Vitals

This extension measures Google Core Web Vital Scores

O que é Core Web Vitals?

Core Web Vitals é uma extensão do Chrome desenvolvida por Arun Surendran, e sua principal característica é "This extension measures Google Core Web Vital Scores".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Core Web Vitals

Baixe arquivos de extensão Core Web Vitals no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
URL Oficial https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Descrição This extension measures Google Core Web Vital Scores
Tamanho do Arquivo 7.29 KB
Contagem de Instalações 10,485
Versão Atual 0.1
Última Atualização 2020-11-02
Data de Publicação 2020-11-01
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor Arun Surendran
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.linkedin.com/in/arun-surendran/
Idiomas Suportados 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"
    }
}