Fontanello

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

Cos'è Fontanello?

Fontanello è un'estensione di Chrome sviluppata da Fred Bergman, e la sua funzione principale è "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fontanello

Scarica i file di estensione Fontanello in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
URL Ufficiale https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Descrizione A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Dimensione del File 8.85 KB
Conteggio Installazioni 70,000
Versione Corrente 1.2.2
Ultimo Aggiornamento 2021-05-02
Data di Pubblicazione 2020-02-22
Valutazione 4.50/5 Totale 38 Valutazioni
Sviluppatore Fred Bergman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://fontanello.app/
Lingue Supportate 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"
    }
}