Chrome Font Rendering Enhancer

Improves your font rendering

Qu'est-ce que Chrome Font Rendering Enhancer ?

Chrome Font Rendering Enhancer est une extension Chrome développée par incleaf, et sa fonction principale est "Improves your font rendering".

Télécharger le fichier CRX de l'extension Chrome Font Rendering Enhancer

Téléchargez les fichiers d'extension Chrome Font Rendering Enhancer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Chrome Font Rendering Enhancer Chrome Font Rendering Enhancer
ID jjjpbgllolhkbnpbkpcllncfmbiggljo
URL Officiel https://chrome.google.com/webstore/detail/chrome-font-rendering-enh/jjjpbgllolhkbnpbkpcllncfmbiggljo
Description Improves your font rendering
Taille du Fichier 15.04 KB
Nombre d'Installations 3,000
Version Actuelle 0.0.5
Dernière Mise à Jour 2016-06-07
Date de Publication 2016-06-07
Évaluation 4.76/5 Total 37 Évaluations
Développeur incleaf
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/incleaf/osx-chrome-font-rendering-enhancer
URL de la Page d'Aide https://github.com/incleaf/osx-chrome-font-rendering-enhancer
Langues Prises en Charge 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"
    ]
}