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
官方網址 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"
    }
}