Typography Analyzer

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

What is Typography Analyzer?

Typography Analyzer is a Chrome extension developed by lemehovskiy, and its main feature is "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".

Extension Screenshots

screenshot
screenshot
screenshot

Download Typography Analyzer Extension CRX File

Download Typography Analyzer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Typography Analyzer Typography Analyzer
ID ommgjjglofcihoogjiibfgoeedcnkeib
Official URL 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…
File Size 628 KB
Installation Count 47
Current Version 1.0.1
Last Updated 2023-10-20
Publish Date 2023-10-18
Rating 5.00/5 Total 2 Ratings
Developer lemehovskiy
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}