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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jak Wings และคุณลักษณะหลักของมันคือ "Force the use of custom fonts for web pages. If you are professional in using CSS, the extension "Stylish" is suggested."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Force Custom Fonts

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}