Font Picker

A simple helper to identify font details from any website

O que é Font Picker?

Font Picker é uma extensão do Chrome desenvolvida por Paul Krishnamurthy, e sua principal característica é "A simple helper to identify font details from any website".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Font Picker

Baixe arquivos de extensão Font Picker 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: ONCE YOU INSTALL THE EXTENSION, YOU NEED TO RELOAD YOUR TABS FOR EVERYTHING TO WORK**

Font Picker is a clean and simple tool for identifying fonts and their details on any website.

Once you install the extension, you will have the ability to right click on any text and view its font details. Clicking the "Font Details" option will open up a pop up with all the information you need about that font. This method is much faster and nicer than having to go and personally inspect the source code.

Enjoy!                    

Informações Básicas da Extensão

Nome Font Picker Font Picker
ID mmjbimgpcbaegjiieojddickpjbdkeej
URL Oficial https://chromewebstore.google.com/detail/font-picker/mmjbimgpcbaegjiieojddickpjbdkeej
Descrição A simple helper to identify font details from any website
Tamanho do Arquivo 358 KB
Contagem de Instalações 71,503
Versão Atual 1.0.5
Última Atualização 2021-08-26
Data de Publicação 2017-11-18
Classificação 3.06/5 Total de 54 Avaliações
Desenvolvedor Paul Krishnamurthy
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://paulkr.com/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Font Picker",
    "short_name": "FP",
    "description": "A simple helper to identify font details from any website",
    "version": "1.0.5",
    "author": "Paul Krishnamurthy",
    "homepage_url": "https:\/\/paulkr.com\/",
    "permissions": [
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Font Picker",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/sweetalert.min.js",
                "js\/content.js"
            ],
            "css": [
                "styles\/sweetalert.css",
                "styles\/custom.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "logo.png",
        "background.png"
    ]
}