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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}