Chrome Font Rendering Enhancer

Improves your font rendering

Cos'è Chrome Font Rendering Enhancer?

Chrome Font Rendering Enhancer è un'estensione di Chrome sviluppata da incleaf, e la sua funzione principale è "Improves your font rendering".

Scarica il file CRX dell'estensione Chrome Font Rendering Enhancer

Scarica i file di estensione Chrome Font Rendering Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
URL Ufficiale https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
Descrizione Improves your font rendering
Dimensione del File 15.04 KB
Conteggio Installazioni 3,000
Versione Corrente 0.0.5
Ultimo Aggiornamento 2016-06-07
Data di Pubblicazione 2016-06-07
Valutazione 4.76/5 Totale 37 Valutazioni
Sviluppatore incleaf
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/incleaf/osx-chrome-font-rendering-enhancer
URL della Pagina di Aiuto https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Lingue Supportate 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"
    ]
}