Typography Analyzer

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

什麼是Typography Analyzer?

Typography Analyzer是由lemehovskiy開發的Chrome擴展程式,該擴展的主要功能是“Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…”。

擴展截圖

screenshot
screenshot
screenshot

下載Typography Analyzer擴展crx文件

下載Typography Analyzer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Typography Analyzer Typography Analyzer
ID ommgjjglofcihoogjiibfgoeedcnkeib
官方網址 https://chromewebstore.google.com/detail/typography-analyzer/ommgjjglofcihoogjiibfgoeedcnkeib
簡介 Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…
檔案大小 628 KB
安裝次數 47
目前版本 1.0.1
更新時間 2023-10-20
上架時間 2023-10-18
評分 5.00/5 共 2 次評分
開發者 lemehovskiy
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}