Typography Analyzer
Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
Vad är Typography Analyzer?
Typography Analyzer är en Chrome-tillägg utvecklad av lemehovskiy, och dess huvudfunktion är "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".
Tilläggsskärmbilder
Ladda ner Typography Analyzer-förlängningens CRX-fil
Ladda ner Typography Analyzer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Typography Analyzer |
ID | ommgjjglofcihoogjiibfgoeedcnkeib |
Officiell webbadress | https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib |
Beskrivning | Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed… |
Filstorlek | 628 KB |
Antal Installationer | 47 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2023-10-20 |
Publiceringsdatum | 2023-10-18 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | lemehovskiy |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |