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).
Cos'è Helix Font Fallback?
Helix Font Fallback è un'estensione di Chrome sviluppata da Adobe Inc., e la sua funzione principale è "Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Helix Font Fallback
Scarica i file di estensione Helix Font Fallback in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Helix Font Fallback |
ID | deceeoanicnkoieibbfellglginplfbm |
URL Ufficiale | https://chromewebstore.google.com/detail/helix-font-fallback/deceeoanicnkoieibbfellglginplfbm |
Descrizione | Helix Font Fallback computes the fallback fonts for all the fonts loaded on the page. This is helpful to prevent CLS (Web Vitals). |
Dimensione del File | 59.83 KB |
Conteggio Installazioni | 120 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2022-12-22 |
Data di Pubblicazione | 2022-09-08 |
Sviluppatore | Adobe Inc. |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/adobe/helix-font-fallback-extension |
URL della Pagina della Politica sulla Privacy | https://www.adobe.com/privacy/policy.html |
Lingue Supportate | 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" } } |