Font Smoothing

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

Apa itu Font Smoothing?

Font Smoothing adalah ekstensi Chrome yang dikembangkan oleh evanshortiss, dan fitur utamanya adalah "Adds configurable font anti-aliasing to all webpages you visit.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Font Smoothing

Unduh file ekstensi Font Smoothing 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 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.                    

Informasi Dasar Ekstensi

Nama Font Smoothing Font Smoothing
ID pblodagimcngmkbdjcaphmjbjlnhicnj
URL Resmi https://chromewebstore.google.com/detail/font-smoothing/pblodagimcngmkbdjcaphmjbjlnhicnj
Deskripsi Adds configurable font anti-aliasing to all webpages you visit.
Ukuran File 62.63 KB
Jumlah Instalasi 2,001
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2018-11-02
Tanggal Publikasi 2018-11-01
Penilaian 3.50/5 Total 16 Penilaian
Pengembang evanshortiss
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}