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"
    }
}