FontDetector

Display font information on hover over text elements.

O que é FontDetector?

FontDetector é uma extensão do Chrome desenvolvida por islandgision, e sua principal característica é "Display font information on hover over text elements.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão FontDetector

Baixe arquivos de extensão FontDetector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome FontDetector FontDetector
ID jphgedmdokkhlllaibcbndaccmdcckfe
URL Oficial https://chromewebstore.google.com/detail/fontdetector/jphgedmdokkhlllaibcbndaccmdcckfe
Descrição Display font information on hover over text elements.
Tamanho do Arquivo 889 KB
Contagem de Instalações 192
Versão Atual 1.1.8
Última Atualização 2023-12-01
Data de Publicação 2023-04-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor islandgision
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    }
}