Core Web Vitals

This extension measures Google Core Web Vital Scores

Was ist Core Web Vitals?

Core Web Vitals ist eine Chrome-Erweiterung, die von Arun Surendran entwickelt wurde, und ihr Hauptmerkmal ist "This extension measures Google Core Web Vital Scores".

Erweiterungsscreenshots

screenshot
screenshot

Core Web Vitals-Erweiterungs-CRX-Datei herunterladen

Laden Sie Core Web Vitals-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
Offizielle URL https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Beschreibung This extension measures Google Core Web Vital Scores
Dateigröße 7.29 KB
Installationsanzahl 10,485
Aktuelle Version 0.1
Letztes Update 2020-11-02
Veröffentlichungsdatum 2020-11-01
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Arun Surendran
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://www.linkedin.com/in/arun-surendran/
Unterstützte Sprachen 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"
    }
}