System Font Everywhere

Use system font on the web

O que é System Font Everywhere?

System Font Everywhere é uma extensão do Chrome desenvolvida por S.J. Zhang, e sua principal característica é "Use system font on the web".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão System Font Everywhere

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

                        Use this extension to apply System Fonts to the internet. Use San Francisco on macOS and Segoe UI on Windows 10 for the best legibility when you need to read, or on other sites with unfavorable font choices.                    

Informações Básicas da Extensão

Nome System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Oficial https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Descrição Use system font on the web
Tamanho do Arquivo 644 KB
Contagem de Instalações 317
Versão Atual 0.0.3
Última Atualização 2022-12-12
Data de Publicação 2020-03-06
Classificação 2.60/5 Total de 5 Avaliações
Desenvolvedor S.J. Zhang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://sj.land
URL da Página de Ajuda https://sj.land
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "System Font Everywhere",
    "short_name": "SF Everywhere",
    "version": "0.0.3",
    "description": "Use system font on the web",
    "action": {
        "default_title": "System Font Everywhere",
        "default_icon": "off-icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "128.png"
    }
}