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文件

下載Font Smoothing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/"
    ]
}