Typography Analyzer
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
Was ist Typography Analyzer?
Typography Analyzer ist eine Chrome-Erweiterung, die von lemehovskiy entwickelt wurde, und ihr Hauptmerkmal ist "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".
Erweiterungsscreenshots
Typography Analyzer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Typography Analyzer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
Offizielle URL | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
Beschreibung | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
Dateigröße | 628 KB |
Installationsanzahl | 47 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2023-10-20 |
Veröffentlichungsdatum | 2023-10-18 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | lemehovskiy |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |