IdentiFont

This extension displays the font of an html element on hover.

Cos'è IdentiFont?

IdentiFont è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension displays the font of an html element on hover.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione IdentiFont

Scarica i file di estensione IdentiFont 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

                        IdentiFont helps you identify the font-faces used across the web. Simply turn on the extension, and hover over almost any block of text to see a popup containing the name of the font used. Remember to restart your browser after installing.                    

Informazioni di Base sull'Estensione

Nome IdentiFont IdentiFont
ID nmmdmcgnpdhlhcaaklfkhiemkkiecpca
URL Ufficiale https://chromewebstore.google.com/detail/identifont/nmmdmcgnpdhlhcaaklfkhiemkkiecpca
Descrizione This extension displays the font of an html element on hover.
Dimensione del File 2.68 MB
Conteggio Installazioni 734
Versione Corrente 1.2
Ultimo Aggiornamento 2016-09-24
Data di Pubblicazione 2016-09-24
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IdentiFont",
    "description": "This extension displays the font of an html element on hover.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "core.css"
            ],
            "js": [
                "core.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": ".\/images\/logo.png"
    }
}