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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}