Font Inspector

Click on any HTML element to get the font info in a popup!

O que é Font Inspector?

Font Inspector é uma extensão do Chrome desenvolvida por MeryDev, e sua principal característica é "Click on any HTML element to get the font info in a popup!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Font Inspector

Baixe arquivos de extensão Font Inspector 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

                        Font Inspector is an extension that helps you easily inspect all fonts within a website.

To start working with this addon, simply click on the toolbar icon once to open the in-page UI. Then, click on any HTML element that you want to see the font info.

Please note that, as long as the UI is open, no links (or other functions) on the page will work. The in-page UI has several pieces of information related to the selected font such as font size, style, color, family, etc. Besides, there is information about the current tab such as id, width, height, title, and URL. If you click on the toolbar icon or press the escape button on your keyboard, the in-page UI will disappear and all the links within the page work as normal.

To report bugs, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/font-inspector.html).                    

Informações Básicas da Extensão

Nome Font Inspector Font Inspector
ID kgekdppfhdacjmnogfkklnljiglcphip
URL Oficial https://chromewebstore.google.com/detail/font-inspector/kgekdppfhdacjmnogfkklnljiglcphip
Descrição Click on any HTML element to get the font info in a popup!
Tamanho do Arquivo 30.26 KB
Contagem de Instalações 8,422
Versão Atual 0.1.8
Última Atualização 2024-01-18
Data de Publicação 2018-07-31
Classificação 2.20/5 Total de 5 Avaliações
Desenvolvedor MeryDev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://mybrowseraddon.com/font-inspector.html
URL da Página de Ajuda https://mybrowseraddon.com/font-inspector.html
URL da Página de Política de Privacidade https://add0n.com/policies/mery.dev.txt
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.8",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Font Inspector",
    "homepage_url": "https:\/\/mybrowseraddon.com\/font-inspector.html",
    "description": "Click on any HTML element to get the font info in a popup!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/resources\/popup.css"
            ]
        }
    ],
    "action": {
        "default_title": "Font Inspector",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}