System Font Everywhere

Use system font on the web

¿Qué es System Font Everywhere?

System Font Everywhere es una extensión de Chrome desarrollada por S.J. Zhang, y su función principal es "Use system font on the web".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión System Font Everywhere

Descarga archivos de extensión System Font Everywhere 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

                        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.                    

Información Básica de la Extensión

Nombre System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Oficial https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Descripción Use system font on the web
Tamaño del Archivo 644 KB
Cantidad de Instalaciones 317
Versión Actual 0.0.3
Última Actualización 2022-12-12
Fecha de Publicación 2020-03-06
Calificación 2.60/5 Total de 5 Calificaciones
Desarrollador S.J. Zhang
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://sj.land
URL de la Página de Ayuda https://sj.land
Idiomas Soportados 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"
    }
}