Force Custom Fonts

Force the use of custom fonts for web pages. If you are professional in using CSS, the extension "Stylish" is suggested.

Force Custom Fonts란 무엇입니까?

Force Custom Fonts은(는) Jak Wings에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Force the use of custom fonts for web pages. If you are professional in using CSS, the extension "Stylish" is suggested."입니다.

확장 프로그램 스크린샷

screenshot

Force Custom Fonts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension has a limit:

You can not chain two substitution rules, .e.g:
  Font-A --> Font-B
  Font-B --> Font-C
does not conclude Font-A --> Font-C

If I have time I'll make a similar extension about fonts. Thanks for your support.

Change Logs:
v2.4.0 fix translations and add a local switch for who wants to disable this extension (on macbook pro?)
v2.3.1 remove redundant files
v2.3.0 now reset will auto-remove the effect added to the webpages
v2.2.1 small improvement about the CSS about element  and font-face
v2.2.0 the problem about no replacement happening was fixed                    

확장 프로그램 기본 정보

이름 Force Custom Fonts Force Custom Fonts
ID hckjchjpkmbihoocajjpjajkggbccgee
공식 URL https://chromewebstore.google.com/detail/force-custom-fonts/hckjchjpkmbihoocajjpjajkggbccgee
설명 Force the use of custom fonts for web pages. If you are professional in using CSS, the extension "Stylish" is suggested.
파일 크기 14.42 KB
설치 횟수 35,446
현재 버전 2.4.0
최근 업데이트 2016-11-17
출시 날짜 2016-11-17
평점 4.64/5 총 324 개의 평점
개발자 Jak Wings
결제 유형 free
지원되는 언어 en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "22",
    "version": "2.4.0",
    "default_locale": "en",
    "name": "__MSG_EXT_NAME__",
    "description": "__MSG_EXT_DESCRIPTION__",
    "icons": {
        "48": "icon.png"
    },
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/fn.js",
                "js\/style.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "unlimitedStorage",
        "fontSettings"
    ]
}