Web Vitals
Measure metrics for a healthy site
Τι είναι το Web Vitals;
Το Web Vitals είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον addyosmani, και η κύρια λειτουργία του είναι "Measure metrics for a healthy site".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Web Vitals
Λήψη αρχείων επέκτασης Web Vitals σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Web Vitals are quality signals key to delivering great UX on the web (https://web.dev/vitals). This extension measures the Core Web Vitals, providing instant feedback on loading, interactivity and layout shift metrics. It is consistent with how these metrics are measured by Chrome and reported to other Google tools (e.g. Chrome User Experience Report, Page Speed Insights, Search Console). The extension captures: Largest Contentful Paint Cumulative Layout Shift First Input Delay Interaction To Next Paint (experimental) First Contentful Paint Time To First Byte The extension provides three core features: 1) Ambient Badge - This helps check if a page passing the Core Web Vitals thresholds. Once installed, the extension will display a disabled state badge icon until you navigate to a URL. At this point it will update the badge to green or red depending on whether the URL passes the Core Web Vitals metrics thresholds. The badge has a number of states: * Disabled - gray * Passing - green * One or more metrics failing - red If one or more metrics are failing, the badge will animate the values of these metrics. 2) Detailed drill-down in the popup Clicking the Ambient badge icon will allow you to drill in to the individual metric values. In this mode, the extension will also say if a metric value might change or requires a user action. For example, First Input Delay requires a real interaction (e.g click/tap) with the page and will be in a waiting for input state until this is the case. We recommend consulting the web.dev documentation for LCP, CLS and FID to get an understanding of when metric values settle. As of version 1.0.0, the popup combines your local Core Web Vitals experiences with real-user data from the field via the Chrome UX Report (CrUX) API. This integration gives you contextual insights to help you understand how similar your individual experiences are to other desktop users on the same page. We've also added a new option to "Compare local experiences to phone field data" instead, if needed. Note that CrUX data may not be available for some pages, in which case we try to load field data for the origin as a whole. 3) HUD Overlay The overlay displays a Heads up display (HUD) which overlays your page. It is useful if you need a persistent view of your Core Web Vitals metrics during development. To enable the overlay: Right-click on the Ambient badge and go to Options. Check Display HUD overlay and click 'Save' Reload the tab for the URL you wish to test. The overlay should now be present.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Web Vitals |
ID | ahfhijdlegdabablpippeagghigmibma |
Επίσημο URL | https://chromewebstore.google.com/detail/web-vitals/ahfhijdlegdabablpippeagghigmibma |
Περιγραφή | Measure metrics for a healthy site |
Μέγεθος Αρχείου | 393 KB |
Αριθμός Εγκαταστάσεων | 177,911 |
Τρέχουσα Έκδοση | 1.4.0 |
Τελευταία Ενημέρωση | 2023-08-09 |
Ημερομηνία Δημοσίευσης | 2020-06-30 |
Αξιολόγηση | 4.03/5 Συνολικά 38 Αξιολογήσεις |
Προγραμματιστής | addyosmani |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/GoogleChrome/web-vitals-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/GoogleChrome/web-vitals-extension/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Vitals", "version": "1.4.0", "manifest_version": 3, "description": "Measure metrics for a healthy site", "homepage_url": "https:\/\/web.dev\/vitals\/", "icons": { "128": "icons\/vitals128w.png", "256": "icons\/vitals256w.png", "512": "icons\/vitals512w.png" }, "action": { "default_icon": "icons\/default256w.png", "default_title": "Web Vitals", "default_popup": "src\/browser_action\/popup.html" }, "options_page": "src\/options\/options.html", "host_permissions": [ "*:\/\/*\/*" ], "permissions": [ "tabs", "storage", "activeTab", "scripting" ], "web_accessible_resources": [ { "resources": [ "src\/browser_action\/viewer.css", "src\/browser_action\/web-vitals.js", "src\/browser_action\/on-each-interaction.js" ], "matches": [ "*:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "src\/browser_action\/viewer.css" ], "js": [ "src\/browser_action\/lodash-debounce-custom.js" ] } ], "background": { "service_worker": "service_worker.js" }, "content_security_policy": { "extension_pages": "default-src 'self'; connect-src https:\/\/chromeuxreport.googleapis.com;" } } |