System Font Everywhere

Use system font on the web

Cos'è System Font Everywhere?

System Font Everywhere è un'estensione di Chrome sviluppata da S.J. Zhang, e la sua funzione principale è "Use system font on the web".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione System Font Everywhere

Scarica i file di estensione System Font Everywhere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Ufficiale https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Descrizione Use system font on the web
Dimensione del File 644 KB
Conteggio Installazioni 317
Versione Corrente 0.0.3
Ultimo Aggiornamento 2022-12-12
Data di Pubblicazione 2020-03-06
Valutazione 2.60/5 Totale 5 Valutazioni
Sviluppatore S.J. Zhang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://sj.land
URL della Pagina di Aiuto https://sj.land
Lingue Supportate 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"
    }
}