Chrome Font Rendering Enhancer

Improves your font rendering

Chrome Font Rendering Enhancerคืออะไร?

Chrome Font Rendering Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย incleaf และคุณลักษณะหลักของมันคือ "Improves your font rendering"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Font Rendering Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย Chrome Font Rendering Enhancer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This application improves your font rendering. You can also control the font weight with easy UI :)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
คำอธิบาย Improves your font rendering
ขนาดไฟล์ 15.04 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2016-06-07
วันที่เผยแพร่ 2016-06-07
คะแนน 4.76/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา incleaf
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/incleaf/osx-chrome-font-rendering-enhancer
URL หน้าช่วยเหลือ https://github.com/incleaf/osx-chrome-font-rendering-enhancer
ภาษาที่รองรับ ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Font Rendering Enhancer",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Improves your font rendering",
    "homepage_url": "http:\/\/incleaf.github.io\/",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage"
    ]
}