Core Web Vitals Visualizer

Visualize the Core Web Vitals of any webpage

Core Web Vitals Visualizerคืออะไร?

Core Web Vitals Visualizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MarketingTracer และคุณลักษณะหลักของมันคือ "Visualize the Core Web Vitals of any webpage"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Core Web Vitals Visualizer

ดาวน์โหลดไฟล์ส่วนขยาย Core Web Vitals Visualizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        RUM Visualizer visualizes the Core Web Vitals for any webpage.

This extension will visualize the Core Web Vitals for any webpage. It includes the Largest Contentful Paint (LCP), First Input Delay (FID), Cumulative layout Shift (CLS), First Contentful Paint (FCP), Interaction to Next Paint (INP) and the Time To First Byte  (TTFB). Get direct access to the Core Web Vitals historical data!

Features:

LCP
- Get LCP RUM values
- Visualize the LCP.
- Break down the LCP into Time to first byte, Resource load delay, Resource load time and Element render delay

FID
- Get FID RUM values
- Visualize the FID.
- FID breakdown

CLS
- Get CLS RUM values
- Show CLS breakdown
- Visualize the CLS
- Animate the CLS.

FCP
- Get FCP RUM values
- break down the FCP

INP
- Get INP RUM values
- Visualize the INP.
- INP breakdown

TTFB
- get TTFB RUM values
- breakdown the TTFB

Easy debugging:
- Emulate slow network conditions (3g).
- Enable or disable Caching for the current page.

changes:
1.2 added lots of LCP information like preloading,  fetchpriority, rendering breakdown, first or third party etc.
1.4 left side menu, more information about render blocking resources and direct links to PSI, CrUX dashboard and W3C.
1.5 code improvements, layout improvements, added page experiments (defer javascript, disable javascript, disable third party scripts, lazy load images, defer background images & disable webfonts)
1.6 Better INP Breakdown, minor code improvements.
1.7 Log Events, Long Tasks and Long Animation Frames to the console that happen during and might interfere with the INP
1.8 Better metric updates, better logging, minor improvements
1.9 CrUX history API, small fixes, more CLS info                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Core Web Vitals Visualizer Core Web Vitals Visualizer
ID mcffmgagphgpgkdclllnilokablhjcge
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/core-web-vitals-visualize/mcffmgagphgpgkdclllnilokablhjcge
คำอธิบาย Visualize the Core Web Vitals of any webpage
ขนาดไฟล์ 2.39 MB
จำนวนการติดตั้ง 3,437
เวอร์ชันปัจจุบัน 1.9
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2022-10-29
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา MarketingTracer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.marketingtracer.com
URL หน้าช่วยเหลือ https://www.marketingtracer.com/contact
URL หน้านโยบายความเป็นส่วนตัว https://www.marketingtracer.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "description": "Visualize the Core Web Vitals of any webpage",
    "icons": {
        "144": "icons\/rum144.png",
        "16": "icons\/rum16.png",
        "48": "icons\/rum48.png"
    },
    "manifest_version": 3,
    "name": "Core Web Vitals Visualizer",
    "permissions": [
        "debugger"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.9",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/content.js"
            ]
        }
    ]
}