Which Font Is This ?

A chrome plugin to identify fonts on websites & web pages.

Cos'è Which Font Is This ??

Which Font Is This ? è un'estensione di Chrome sviluppata da http://yassershaikh.com, e la sua funzione principale è "A chrome plugin to identify fonts on websites & web pages.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Which Font Is This ?

Scarica i file di estensione Which Font Is This ? 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

                        Important Note: You need to refresh your page once after installing this extension.

A user friendly way to find out which font, font color or background colors are in use on any website.

For any bug report/suggestion/feedback send me a mail at [email protected]                    

Informazioni di Base sull'Estensione

Nome Which Font Is This ? Which Font Is This ?
ID obhkckbkndockmajpedihihnplcgchgh
URL Ufficiale https://chrome.google.com/webstore/detail/which-font-is-this/obhkckbkndockmajpedihihnplcgchgh
Descrizione A chrome plugin to identify fonts on websites & web pages.
Dimensione del File 43.45 KB
Conteggio Installazioni 10,000
Versione Corrente 2
Ultimo Aggiornamento 2014-04-09
Data di Pubblicazione 2014-04-09
Valutazione 3.18/5 Totale 11 Valutazioni
Sviluppatore http://yassershaikh.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://yassershaikh.com/plugins/
URL della Pagina di Aiuto http://yassershaikh.com/plugins/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2",
    "manifest_version": 2,
    "name": "Which Font Is This ?",
    "description": "A chrome plugin to identify fonts on websites & web pages.",
    "homepage_url": "http:\/\/yassershaikh.com",
    "icons": {
        "128": "logo.png"
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html",
        "default_title": "What Font Is This ?"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js"
            ],
            "css": [
                "whichfontisthis.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/localhost.com\/"
    ],
    "web_accessible_resources": [
        "whichfontisthis.css",
        "logo.png"
    ]
}