Core Web Vitals

This extension measures Google Core Web Vital Scores

ما هو Core Web Vitals؟

Core Web Vitals هو إضافة Chrome تم تطويرها بواسطة Arun Surendran، والميزة الرئيسية لها هي "This extension measures Google Core Web Vital Scores".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Core Web Vitals

قم بتنزيل ملفات الامتداد Core Web Vitals بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
عنوان URL الرسمي https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
الوصف This extension measures Google Core Web Vital Scores
حجم الملف 7.29 KB
عدد التثبيتات 10,485
النسخة الحالية 0.1
آخر تحديث 2020-11-02
تاريخ النشر 2020-11-01
تقييم 5.00/5 مجموع تقييمات 5
المطور Arun Surendran
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://www.linkedin.com/in/arun-surendran/
اللغات المدعومة 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"
    }
}