Font Smoothing

Adds configurable font anti-aliasing to all webpages you visit.

Font Smoothing란 무엇입니까?

Font Smoothing은(는) evanshortiss에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds configurable font anti-aliasing to all webpages you visit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Font Smoothing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin allows you to force webpages use the WebKit antialiasing feature, or alternatively, completely disable it. As a result you can alter the clarity and legibility of text on web pages.

Simply install the plugin and click the plugin icon to enable or disable smoothing for a given website. The plugin will remember your settings for every site visited.

By default all new tabs will apply smoothing after this plugin is installed. 

Note: If the page was open before installing the plugin then you need to refresh the page.                    

확장 프로그램 기본 정보

이름 Font Smoothing Font Smoothing
ID pblodagimcngmkbdjcaphmjbjlnhicnj
공식 URL https://chromewebstore.google.com/detail/font-smoothing/pblodagimcngmkbdjcaphmjbjlnhicnj
설명 Adds configurable font anti-aliasing to all webpages you visit.
파일 크기 62.63 KB
설치 횟수 2,001
현재 버전 0.1.0
최근 업데이트 2018-11-02
출시 날짜 2018-11-01
평점 3.50/5 총 16 개의 평점
개발자 evanshortiss
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Font Smoothing",
    "description": "Adds configurable font anti-aliasing to all webpages you visit.",
    "version": "0.1.0",
    "browser_action": {
        "default_icon": "[email protected]",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "[email protected]",
        "48": "[email protected]",
        "128": "[email protected]"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "apply-smoothing.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}