Chrome Font Rendering Enhancer

Improves your font rendering

什麼是Chrome Font Rendering Enhancer?

Chrome Font Rendering Enhancer是由incleaf開發的Chrome擴展程式,該擴展的主要功能是“Improves your font rendering”。

下載Chrome Font Rendering Enhancer擴展crx文件

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