Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
Apa itu Font Localization for Google Fonts?
Font Localization for Google Fonts adalah ekstensi Chrome yang dikembangkan oleh Hristiyan Dodov, dan fitur utamanya adalah "Forces glyph rendering for a specific language in Google Fonts.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Font Localization for Google Fonts
Unduh file ekstensi Font Localization for Google Fonts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
URL Resmi | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
Deskripsi | Forces glyph rendering for a specific language in Google Fonts. |
Ukuran File | 28.33 KB |
Jumlah Instalasi | 119 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2019-07-02 |
Tanggal Publikasi | 2019-07-02 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Hristiyan Dodov |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/OblikStudio/font-localization |
URL Halaman Bantuan | https://github.com/OblikStudio/font-localization/issues |
Bahasa yang Didukung | 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" } } |