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
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 to use columns of a more readable width. Studies suggest that it's easier and faster to read text if the text is presented in narrow columns. The growth of full width browsing on wide screen monitors plays directly against this. Add this extension to make it easy to reformat the text into something manageable.
Informações Básicas da Extensão
Nome | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
URL Oficial | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Descrição | Reformats selected text to use columns of a more readable width. |
Tamanho do Arquivo | 421 KB |
Contagem de Instalações | 149 |
Versão Atual | 0.9.4 |
Última Atualização | 2015-05-26 |
Data de Publicação | 2015-05-26 |
Classificação | 3.60/5 Total de 10 Avaliações |
Desenvolvedor | dharris |
[email protected] | |
Tipo de Pagamento | free |
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." } } |