Font Smoothing

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

¿Qué es Font Smoothing?

Font Smoothing es una extensión de Chrome desarrollada por evanshortiss, y su función principal es "Adds configurable font anti-aliasing to all webpages you visit.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Font Smoothing

Descarga archivos de extensión Font Smoothing en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Font Smoothing Font Smoothing
ID pblodagimcngmkbdjcaphmjbjlnhicnj
URL Oficial https://chromewebstore.google.com/detail/font-smoothing/pblodagimcngmkbdjcaphmjbjlnhicnj
Descripción Adds configurable font anti-aliasing to all webpages you visit.
Tamaño del Archivo 62.63 KB
Cantidad de Instalaciones 2,001
Versión Actual 0.1.0
Última Actualización 2018-11-02
Fecha de Publicación 2018-11-01
Calificación 3.50/5 Total de 16 Calificaciones
Desarrollador evanshortiss
Tipo de Pago free
Idiomas Soportados 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\/"
    ]
}