Typography Analyzer
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
¿Qué es Typography Analyzer?
Typography Analyzer es una extensión de Chrome desarrollada por lemehovskiy, y su función principal es "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Typography Analyzer
Descarga archivos de extensión Typography Analyzer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed properties of font sizes, font families, font weights, and colors in use. Additionally, it offers a rating for overall typography usage and the ability to highlight specific typography groups. This extension is a handy tool for those interested in understanding website typography.
Información Básica de la Extensión
Nombre | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
URL Oficial | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
Descripción | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
Tamaño del Archivo | 628 KB |
Cantidad de Instalaciones | 47 |
Versión Actual | 1.0.1 |
Última Actualización | 2023-10-20 |
Fecha de Publicación | 2023-10-18 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | lemehovskiy |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Typography Analyzer", "description": "", "version": "1.0.1", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Open the popup" }, "icons": { "16": "logo16.png", "32": "logo32.png", "48": "logo48.png", "128": "logo128.png" }, "permissions": [ "activeTab", "storage", "background" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ], "run_at": "document_start" } ], "background": { "service_worker": ".\/static\/js\/service-worker.js", "run_at": "document_start", "type": "module" } } |