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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Core Web Vitals Inspector
Λήψη αρχείων επέκτασης Core Web Vitals Inspector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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'" } |