Font Smoothing

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

Font Smoothing là gì?

Font Smoothing là một tiện ích mở rộng Chrome được phát triển bởi evanshortiss, và tính năng chính của nó là "Adds configurable font anti-aliasing to all webpages you visit.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Font Smoothing

Tải xuống các tệp mở rộng Font Smoothing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Font Smoothing Font Smoothing
ID pblodagimcngmkbdjcaphmjbjlnhicnj
URL Chính Thức https://chromewebstore.google.com/detail/font-smoothing/pblodagimcngmkbdjcaphmjbjlnhicnj
Mô tả Adds configurable font anti-aliasing to all webpages you visit.
Kích Thước Tệp 62.63 KB
Số Lần Cài Đặt 2,001
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2018-11-02
Ngày Phát Hành 2018-11-01
Đánh Giá 3.50/5 Tổng số 16 Đánh Giá
Nhà Phát Triển evanshortiss
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}