Core Web Vitals

This extension measures Google Core Web Vital Scores

Core Web Vitals là gì?

Core Web Vitals là một tiện ích mở rộng Chrome được phát triển bởi Arun Surendran, và tính năng chính của nó là "This extension measures Google Core Web Vital Scores".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Core Web Vitals

Tải xuống các tệp mở rộng Core Web Vitals dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Core Web Vitals Core Web Vitals
ID adeniimnihmbpgpbljmnohjpoolmgabj
URL Chính Thức https://chromewebstore.google.com/detail/core-web-vitals/adeniimnihmbpgpbljmnohjpoolmgabj
Mô tả This extension measures Google Core Web Vital Scores
Kích Thước Tệp 7.29 KB
Số Lần Cài Đặt 10,485
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-11-02
Ngày Phát Hành 2020-11-01
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Arun Surendran
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.linkedin.com/in/arun-surendran/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}