Core Web Vitals Inspector

Find scrips that bring down your Core Web Vitals scores

什麼是Core Web Vitals Inspector?

Core Web Vitals Inspector是由geosopuk開發的Chrome擴展程式,該擴展的主要功能是“Find scrips that bring down your Core Web Vitals scores”。

擴展截圖

screenshot

下載Core Web Vitals Inspector擴展crx文件

下載Core Web Vitals Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Is your Core Web Vitals performance being harmed by the scripts embedded in your website? 

Core Web Vitals Inspector helps you quickly identify which scripts are causing issues with your CWV scores, and shows the real time impact on CLS, FID and LCP. 

Run Core Web Vitals tests with any combination of on page scripts disable and see how each vitals score is impacted.  

Free unlimited tests on up to three domains. Affordable pro upgrade available for agencies and freelancers needing to test unlimited websites.                    

擴展基本資訊

名稱 Core Web Vitals Inspector Core Web Vitals Inspector
ID enmmbfgeailcehfokaaanhgcolkodcim
官方網址 https://chromewebstore.google.com/detail/core-web-vitals-inspector/enmmbfgeailcehfokaaanhgcolkodcim
簡介 Find scrips that bring down your Core Web Vitals scores
檔案大小 357 KB
安裝次數 173
目前版本 1.0
更新時間 2021-07-20
上架時間 2021-07-20
開發者 geosopuk
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Core Web Vitals Inspector",
    "description": "Find scrips that bring down your Core Web Vitals scores",
    "version": "1.0",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/lodash-debounce-custom.js",
                "js\/vitals.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "js\/web-vitals.js",
        "js\/vitals.js"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "storage",
        "http:\/\/localhost:5000\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/www.googleapis.com\/pagespeedonline\/v5\/runPagespeed?*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.googleapis.com; object-src 'self'"
}