Font Localization for Google Fonts
Forces glyph rendering for a specific language in Google Fonts.
什么是Font Localization for Google Fonts?
Font Localization for Google Fonts是由Hristiyan Dodov开发的Chrome扩展程序,该扩展的主要功能是“Forces glyph rendering for a specific language in Google Fonts.”。
扩展截图
下载Font Localization for Google Fonts扩展crx文件
下载Font Localization for Google Fonts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Font Localization for Google Fonts |
ID | eeapanaandeeaigffeogkgcgmpjbmnpf |
官方URL | https://chromewebstore.google.com/detail/font-localization-for-goo/eeapanaandeeaigffeogkgcgmpjbmnpf |
简介 | Forces glyph rendering for a specific language in Google Fonts. |
文件大小 | 28.33 KB |
安装次数 | 119 |
当前版本 | 1.0.2 |
更新时间 | 2019-07-02 |
上架时间 | 2019-07-02 |
评分 | 5.00/5 共1次评分 |
开发者 | Hristiyan Dodov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/OblikStudio/font-localization |
帮助页面URL | https://github.com/OblikStudio/font-localization/issues |
支持的语言 | 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" } } |