Fontanello

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

¿Qué es Fontanello?

Fontanello es una extensión de Chrome desarrollada por Fred Bergman, y su función principal es "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Fontanello

Descarga archivos de extensión Fontanello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL Oficial https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Descripción A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Tamaño del Archivo 8.85 KB
Cantidad de Instalaciones 70,000
Versión Actual 1.2.2
Última Actualización 2021-05-02
Fecha de Publicación 2020-02-22
Calificación 4.50/5 Total de 38 Calificaciones
Desarrollador Fred Bergman
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://fontanello.app/
Idiomas Soportados 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"
    }
}