Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
¿Qué es Text into Multiple Columns?
Text into Multiple Columns es una extensión de Chrome desarrollada por dharris, y su función principal es "Reformats selected text to use columns of a more readable width.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Text into Multiple Columns
Descarga archivos de extensión Text into Multiple Columns 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
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.
Información Básica de la Extensión
Nombre | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
URL Oficial | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Descripción | Reformats selected text to use columns of a more readable width. |
Tamaño del Archivo | 421 KB |
Cantidad de Instalaciones | 149 |
Versión Actual | 0.9.4 |
Última Actualización | 2015-05-26 |
Fecha de Publicación | 2015-05-26 |
Calificación | 3.60/5 Total de 10 Calificaciones |
Desarrollador | dharris |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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." } } |