Helix Font Fallback

Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).

Qu'est-ce que Helix Font Fallback ?

Helix Font Fallback est une extension Chrome développée par Adobe Inc., et sa fonction principale est "Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Helix Font Fallback

Téléchargez les fichiers d'extension Helix Font Fallback 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

                        Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page.
A fallback font is a font that most of the browsers know already which is sized to approximatively the size of the font it temporarily replaces. Like this, the browser can display nicely the page while the custom font is loaded. This is crucial to prevent CLS (Core Web Vitals).

Key features:
- computes a fallback font for all fonts loaded on the current page
- generates some CSS that can be directly copied and pasted in the existing website CSS
- allows the user to preview the fallback fonts directly in the current page                    

Informations de Base sur l'Extension

Nom Helix Font Fallback Helix Font Fallback
ID deceeoanicnkoieibbfellglginplfbm
URL Officiel https://chromewebstore.google.com/detail/helix-font-fallback/deceeoanicnkoieibbfellglginplfbm
Description Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).
Taille du Fichier 59.83 KB
Nombre d'Installations 120
Version Actuelle 1.1.0
Dernière Mise à Jour 2022-12-22
Date de Publication 2022-09-08
Développeur Adobe Inc.
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/adobe/helix-font-fallback-extension
URL de la Page de Politique de Confidentialité https://www.adobe.com/privacy/policy.html
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Helix Font Fallback",
    "description": "Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).",
    "version": "1.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": [],
    "permissions": [
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/shared\/fonts.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/"
    ],
    "icons": {
        "16": "icons\/helix_logo_16.png",
        "32": "icons\/helix_logo_32.png",
        "48": "icons\/helix_logo_48.png",
        "128": "icons\/helix_logo_128.png"
    }
}