Chrome Font Rendering Enhancer

Improves your font rendering

What is Chrome Font Rendering Enhancer?

Chrome Font Rendering Enhancer is a Chrome extension developed by incleaf, and its main feature is "Improves your font rendering".

Download Chrome Font Rendering Enhancer Extension CRX File

Download Chrome Font Rendering Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
Official URL https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
Description Improves your font rendering
File Size 15.04 KB
Installation Count 3,000
Current Version 0.0.5
Last Updated 2016-06-07
Publish Date 2016-06-07
Rating 4.76/5 Total 37 Ratings
Developer incleaf
Email [email protected]
Payment Type free
Extension Website https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Help Page URL https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Supported Languages 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"
    ]
}