Text into Multiple Columns

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

What is Text into Multiple Columns?

Text into Multiple Columns is a Chrome extension developed by dharris, and its main feature is "Reformats selected text to use columns of a more readable width.".

Extension Screenshots

screenshot
screenshot

Download Text into Multiple Columns Extension CRX File

Download Text into Multiple Columns extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Text into Multiple Columns Text into Multiple Columns
ID nhlhdcjekkcenhfdhohihhoocnkgbfeb
Official URL https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb
Description Reformats selected text to use columns of a more readable width.
File Size 421 KB
Installation Count 149
Current Version 0.9.4
Last Updated 2015-05-26
Publish Date 2015-05-26
Rating 3.60/5 Total 10 Ratings
Developer dharris
Email [email protected]
Payment Type free
Supported Languages 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."
    }
}