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…

O que é Justify?

Justify é uma extensão do Chrome desenvolvida por Tom Kent, e sua principal característica é "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 Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Justify

Baixe arquivos de extensão Justify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Justify Justify
ID odkfbmljaomnibofnefflonfehhbhnoo
URL Oficial https://chromewebstore.google.com/detail/justify/odkfbmljaomnibofnefflonfehhbhnoo
Descrição 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…
Tamanho do Arquivo 49.42 KB
Contagem de Instalações 1,653
Versão Atual 0.1
Última Atualização 2016-04-23
Data de Publicação 2016-04-23
Classificação 4.18/5 Total de 11 Avaliações
Desenvolvedor Tom Kent
Tipo de Pagamento free
Site da Extensão http://justify.tomkent.me
URL da Página de Ajuda http://justify.tomkent.me
Idiomas Suportados 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"
        }
    }
}