Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
Wat is Font Localization for Google Fonts?
Font Localization for Google Fonts is een Chrome-extensie ontwikkeld door Hristiyan Dodov, en de belangrijkste functie is "Forces glyph rendering for a specific language in Google Fonts.".
Extensie Screenshots
Download het CRX-bestand van de extensie Font Localization for Google Fonts
Download Font Localization for Google Fonts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
Officiële URL | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
Beschrijving | Forces glyph rendering for a specific language in Google Fonts. |
Bestandsgrootte | 28.33 KB |
Aantal Installaties | 119 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2019-07-02 |
Publicatiedatum | 2019-07-02 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Hristiyan Dodov |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/OblikStudio/font-localization |
Help Pagina-URL | https://github.com/OblikStudio/font-localization/issues |
Ondersteunde Talen | 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" } } |