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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lemehovskiy, και η κύρια λειτουργία του είναι "Typography Analyzer is a Chrome extension that helps you assess the typography of web pages. It lets you view the computed…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Typography Analyzer

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
    }
}