Typography Analyzer

Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…

Cos'è Typography Analyzer?

Typography Analyzer è un'estensione di Chrome sviluppata da lemehovskiy, e la sua funzione principale è "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Typography Analyzer

Scarica i file di estensione Typography Analyzer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Typography Analyzer Typography Analyzer
ID ommgjjglofcihoogjiibfgoeedcnkeib
URL Ufficiale https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib
Descrizione Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
Dimensione del File 628 KB
Conteggio Installazioni 47
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-10-20
Data di Pubblicazione 2023-10-18
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore lemehovskiy
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}