Chrome Font Rendering Enhancer

Improves your font rendering

Apa itu Chrome Font Rendering Enhancer?

Chrome Font Rendering Enhancer adalah ekstensi Chrome yang dikembangkan oleh incleaf, dan fitur utamanya adalah "Improves your font rendering".

Unduh Berkas CRX Ekstensi Chrome Font Rendering Enhancer

Unduh file ekstensi Chrome Font Rendering Enhancer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        This application improves your font rendering. You can also control the font weight with easy UI :)                    

Informasi Dasar Ekstensi

Nama Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
URL Resmi https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
Deskripsi Improves your font rendering
Ukuran File 15.04 KB
Jumlah Instalasi 3,000
Versi Saat Ini 0.0.5
Terakhir Diperbarui 2016-06-07
Tanggal Publikasi 2016-06-07
Penilaian 4.76/5 Total 37 Penilaian
Pengembang incleaf
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/incleaf/osx-chrome-font-rendering-enhancer
URL Halaman Bantuan https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Bahasa yang Didukung 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"
    ]
}