CLS Visualizer
Visualizer the CLS of any webpage
Vad är CLS Visualizer?
CLS Visualizer är en Chrome-tillägg utvecklad av MarketingTracer, och dess huvudfunktion är "Visualizer the CLS of any webpage".
Tilläggsskärmbilder
Ladda ner CLS Visualizer-förlängningens CRX-fil
Ladda ner CLS Visualizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | CLS Visualizer |
ID | jbbeihojggidiclbcneckhcblilapahn |
Officiell webbadress | https://chromewebstore.google.com/detail/cls-visualizer/jbbeihojggidiclbcneckhcblilapahn |
Beskrivning | Visualizer the CLS of any webpage |
Filstorlek | 17.27 KB |
Antal Installationer | 8,771 |
Aktuell Version | 1.4 |
Senast Uppdaterad | 2022-11-20 |
Publiceringsdatum | 2020-11-12 |
Betyg | 4.36/5 Totalt 11 Betyg |
Utvecklare | MarketingTracer |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.marketingtracer.com |
Hjälpsida URL | https://www.marketingtracer.com/contact |
URL till Sekretesspolicy Sidan | https://www.marketingtracer.com/privacy |
Stödda Språk | 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" ] } ] } |