Which Font Is This ?

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

O que é Which Font Is This ??

Which Font Is This ? é uma extensão do Chrome desenvolvida por http://yassershaikh.com, e sua principal característica é "A chrome plugin to identify fonts on websites & web pages.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Which Font Is This ?

Baixe arquivos de extensão Which Font Is This ? no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome Which Font Is This ? Which Font Is This ?
ID obhkckbkndockmajpedihihnplcgchgh
URL Oficial https://chrome.google.com/webstore/detail/which-font-is-this/obhkckbkndockmajpedihihnplcgchgh
Descrição A chrome plugin to identify fonts on websites & web pages.
Tamanho do Arquivo 43.45 KB
Contagem de Instalações 10,000
Versão Atual 2
Última Atualização 2014-04-09
Data de Publicação 2014-04-09
Classificação 3.18/5 Total de 11 Avaliações
Desenvolvedor http://yassershaikh.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://yassershaikh.com/plugins/
URL da Página de Ajuda http://yassershaikh.com/plugins/
Idiomas Suportados 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"
    ]
}