FontDetector

Display font information on hover over text elements.

Τι είναι το FontDetector;

Το FontDetector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον islandgision, και η κύρια λειτουργία του είναι "Display font information on hover over text elements.".

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

screenshot
screenshot
screenshot

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

Λήψη αρχείων επέκτασης FontDetector σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Run plugin:
- win: Shift + Alt + X
- mac: Shift + Alt + X

Close plugin:
- win: ESC
- mac: ESC

————— Divider ——————

FontDetector is a tool powered by myself and GPT-4, designed to help you view web fonts by hovering text. You can easily explore your favorite font families, weights, sizes, letter spacing, line heights, and text alignments.

Hover, detect. As easy as 1-2. An essential tool for any web designer or front-end developer.

————— Divider ——————

1.1.8
feat: Updated shortcut keys for activating FontDetector, Now you could use 
- win: Shift + Alt + X
- mac: Shift + Alt + X

1.1.7
feat: Updated shortcut keys for activating FontDetector, Now you could use 
- win: Ctrl + Shift + Z
- mac: Command + Shift + Z

1.1.6
fixed: Gray out the fonts on the website when the plugin is activated

1.1.5
fixed: Body was injected into 18px padding

1.1.4
feat: Removed tabs permissions                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FontDetector FontDetector
ID jphgedmdokkhlllaibcbndaccmdcckfe
Επίσημο URL https://chromewebstore.google.com/detail/fontdetector/jphgedmdokkhlllaibcbndaccmdcckfe
Περιγραφή Display font information on hover over text elements.
Μέγεθος Αρχείου 889 KB
Αριθμός Εγκαταστάσεων 192
Τρέχουσα Έκδοση 1.1.8
Τελευταία Ενημέρωση 2023-12-01
Ημερομηνία Δημοσίευσης 2023-04-18
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής islandgision
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "FontDetector",
    "version": "1.1.8",
    "description": "Display font information on hover over text elements.",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "commands": {
        "toggle_font_detector": {
            "suggested_key": {
                "default": "Shift+Alt+X",
                "mac": "Shift+Alt+X"
            },
            "description": "Toggle font detector"
        }
    }
}