Chrome Font Rendering Enhancer

Improves your font rendering

Chrome Font Rendering Enhancer là gì?

Chrome Font Rendering Enhancer là một tiện ích mở rộng Chrome được phát triển bởi incleaf, và tính năng chính của nó là "Improves your font rendering".

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

Tải xuống các tệp mở rộng Chrome Font Rendering Enhancer 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 application improves your font rendering. You can also control the font weight with easy UI :)                    

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

Tên Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
URL Chính Thức https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
Mô tả Improves your font rendering
Kích Thước Tệp 15.04 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2016-06-07
Ngày Phát Hành 2016-06-07
Đánh Giá 4.76/5 Tổng số 37 Đánh Giá
Nhà Phát Triển incleaf
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/incleaf/osx-chrome-font-rendering-enhancer
URL Trang Trợ Giúp https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}