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).

Τι είναι το Helix Font Fallback;

Το Helix Font Fallback είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adobe Inc., και η κύρια λειτουργία του είναι "Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Helix Font Fallback

Λήψη αρχείων επέκτασης Helix Font Fallback σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Helix Font Fallback Helix Font Fallback
ID deceeoanicnkoieibbfellglginplfbm
Επίσημο URL https://chromewebstore.google.com/detail/helix-font-fallback/deceeoanicnkoieibbfellglginplfbm
Περιγραφή Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).
Μέγεθος Αρχείου 59.83 KB
Αριθμός Εγκαταστάσεων 120
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-12-22
Ημερομηνία Δημοσίευσης 2022-09-08
Προγραμματιστής Adobe Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/adobe/helix-font-fallback-extension
URL της Σελίδας Πολιτικής Απορρήτου https://www.adobe.com/privacy/policy.html
Υποστηριζόμενες Γλώσσες 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"
    }
}