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은(는) Adobe Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Helix Font Fallback 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 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"
    }
}