Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
Vad är Font Localization for Google Fonts?
Font Localization for Google Fonts är en Chrome-tillägg utvecklad av Hristiyan Dodov, och dess huvudfunktion är "Forces glyph rendering for a specific language in Google Fonts.".
Tilläggsskärmbilder
Ladda ner Font Localization for Google Fonts-förlängningens CRX-fil
Ladda ner Font Localization for Google Fonts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
Officiell webbadress | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
Beskrivning | Forces glyph rendering for a specific language in Google Fonts. |
Filstorlek | 28.33 KB |
Antal Installationer | 119 |
Aktuell Version | 1.0.2 |
Senast Uppdaterad | 2019-07-02 |
Publiceringsdatum | 2019-07-02 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Hristiyan Dodov |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/OblikStudio/font-localization |
Hjälpsida URL | https://github.com/OblikStudio/font-localization/issues |
Stödda Språk | 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" } } |