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文件

下載Force Custom Fonts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}