Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
Cos'è Font Localization for Google Fonts?
Font Localization for Google Fonts è un'estensione di Chrome sviluppata da Hristiyan Dodov, e la sua funzione principale è "Forces glyph rendering for a specific language in Google Fonts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Font Localization for Google Fonts
Scarica i file di estensione Font Localization for Google Fonts 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
Open Google Fonts, click the extension icon, and select a language. Then, fonts shown will be forced to render glyphs specific to the chosen language, if they have such. Note that some fonts may not have localized glyphs. In that case, they will render the default glyphs for that script.
Informazioni di Base sull'Estensione
Nome | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
URL Ufficiale | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
Descrizione | Forces glyph rendering for a specific language in Google Fonts. |
Dimensione del File | 28.33 KB |
Conteggio Installazioni | 119 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2019-07-02 |
Data di Pubblicazione | 2019-07-02 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Hristiyan Dodov |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/OblikStudio/font-localization |
URL della Pagina di Aiuto | https://github.com/OblikStudio/font-localization/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.2", "name": "Font Localization for Google Fonts", "description": "Forces glyph rendering for a specific language in Google Fonts.", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/fonts.google.com\/*" ], "run_at": "document_start", "js": [ "content.js" ], "css": [ "style.css" ] } ], "browser_action": { "default_popup": "popup.html" } } |