Typography Analyzer
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
Qu'est-ce que Typography Analyzer ?
Typography Analyzer est une extension Chrome développée par lemehovskiy, et sa fonction principale est "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Typography Analyzer
Téléchargez les fichiers d'extension Typography Analyzer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
URL Officiel | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
Description | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
Taille du Fichier | 628 KB |
Nombre d'Installations | 47 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2023-10-20 |
Date de Publication | 2023-10-18 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | lemehovskiy |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |