CLS Visualizer
Visualizer the CLS of any webpage
Wat is CLS Visualizer?
CLS Visualizer is een Chrome-extensie ontwikkeld door MarketingTracer, en de belangrijkste functie is "Visualizer the CLS of any webpage".
Extensie Screenshots
Download het CRX-bestand van de extensie CLS Visualizer
Download CLS Visualizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This plugin will highlight and visualize the Cumulative Layout Shift. Cumulative Layout Shift (CLS) is an important, user-centric metric for measuring visual stability because it helps quantify how often users experience unexpected layout shifts—a low CLS helps ensure that the page is delightful. Unfortunately the CLS is a pain to debug without visualisation
Basisinformatie over de Extensie
Naam | CLS Visualizer |
ID | jbbeihojggidiclbcneckhcblilapahn |
Officiële URL | https://chromewebstore.google.com/detail/cls-visualizer/jbbeihojggidiclbcneckhcblilapahn |
Beschrijving | Visualizer the CLS of any webpage |
Bestandsgrootte | 17.27 KB |
Aantal Installaties | 8,771 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2022-11-20 |
Publicatiedatum | 2020-11-12 |
Beoordeling | 4.36/5 Totaal 11 Beoordelingen |
Ontwikkelaar | MarketingTracer |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.marketingtracer.com |
Help Pagina-URL | https://www.marketingtracer.com/contact |
URL van de Privacybeleid Pagina | https://www.marketingtracer.com/privacy |
Ondersteunde Talen | en |
manifest.json | |
{ "action": { "default_popup": "popup.html" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "description": "Visualizer the CLS of any webpage", "icons": { "144": "icons\/icon144.png", "16": "icons\/icon16.png", "48": "icons\/icon48.png" }, "manifest_version": 3, "name": "CLS Visualizer", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.4", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "run_at": "document_start", "js": [ "js\/cls.js" ] } ] } |