Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
Was ist Font Localization for Google Fonts?
Font Localization for Google Fonts ist eine Chrome-Erweiterung, die von Hristiyan Dodov entwickelt wurde, und ihr Hauptmerkmal ist "Forces glyph rendering for a specific language in Google Fonts.".
Erweiterungsscreenshots
Font Localization for Google Fonts-Erweiterungs-CRX-Datei herunterladen
Laden Sie Font Localization for Google Fonts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
Offizielle URL | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
Beschreibung | Forces glyph rendering for a specific language in Google Fonts. |
Dateigröße | 28.33 KB |
Installationsanzahl | 119 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2019-07-02 |
Veröffentlichungsdatum | 2019-07-02 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Hristiyan Dodov |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/OblikStudio/font-localization |
Hilfeseite URL | https://github.com/OblikStudio/font-localization/issues |
Unterstützte Sprachen | 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" } } |