Core Web Vitals

This extension measures Google Core Web Vital Scores

Τι είναι το Core Web Vitals;

Το Core Web Vitals είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Arun Surendran, και η κύρια λειτουργία του είναι "This extension measures Google Core Web Vital Scores".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Core Web Vitals

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    }
}