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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |