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 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.                    

Extension Basic Information

Name Text into Multiple Columns Text into Multiple Columns
ID dhhbngmbgcjkdfmdnbjpocafoednnhfj
Official URL https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj
Description Reformats selected text to use columns of a more readable width.
File Size 421 KB
Installation Count 192
Current Version 0.9.4
Last Updated 2017-03-06
Publish Date 2017-03-06
Rating 2.82/5 Total 11 Ratings
Developer dharris
Email [email protected]
Payment Type free
Extension Website https://github.com/dougharris/text-columns
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."
    }
}