Core Web Vitals Inspector

Find scrips that bring down your Core Web Vitals scores

Co to jest Core Web Vitals Inspector?

Core Web Vitals Inspector to rozszerzenie Chrome opracowane przez geosopuk, a jego główną funkcją jest „Find scrips that bring down your Core Web Vitals scores”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Core Web Vitals Inspector

Pobierz pliki rozszerzeń Core Web Vitals Inspector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Core Web Vitals Inspector Core Web Vitals Inspector
ID enmmbfgeailcehfokaaanhgcolkodcim
Oficjalny URL https://chromewebstore.google.com/detail/core-web-vitals-inspector/enmmbfgeailcehfokaaanhgcolkodcim
Opis Find scrips that bring down your Core Web Vitals scores
Rozmiar pliku 357 KB
Liczba instalacji 173
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-07-20
Data Publikacji 2021-07-20
Deweloper geosopuk
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}