Core Web Vitals

This extension measures Google Core Web Vital Scores

什么是Core Web Vitals?

Core Web Vitals是由Arun Surendran开发的Chrome扩展程序,该扩展的主要功能是“This extension measures Google Core Web Vital Scores”。

扩展截图

screenshot
screenshot

下载Core Web Vitals扩展crx文件

下载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"
    }
}