Force MS Yahei Font Allowing Exceptions
Use MS Yahei font for all sites with exceptions that can be user-defined.
Force MS Yahei Font Allowing Exceptions란 무엇입니까?
Force MS Yahei Font Allowing Exceptions은(는) https://herohuyongtao.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use MS Yahei font for all sites with exceptions that can be user-defined."입니다.
확장 프로그램 스크린샷
Force MS Yahei Font Allowing Exceptions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome plugin will enable you to force using Microsoft Yahei font for all webistes allowing exceptions. These exceptions can be user defined in "Options".
확장 프로그램 기본 정보
이름 | Force MS Yahei Font Allowing Exceptions |
ID | dplldmamfgeklcbmjehjajfbafeimjaf |
공식 URL | https://chromewebstore.google.com/detail/force-ms-yahei-font-allow/dplldmamfgeklcbmjehjajfbafeimjaf |
설명 | Use MS Yahei font for all sites with exceptions that can be user-defined. |
파일 크기 | 37.51 KB |
설치 횟수 | 98 |
현재 버전 | 7.0.0 |
최근 업데이트 | 2019-12-26 |
출시 날짜 | 2019-12-23 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | https://herohuyongtao.blogspot.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome |
도움말 페이지 URL | https://gitlab.com/herohuyongtao/force-msyahei-for-chrome/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Force MS Yahei Font Allowing Exceptions", "description": "Use MS Yahei font for all sites with exceptions that can be user-defined.", "version": "7.0.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "font.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "font.css" ], "permissions": [ "storage" ], "options_ui": { "page": "options\/index.html", "chrome_style": true } } |