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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    }
}