Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

O que é Fontanello?

Fontanello é uma extensão do Chrome desenvolvida por Fred Bergman, e sua principal característica é "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Fontanello

Baixe arquivos de extensão Fontanello 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

                        Fontanello makes it super easy to inspect typography on a webpage. It will show you information about typeface, weight, size, color and some other less used CSS-properties. It also show information about contrast for selected text.                    

Informações Básicas da Extensão

Nome Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL Oficial https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Descrição A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Tamanho do Arquivo 8.85 KB
Contagem de Instalações 70,000
Versão Atual 1.2.2
Última Atualização 2021-05-02
Data de Publicação 2020-02-22
Classificação 4.50/5 Total de 38 Avaliações
Desenvolvedor Fred Bergman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://fontanello.app/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontanello",
    "version": "1.2.2",
    "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "45",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}