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
公式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\/"
    ]
}