Core Web Vitals

This extension measures Google Core Web Vital Scores

Core Web Vitals क्या है?

Core Web Vitals Arun Surendran द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension measures Google Core Web Vital Scores"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Core Web Vitals एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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