Text into Multiple Columns

Reformats selected text to use columns of a more readable width.

O que é Text into Multiple Columns?

Text into Multiple Columns é uma extensão do Chrome desenvolvida por dharris, e sua principal característica é "Reformats selected text to use columns of a more readable width.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Text into Multiple Columns

Baixe arquivos de extensão Text into Multiple Columns 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

                        Reformats selected text into lines of a more readable line length. The text is kept in the context of the page -- with images, logos, etc.

Click on a paragraph or select text and then click the icon to split the text.                    

Informações Básicas da Extensão

Nome Text into Multiple Columns Text into Multiple Columns
ID dhhbngmbgcjkdfmdnbjpocafoednnhfj
URL Oficial https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj
Descrição Reformats selected text to use columns of a more readable width.
Tamanho do Arquivo 421 KB
Contagem de Instalações 192
Versão Atual 0.9.4
Última Atualização 2017-03-06
Data de Publicação 2017-03-06
Classificação 2.82/5 Total de 11 Avaliações
Desenvolvedor dharris
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dougharris/text-columns
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text into Multiple Columns",
    "version": "0.9.4",
    "manifest_version": 2,
    "description": "Reformats selected text to use columns of a more readable width.",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "text-columns.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "cols.png",
        "default_title": "Display selected text in multiple columns."
    }
}