Core Web Vitals Inspector

Find scrips that bring down your Core Web Vitals scores

ما هو Core Web Vitals Inspector؟

Core Web Vitals Inspector هو إضافة Chrome تم تطويرها بواسطة geosopuk، والميزة الرئيسية لها هي "Find scrips that bring down your Core Web Vitals scores".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Core Web Vitals Inspector

قم بتنزيل ملفات الامتداد Core Web Vitals Inspector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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'"
}