CLS Visualizer
Visualizer the CLS of any webpage
什么是CLS Visualizer?
CLS Visualizer是由MarketingTracer开发的Chrome扩展程序,该扩展的主要功能是“Visualizer the CLS of any webpage”。
扩展截图
下载CLS Visualizer扩展crx文件
下载CLS Visualizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | jbbeihojggidiclbcneckhcblilapahn |
| 官方URL | https://chromewebstore.google.com/detail/cls-visualizer/jbbeihojggidiclbcneckhcblilapahn |
| 简介 | Visualizer the CLS of any webpage |
| 文件大小 | 17.27 KB |
| 安装次数 | 8,771 |
| 当前版本 | 1.4 |
| 更新时间 | 2022-11-20 |
| 上架时间 | 2020-11-12 |
| 评分 | 4.36/5 共11次评分 |
| 开发者 | MarketingTracer |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.marketingtracer.com |
| 帮助页面URL | https://www.marketingtracer.com/contact |
| 隐私政策页面URL | https://www.marketingtracer.com/privacy |
| 支持的语言 | 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"
]
}
]
} | |