System Font Everywhere

Use system font on the web

Qu'est-ce que System Font Everywhere ?

System Font Everywhere est une extension Chrome développée par S.J. Zhang, et sa fonction principale est "Use system font on the web".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension System Font Everywhere

Téléchargez les fichiers d'extension System Font Everywhere au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
URL Officiel https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Description Use system font on the web
Taille du Fichier 644 KB
Nombre d'Installations 317
Version Actuelle 0.0.3
Dernière Mise à Jour 2022-12-12
Date de Publication 2020-03-06
Évaluation 2.60/5 Total 5 Évaluations
Développeur S.J. Zhang
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sj.land
URL de la Page d'Aide https://sj.land
Langues Prises en Charge 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"
    }
}