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).”。
擴展截圖
下載Helix Font Fallback擴展crx文件
下載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 |
ID | deceeoanicnkoieibbfellglginplfbm |
官方網址 | 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" } } |