Which Font Is This ?

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

¿Qué es Which Font Is This ??

Which Font Is This ? es una extensión de Chrome desarrollada por http://yassershaikh.com, y su función principal es "A chrome plugin to identify fonts on websites & web pages.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Which Font Is This ?

Descarga archivos de extensión Which Font Is This ? 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

                        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]                    

Información Básica de la Extensión

Nombre Which Font Is This ? Which Font Is This ?
ID obhkckbkndockmajpedihihnplcgchgh
URL Oficial https://chrome.google.com/webstore/detail/which-font-is-this/obhkckbkndockmajpedihihnplcgchgh
Descripción A chrome plugin to identify fonts on websites & web pages.
Tamaño del Archivo 43.45 KB
Cantidad de Instalaciones 10,000
Versión Actual 2
Última Actualización 2014-04-09
Fecha de Publicación 2014-04-09
Calificación 3.18/5 Total de 11 Calificaciones
Desarrollador http://yassershaikh.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://yassershaikh.com/plugins/
URL de la Página de Ayuda http://yassershaikh.com/plugins/
Idiomas Soportados 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"
    ]
}