Core Web Vitals

This extension measures Google Core Web Vital Scores

Apa itu Core Web Vitals?

Core Web Vitals adalah ekstensi Chrome yang dikembangkan oleh Arun Surendran, dan fitur utamanya adalah "This extension measures Google Core Web Vital Scores".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Core Web Vitals

Unduh file ekstensi Core Web Vitals dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
URL Resmi https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Deskripsi This extension measures Google Core Web Vital Scores
Ukuran File 7.29 KB
Jumlah Instalasi 10,485
Versi Saat Ini 0.1
Terakhir Diperbarui 2020-11-02
Tanggal Publikasi 2020-11-01
Penilaian 5.00/5 Total 5 Penilaian
Pengembang Arun Surendran
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://www.linkedin.com/in/arun-surendran/
Bahasa yang Didukung 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"
    }
}