Justify

Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…

¿Qué es Justify?

Justify es una extensión de Chrome desarrollada por Tom Kent, y su función principal es "Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Justify

Descarga archivos de extensión Justify 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

                        Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be difficult to adjust to non-justified text seen on many websites. This extension allows you to immediately justify all text either by clicking the icon or through the keyboard shortcut (Ctrl + Shift + J on Windows and Cmd + Shift + J on Mac). You can reverse the justification as easily as you enabled it by hitting the keyboard shortcut again or clicking the extension icon!                    

Información Básica de la Extensión

Nombre Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
URL Oficial https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
Descripción Justify makes text easier to read in just one click! If you're used to reading justified text in academic journals, it can often be…
Tamaño del Archivo 49.42 KB
Cantidad de Instalaciones 1,653
Versión Actual 0.1
Última Actualización 2016-04-23
Fecha de Publicación 2016-04-23
Calificación 4.18/5 Total de 11 Calificaciones
Desarrollador Tom Kent
Tipo de Pago free
Sitio Web de la Extensión http://justify.tomkent.me
URL de la Página de Ayuda http://justify.tomkent.me
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Justify",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon_justified.png",
        "default_title": "Justify!"
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "commands": {
        "justify": {
            "suggested_key": {
                "default": "Ctrl+Shift+J",
                "mac": "Command+Shift+J"
            },
            "description": "Justify All Text"
        }
    }
}