CLS Checker - Journey Further
Test and debug cumulative layout shifts (CLS) in the browser
Что такое CLS Checker - Journey Further?
CLS Checker - Journey Further - это расширение Chrome, разработанное Journey Further, и его основная функция - "Test and debug cumulative layout shifts (CLS) in the browser".
Снимки экрана расширения
Скачать файл CRX расширения CLS Checker - Journey Further
Скачайте файлы расширений CLS Checker - Journey Further в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This tool measures the 'cumulative layout shifts' that occur when a page is loaded in the browser using data from the Chrome Performance API. These are then listed showing the 'layout shift' score and visualised on the webpage. Green squares show where the element started and red indicates where the element was shifted to.
Основная информация о расширении
Название | CLS Checker - Journey Further |
ID | ejgjaeamjppjgmjnaaljcocboejdinpj |
Официальный URL | https://chromewebstore.google.com/detail/cls-checker-journey-furth/ejgjaeamjppjgmjnaaljcocboejdinpj |
Описание | Test and debug cumulative layout shifts (CLS) in the browser |
Размер файла | 107 KB |
Количество установок | 6,559 |
Текущая Версия | 0.0.0.3 |
Последнее Обновление | 2021-04-22 |
Дата публикации | 2021-03-16 |
Рейтинг | 5.00/5 Всего 9 оценок |
Разработчик | Journey Further |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.journeyfurther.com |
URL страницы помощи | https://www.journeyfurther.com |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Test and debug cumulative layout shifts (CLS) in the browser", "version": "0.0.0.3", "name": "CLS Checker - Journey Further", "background": { "scripts": [ "background.bundle.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": "cls-favicon-32.png" }, "icons": { "128": "cls-favicon-128.png" }, "permissions": [ "activeTab", "browsingData" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |